GNU bug report logs - #51675
Add python-wokkel, Jabber/XMPP module for Twisted

Please note: This is a static page, with minimal formatting, updated once a day.
Click here to see this page with the latest information and nicer formatting.

Package: guix-patches; Reported by: Stephen Paul Weber <singpolyma@HIDDEN>; dated Mon, 8 Nov 2021 02:43:02 UTC; Maintainer for guix-patches is guix-patches@HIDDEN.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 14 Nov 2021 01:50:38 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sat Nov 13 20:50:38 2021
Received: from localhost ([127.0.0.1]:48639 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mm4fG-0002V9-GB
	for submit <at> debbugs.gnu.org; Sat, 13 Nov 2021 20:50:38 -0500
Received: from singpolyma.net ([192.99.233.116]:37017)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <singpolyma@HIDDEN>) id 1mm4fB-0002UC-Rq
 for 51675 <at> debbugs.gnu.org; Sat, 13 Nov 2021 20:50:35 -0500
Received: by singpolyma.net (Postfix, from userid 1000)
 id 2F88C4861699; Sun, 14 Nov 2021 01:50:33 +0000 (UTC)
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=singpolyma.net;
 s=iweb; t=1636854633;
 bh=l662wyEiehQVb1iNvg/gcKt56xfAf6C6jBQIDv8Yk7E=;
 h=From:To:Cc:Subject:Date:In-Reply-To:References:From;
 b=Vx90Cb54JLi6Rw64B7B5cpqdSW3+kDGYfJVV6fFN4HHBNMyXKSA+JVszMxB9Lb+mW
 KhGhGPmowxrBnnXJf8rlKgDH382xUYV2bxstk1yDGWIMA+/taJhJbDpTR5E1/q0rtg
 u4covXVD3wPXD+qGIQIzF4jcbF58kqC1ZLPSMIh4=
From: Stephen Paul Weber <singpolyma@HIDDEN>
To: 51675 <at> debbugs.gnu.org
Subject: [PATCH v2 3/5] gnu: Add python-pydoctor.
Date: Sat, 13 Nov 2021 20:50:29 -0500
Message-Id: <20211114015031.11010-3-singpolyma@HIDDEN>
X-Mailer: git-send-email 2.30.2
In-Reply-To: <20211114015031.11010-1-singpolyma@HIDDEN>
References: <20211114015031.11010-1-singpolyma@HIDDEN>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 51675
Cc: Stephen Paul Weber <singpolyma@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/python-xyz.scm (python-pydoctor): New variable.
---
 gnu/packages/python-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 68d397d012..1383406885 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27693,3 +27693,38 @@ simple mock/record and a complete capture/replay framework.")
      "Ijson is an iterative JSON parser with standard Python iterator
 interfaces.")
     (license license:bsd-3)))
+
+(define-public python-pydoctor
+  (package
+    (name "python-pydoctor")
+    (version "21.9.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "pydoctor" version))
+        (sha256
+          (base32 "0nknh3k4zv505031ga8ira0d4slvwwm5g5bzjacjidmi2mmjj311"))))
+    (build-system python-build-system)
+    (inputs
+      `(("python-appdirs" ,python-appdirs)
+        ("python-astor" ,python-astor)
+        ("python-attrs" ,python-attrs)
+        ("python-cachecontrol" ,python-cachecontrol)
+        ("python-docutils" ,python-docutils)
+        ("python-importlib-metadata" ,python-importlib-metadata)
+        ("python-importlib-resources" ,python-importlib-resources)
+        ("python-requests" ,python-requests)
+        ("python-twisted" ,python-twisted)))
+    (native-inputs
+      `(("python-beautifulsoup4" ,python-beautifulsoup4)
+        ("python-hypothesis" ,python-hypothesis)
+        ("python-pytest" ,python-pytest)
+        ("python-sphinx" ,python-sphinx)))
+    (home-page "https://github.com/twisted/pydoctor")
+    (synopsis "Python API documentation generator")
+    (description "Pydoctor is a documentation generator that works by static analysis.
+It puts a fair bit of effort into resolving imports and computing inheritance
+hierarchies and, as it aims at documenting Twisted, knows about zope.interface's
+declaration API and can present information about which classes implement which
+interface, and vice versa.")
+    (license license:expat)))
-- 
2.30.2




Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 14 Nov 2021 01:50:38 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sat Nov 13 20:50:38 2021
Received: from localhost ([127.0.0.1]:48637 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mm4fG-0002V2-5r
	for submit <at> debbugs.gnu.org; Sat, 13 Nov 2021 20:50:38 -0500
Received: from singpolyma.net ([192.99.233.116]:50337)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <singpolyma@HIDDEN>) id 1mm4fB-0002UB-Re
 for 51675 <at> debbugs.gnu.org; Sat, 13 Nov 2021 20:50:35 -0500
Received: by singpolyma.net (Postfix, from userid 1000)
 id 1B29948616BF; Sun, 14 Nov 2021 01:50:32 +0000 (UTC)
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=singpolyma.net;
 s=iweb; t=1636854633;
 bh=rreQyXX3Maj0laMYdH6r2/oJTK7AUnsl2BwbhoNPkpk=;
 h=From:To:Cc:Subject:Date:In-Reply-To:References:From;
 b=a+vfuwCp3WZlNNBkLtLddU/illbK6QsYPmYuQpjtiNc1K1QEQubc2yAGUO51mHyJd
 3B7LJK3zYRl2KsfhAMILQtmDee48h0XQGQ3G4eVXMldOhldAVWxOgshkti+KY4Lj8n
 uZPEVGQyIYVnWzDEewNatovDDyof9L74Ckehm5BY=
From: Stephen Paul Weber <singpolyma@HIDDEN>
To: 51675 <at> debbugs.gnu.org
Subject: [PATCH v2 2/5] gnu: python-twisted: Update to 21.7.0
Date: Sat, 13 Nov 2021 20:50:28 -0500
Message-Id: <20211114015031.11010-2-singpolyma@HIDDEN>
X-Mailer: git-send-email 2.30.2
In-Reply-To: <20211114015031.11010-1-singpolyma@HIDDEN>
References: <20211114015031.11010-1-singpolyma@HIDDEN>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 51675
Cc: Stephen Paul Weber <singpolyma@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/python-xyz.scm (python-twisted): Update to 21.7.0.
[propagated-inputs]: Add python-typing-extensions, python-attrs, and
                     python-service-identity.
[source]: No longer need to manually specify ".tar.bz2".
[arguments]: New build phase to add back the _PY3 compat variable, used by some
             libraries even though it is a private symbol.
---
 gnu/packages/python-xyz.scm | 27 ++++++++++++++++++---------
 1 file changed, 18 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 639945c278..68d397d012 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15105,23 +15105,32 @@ format.")
 (define-public python-twisted
   (package
     (name "python-twisted")
-    (version "19.7.0")
+    (version "21.7.0")
     (source (origin
               (method url-fetch)
-              (uri (pypi-uri "Twisted" version ".tar.bz2"))
+              (uri (pypi-uri "Twisted" version))
               (sha256
                (base32
-                "17d3hnxv9qndagzz63mdpyk99xj63p9gq586vjn0rxk8cl197nym"))))
+                "01lh225d7lfnmfx4f4kxwl3963gjc9yg8jfkn1w769v34ia55mic"))))
     (build-system python-build-system)
     (arguments
-     '(#:tests? #f))                    ; FIXME: some tests fail
+     '(#:tests? #f ; FIXME: some tests fail
+       #:phases (modify-phases %standard-phases
+                  (add-after 'unpack 'add-py3-var
+                    (lambda _
+                      (substitute* "src/twisted/python/compat.py"
+                        (("_PY37PLUS = True")
+                         "_PY37PLUS = True\n    _PY3 = True")))))))
     (propagated-inputs
-     `(("python-zope-interface" ,python-zope-interface)
-       ("python-pyhamcrest" ,python-pyhamcrest)
-       ("python-incremental" ,python-incremental)
-       ("python-hyperlink" ,python-hyperlink)
+     `(("python-attrs" ,python-attrs)
+       ("python-automat" ,python-automat)
        ("python-constantly" ,python-constantly)
-       ("python-automat" ,python-automat)))
+       ("python-hyperlink" ,python-hyperlink)
+       ("python-incremental" ,python-incremental)
+       ("python-pyhamcrest" ,python-pyhamcrest)
+       ("python-service-identity" ,python-service-identity)
+       ("python-typing-extensions" ,python-typing-extensions)
+       ("python-zope-interface" ,python-zope-interface)))
     (home-page "https://twistedmatrix.com/")
     (synopsis "Asynchronous networking framework written in Python")
     (description
-- 
2.30.2




Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 14 Nov 2021 01:50:38 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sat Nov 13 20:50:38 2021
Received: from localhost ([127.0.0.1]:48635 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mm4fF-0002Uv-QF
	for submit <at> debbugs.gnu.org; Sat, 13 Nov 2021 20:50:38 -0500
Received: from singpolyma.net ([192.99.233.116]:59065)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <singpolyma@HIDDEN>) id 1mm4fB-0002UE-Rg
 for 51675 <at> debbugs.gnu.org; Sat, 13 Nov 2021 20:50:34 -0500
Received: by singpolyma.net (Postfix, from userid 1000)
 id 7E2BA48616C3; Sun, 14 Nov 2021 01:50:33 +0000 (UTC)
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=singpolyma.net;
 s=iweb; t=1636854633;
 bh=CbxsModDJGCIDU1HOodoXV0ymy0FZqHsllE8ccPvJ6k=;
 h=From:To:Cc:Subject:Date:In-Reply-To:References:From;
 b=WpvFQFAX+sWrluJqfxV3ofHm6phiQWiHKCPPxBERqLkRRfpB6FZWtsRP/1Svypo0L
 Z0CgG7F2+NvfGJJ/29sKc+AR8dTbSAYynBfmmSBpNC/tdIjAgLFOfc4pg23IQEtyGz
 Zfk34reLmxkU7shVs1cKmeR2lBIHDeZqcZJvOdHQ=
From: Stephen Paul Weber <singpolyma@HIDDEN>
To: 51675 <at> debbugs.gnu.org
Subject: [PATCH v2 5/5] gnu: Add python-wokkel.
Date: Sat, 13 Nov 2021 20:50:31 -0500
Message-Id: <20211114015031.11010-5-singpolyma@HIDDEN>
X-Mailer: git-send-email 2.30.2
In-Reply-To: <20211114015031.11010-1-singpolyma@HIDDEN>
References: <20211114015031.11010-1-singpolyma@HIDDEN>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 51675
Cc: Stephen Paul Weber <singpolyma@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/python-xyz.scm (python-wokkel): New variable.
---
 gnu/packages/python-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7e13a296ab..4b493a3a14 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27754,3 +27754,38 @@ files for your project.  Rather than reading the Git history as some newer
 tools to produce it, or having one single file which developers all write to,
 towncrier reads \"news fragments\" which contain information useful to end users.")
     (license license:expat)))
+
+(define-public python-wokkel
+  (package
+    (name "python-wokkel")
+    (version "18.0.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "wokkel" version))
+        (sha256
+          (base32 "1spq44gg8gsviqx1dvlmjpgfc0wk0jpyx4ap01y2pad1ai9cw016"))))
+    (build-system python-build-system)
+    (arguments
+     '(#:phases (modify-phases %standard-phases
+                  (add-after 'unpack 'patch-tests
+                    (lambda _
+                      (substitute* "wokkel/test/test_client.py"
+                        (("'example.org', connector.domain")
+                         "b'example.org', connector.domain"))
+                      (substitute* "wokkel/test/test_xmppim.py"
+                        (("def test_onRosterRemove") "def _test_onRosterRemove")
+                        (("def test_onRosterSet") "def _test_onRosterSet")))))))
+    (propagated-inputs
+      `(("python-dateutil" ,python-dateutil)
+        ("python-incremental" ,python-incremental)
+        ("python-twisted" ,python-twisted)))
+    (native-inputs
+      `(("python-coverage" ,python-coverage)
+        ("python-pyflakes" ,python-pyflakes)))
+    (home-page "https://wokkel.ik.nu/")
+    (synopsis "Twisted support library for Jabber/XMPP")
+    (description "Wokkel is a collection of enhancements on top of the ​Twisted
+networking framework.  It provides enhancements to the Jabber/XMPP protocol
+implementation as found in Twisted Words.")
+    (license license:expat)))
-- 
2.30.2




Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 14 Nov 2021 01:50:38 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sat Nov 13 20:50:37 2021
Received: from localhost ([127.0.0.1]:48633 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mm4fF-0002Ut-Je
	for submit <at> debbugs.gnu.org; Sat, 13 Nov 2021 20:50:37 -0500
Received: from singpolyma.net ([192.99.233.116]:59537)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <singpolyma@HIDDEN>) id 1mm4fB-0002UA-Rv
 for 51675 <at> debbugs.gnu.org; Sat, 13 Nov 2021 20:50:34 -0500
Received: by singpolyma.net (Postfix, from userid 1000)
 id D626148616B8; Sun, 14 Nov 2021 01:50:32 +0000 (UTC)
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=singpolyma.net;
 s=iweb; t=1636854632;
 bh=yoRNFP8erhrZhY0hfb0vMY9ogu0Nznb8fe/uNAcuBXY=;
 h=From:To:Cc:Subject:Date:From;
 b=d6RPrFYm0d1YKkFEOR6YeviD45cewsl5239Ds/ISbXJDbfmDfNtwjI87BlqFP581U
 n0sY5EVyGk/NHBEtgcaJwV6jwU8XVyVTUQWcATgjlQ1/Fefxt44eNlHKaZr/oXQBXC
 spVwzKYGk7ip8Zrl0LGjOgdDxdIA9aXSFEZ5Szm4=
From: Stephen Paul Weber <singpolyma@HIDDEN>
To: 51675 <at> debbugs.gnu.org
Subject: [PATCH v2 1/5] gnu: python-incremental: Update to 21.3.0
Date: Sat, 13 Nov 2021 20:50:27 -0500
Message-Id: <20211114015031.11010-1-singpolyma@HIDDEN>
X-Mailer: git-send-email 2.30.2
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 51675
Cc: Stephen Paul Weber <singpolyma@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/python-xyz.scm (python-incremental): Update to 21.3.0.
---
 gnu/packages/python-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8ba72170c0..639945c278 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17681,14 +17681,14 @@ parse many formal languages.")
 (define-public python-incremental
   (package
     (name "python-incremental")
-    (version "17.5.0")
+    (version "21.3.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "incremental" version))
        (sha256
         (base32
-         "1cylxdz1cnkm5g3pklna3h2n0i0rks95ir1pnpxfnvpkmab1cxbv"))))
+         "0mvgbmsnv1c8ziydw41jjkivc0zcqyzli7frcpvbkxj8zxddxx82"))))
     (build-system python-build-system)
     (home-page "https://github.com/hawkowl/incremental")
     (synopsis "Library for versioning Python projects")
-- 
2.30.2




Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 14 Nov 2021 01:50:35 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sat Nov 13 20:50:35 2021
Received: from localhost ([127.0.0.1]:48631 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mm4fD-0002Uj-Bn
	for submit <at> debbugs.gnu.org; Sat, 13 Nov 2021 20:50:35 -0500
Received: from singpolyma.net ([192.99.233.116]:60219)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <singpolyma@HIDDEN>) id 1mm4fB-0002UD-Rk
 for 51675 <at> debbugs.gnu.org; Sat, 13 Nov 2021 20:50:34 -0500
Received: by singpolyma.net (Postfix, from userid 1000)
 id 60FF248616C2; Sun, 14 Nov 2021 01:50:33 +0000 (UTC)
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=singpolyma.net;
 s=iweb; t=1636854633;
 bh=wJDBI2j8ubma6MMjKfatBRUjRN2vAwGuwaXC/0LF+U4=;
 h=From:To:Cc:Subject:Date:In-Reply-To:References:From;
 b=IaV9HUpZMHGFJ/PjNSWI4BPQy2SpqN9gp1c6p6I14lMAMj0i/P+G5mpeZW+yqSrxV
 1bZFP7PZpN5M5NPsFAP01VrrDc7JnXyJ1smB9qnTGGJ32pje2Dd/tLNBQXZ0zlhadC
 LjHHC9cnjWzgT/pzSgdpD107ghmSXRamoBz31HPw=
From: Stephen Paul Weber <singpolyma@HIDDEN>
To: 51675 <at> debbugs.gnu.org
Subject: [PATCH v2 4/5] gnu: Add python-towncrier.
Date: Sat, 13 Nov 2021 20:50:30 -0500
Message-Id: <20211114015031.11010-4-singpolyma@HIDDEN>
X-Mailer: git-send-email 2.30.2
In-Reply-To: <20211114015031.11010-1-singpolyma@HIDDEN>
References: <20211114015031.11010-1-singpolyma@HIDDEN>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 51675
Cc: Stephen Paul Weber <singpolyma@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/python-xyz.scm (python-towncrier): New variable.
---
 gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1383406885..7e13a296ab 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27728,3 +27728,29 @@ hierarchies and, as it aims at documenting Twisted, knows about zope.interface's
 declaration API and can present information about which classes implement which
 interface, and vice versa.")
     (license license:expat)))
+
+(define-public python-towncrier
+  (package
+    (name "python-towncrier")
+    (version "21.3.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "towncrier" version))
+        (sha256
+          (base32 "1znxavwsiy6czirjn0qi1p5yarnm7gg692nb0309hb6p4k4hpvbf"))))
+    (build-system python-build-system)
+    (inputs
+      `(("python-click" ,python-click)
+        ("python-click-default-group" ,python-click-default-group)
+        ("python-incremental" ,python-incremental)
+        ("python-jinja2" ,python-jinja2)
+        ("python-toml" ,python-toml)))
+    (native-inputs `(("python-packaging" ,python-packaging)))
+    (home-page "https://github.com/twisted/towncrier")
+    (synopsis "Tool to build newsfiles for your Python project")
+    (description "Towncrier is a utility to produce useful, summarised news
+files for your project.  Rather than reading the Git history as some newer
+tools to produce it, or having one single file which developers all write to,
+towncrier reads \"news fragments\" which contain information useful to end users.")
+    (license license:expat)))
-- 
2.30.2




Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 12 Nov 2021 18:21:22 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Fri Nov 12 13:21:22 2021
Received: from localhost ([127.0.0.1]:45941 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mlbAw-0001hb-L9
	for submit <at> debbugs.gnu.org; Fri, 12 Nov 2021 13:21:22 -0500
Received: from mout01.posteo.de ([185.67.36.65]:51935)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <monego@HIDDEN>) id 1mlbAu-0001hM-Lv
 for 51675 <at> debbugs.gnu.org; Fri, 12 Nov 2021 13:21:21 -0500
Received: from submission (posteo.de [89.146.220.130]) 
 by mout01.posteo.de (Postfix) with ESMTPS id 4E2EF240028
 for <51675 <at> debbugs.gnu.org>; Fri, 12 Nov 2021 19:21:13 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017;
 t=1636741274; bh=AgkMpwOSu+YAx7cD/Vw45HA4ktDQptY06kXa2xpb79w=;
 h=Subject:From:To:Date:From;
 b=kriUpy2P4ftsaFhZZJ+xhppZxZw0qA0+poEs64BSeC05F6jU3srICWAhRELnhgT2u
 L/hsC5PGDBxoRww7mnFnPBz7mDuu74NzbgKpszogJzymq7+YyTGgprYb8cER7V62UV
 BYW4SdVcR3pJVuPxYvI5AwOoSaSUaXNIhKAWI7eamAEQSPoDMX0NqeZPT7b2pZOsq9
 xzBOq5kzKGcmkGA6JppzIE4TPLhFT7GJPtnY22AUb6xIZZUckYt1rOYSKGpAdRhzs/
 Uy5cSZEPzv7DtlsahhEK/7179RMKfrI+yHoRR/2RP8HMWWofTSP04e/PIDxVAuWHLF
 z4ITkToAzp9yg==
Received: from customer (localhost [127.0.0.1])
 by submission (posteo.de) with ESMTPSA id 4HrRjh1zRvz6tmX;
 Fri, 12 Nov 2021 19:21:12 +0100 (CET)
Message-ID: <3a01215529d3a8ed920407282b5e4696bce4f5d1.camel@HIDDEN>
Subject: Re: [bug#51675] [PATCH 1/5] gnu: python-incremental: Update to 21.3.0
From: Vinicius Monego <monego@HIDDEN>
To: Stephen Paul Weber <singpolyma@HIDDEN>, 51675 <at> debbugs.gnu.org
Date: Fri, 12 Nov 2021 18:21:03 +0000
In-Reply-To: <20211108024520.49594-1-singpolyma@HIDDEN>
References: <YYiOgriWPOi+DH09@HIDDEN>
 <20211108024520.49594-1-singpolyma@HIDDEN>
Content-Type: text/plain; charset="UTF-8"
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Spam-Score: -2.3 (--)
X-Debbugs-Envelope-To: 51675
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -3.3 (---)

Em dom, 2021-11-07 às 21:45 -0500, Stephen Paul Weber escreveu:
> * gnu/packages/python-xyz.scm (python-incremental): Update to 21.3.0.
> ---
>  gnu/packages/python-xyz.scm | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-
> xyz.scm
> index 8ba72170c0..639945c278 100644
> --- a/gnu/packages/python-xyz.scm
> +++ b/gnu/packages/python-xyz.scm

I skipped this one because it was a simple change, but please add your
copyright to this file.

Could you send a v2 with the requested changes?

> @@ -17681,14 +17681,14 @@ parse many formal languages.")
>  (define-public python-incremental
>    (package
>      (name "python-incremental")
> -    (version "17.5.0")
> +    (version "21.3.0")
>      (source
>       (origin
>         (method url-fetch)
>         (uri (pypi-uri "incremental" version))
>         (sha256
>          (base32
> -         "1cylxdz1cnkm5g3pklna3h2n0i0rks95ir1pnpxfnvpkmab1cxbv"))))
> +         "0mvgbmsnv1c8ziydw41jjkivc0zcqyzli7frcpvbkxj8zxddxx82"))))
>      (build-system python-build-system)
>      (home-page "https://github.com/hawkowl/incremental")
>      (synopsis "Library for versioning Python projects")






Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 12 Nov 2021 18:15:13 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Fri Nov 12 13:15:13 2021
Received: from localhost ([127.0.0.1]:45936 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mlb4y-0001X7-Py
	for submit <at> debbugs.gnu.org; Fri, 12 Nov 2021 13:15:13 -0500
Received: from mout01.posteo.de ([185.67.36.65]:59703)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <monego@HIDDEN>) id 1mlb4v-0001Wn-Fl
 for 51675 <at> debbugs.gnu.org; Fri, 12 Nov 2021 13:15:10 -0500
Received: from submission (posteo.de [89.146.220.130]) 
 by mout01.posteo.de (Postfix) with ESMTPS id A010A240028
 for <51675 <at> debbugs.gnu.org>; Fri, 12 Nov 2021 19:15:03 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017;
 t=1636740903; bh=/CfqeXrt/TZ9DA+aXstLmr1j3prZy3NDOTDdpVcdtvY=;
 h=Subject:From:To:Date:From;
 b=qE/4Wb9TjeeIzPIJyopTtfl+Hd6wd5KOk1TX39eyuepFRBdVFY2GKqJFzoiaZgFJp
 wSQTOgc1TzZD9zKbZt03JqZEIJPmrO5TfFegSRqsYPq/8eRPNg8MrK6CuGpeCVdke7
 KJ91DQfhwGO2GpPjKxRackEP2wn/0cGH+r4SaqZGjGH69ALn8DX51gKLkqh7FF/l/c
 cHdxZPU7ylhE7WxRsK7u3gVjicURQnFS/fP0x29XyFtf6qFHE454TvzPA2aN3TuzeK
 /zw2Ywc+1CK+7h8/oNkkn6nwdH9WydDOSEOxrZqBcf8pgPn4T/fXIIW8YPoDK35qBy
 eUX8vP74nzMOw==
Received: from customer (localhost [127.0.0.1])
 by submission (posteo.de) with ESMTPSA id 4HrRZY46mgz9rxM;
 Fri, 12 Nov 2021 19:15:01 +0100 (CET)
Message-ID: <3d03776d57f9330f48b7f0250ec01841662ec1b2.camel@HIDDEN>
Subject: Re: [bug#51675] [PATCH 5/5] gnu: Add python-wokkel.
From: Vinicius Monego <monego@HIDDEN>
To: Stephen Paul Weber <singpolyma@HIDDEN>, 51675 <at> debbugs.gnu.org
Date: Fri, 12 Nov 2021 18:14:54 +0000
In-Reply-To: <20211108024520.49594-5-singpolyma@HIDDEN>
References: <20211108024520.49594-1-singpolyma@HIDDEN>
 <20211108024520.49594-5-singpolyma@HIDDEN>
Content-Type: text/plain; charset="UTF-8"
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Spam-Score: -2.3 (--)
X-Debbugs-Envelope-To: 51675
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -3.3 (---)

Em dom, 2021-11-07 às 21:45 -0500, Stephen Paul Weber escreveu:
> * gnu/packages/python-xyz.scm (python-wokkel): New variable.
> ---
>  gnu/packages/python-xyz.scm | 40
> +++++++++++++++++++++++++++++++++++++
>  1 file changed, 40 insertions(+)
> 
> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-
> xyz.scm
> index 4305e06030..0f1cd97e2f 100644
> --- a/gnu/packages/python-xyz.scm
> +++ b/gnu/packages/python-xyz.scm
> @@ -27757,3 +27757,43 @@ project. Rather than reading the Git history
> as some newer tools to produce it,
>  or having one single file which developers all write to, towncrier
> reads
>  \"news fragments\" which contain information useful to end users.")
>      (license license:expat)))
> +
> +(define-public python-wokkel
> +  (package
> +    (name "python-wokkel")
> +    (version "18.0.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (pypi-uri "wokkel" version))
> +        (sha256
> +          (base32
> "1spq44gg8gsviqx1dvlmjpgfc0wk0jpyx4ap01y2pad1ai9cw016"))))
> +    (build-system python-build-system)
> +    (arguments
> +     '(#:phases (modify-phases %standard-phases
> +                  (add-after 'unpack 'patch-tests
> +                    (lambda _
> +                      (substitute* "wokkel/test/test_client.py"
> +                        (("'example.org', connector.domain")
> +                         "b'example.org', connector.domain"))
> +                      (substitute* "wokkel/test/test_xmppim.py"
> +                        (("def test_onRosterRemove.*:")
> +                         "def test_onRosterRemove(self):\n       
> return")
> +                        (("def test_onRosterSet.*:")
> +                         "def test_onRosterSet(self):\n       
> return")))))))

Is this to skip tests? In unittest they can be skipped in a simpler way
by prefixing the test name with _:

> def test_onRosterRemove

becomes

> def _test_onRosterRemove

.

> +    (propagated-inputs
> +      `(("python-dateutil" ,python-dateutil)
> +        ("python-incremental" ,python-incremental)
> +        ("python-twisted" ,python-twisted)))
> +    (native-inputs
> +      `(("python-coverage" ,python-coverage)
> +        ("python-pydoctor" ,python-pydoctor)
> +        ("python-pyflakes" ,python-pyflakes)
> +        ("python-sphinx" ,python-sphinx)

Sphinx should be an input only if documentation is being built. If the
package fails to build when sphinx is not found, then it should remain.

> +        ("python-towncrier" ,python-towncrier)))
> +    (home-page "https://wokkel.ik.nu/")
> +    (synopsis "Twisted support library for Jabber/XMPP")
> +    (description "A collection of enhancements on top of the
> ​Twisted networking
> +framework. It provides enhancements to the Jabber/XMPP protocol
> implementation
> +as found in Twisted Words.")

Same comment about description from patch 4.

> +    (license license:expat)))






Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 12 Nov 2021 18:06:57 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Fri Nov 12 13:06:57 2021
Received: from localhost ([127.0.0.1]:45920 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mlawy-0001Il-NA
	for submit <at> debbugs.gnu.org; Fri, 12 Nov 2021 13:06:56 -0500
Received: from mout02.posteo.de ([185.67.36.66]:50327)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <monego@HIDDEN>) id 1mlaww-0001IY-Qg
 for 51675 <at> debbugs.gnu.org; Fri, 12 Nov 2021 13:06:55 -0500
Received: from submission (posteo.de [89.146.220.130]) 
 by mout02.posteo.de (Postfix) with ESMTPS id C58F2240109
 for <51675 <at> debbugs.gnu.org>; Fri, 12 Nov 2021 19:06:48 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017;
 t=1636740408; bh=LNCUNboIKLq95OFtKy2B3GypxDaEY98hWZ9aVRxPxJU=;
 h=Subject:From:To:Date:From;
 b=bmNtASebc70aHXArBlXX4aFKkTeT+HRItrYQBj1x0yZ/lmtx8AtdokONXiyqpP5OA
 0CLfaIgXmK+vGiBXNquC7HF8TE6GnRxWHVWs6qfLVCoFyq/iEO1zsoEooOqMk1bYV6
 RnAdUB2POSuXHEqzcvFrOEz4XryFRF0jw5MkhjMRYDn7TK7/9x4ZnKloMzzvveKtqY
 kq686apYfLdEYfHF7wa34toRzNyqA/g7QqsAJn/RK/ZZoNuddFYUmRpiU6Om8KRJPe
 WC+G8Gt4rPJ/f5RP12Yhp6lFPTr+jGu05adW1tm9efYCBxto0uaQ15FRr4Yl+sBZIV
 bz0qOEXOTO0/Q==
Received: from customer (localhost [127.0.0.1])
 by submission (posteo.de) with ESMTPSA id 4HrRP307SFz9rwg;
 Fri, 12 Nov 2021 19:06:46 +0100 (CET)
Message-ID: <c0d2c19fe660fbf23b51fdb90e2b9e9cbe5bdc8c.camel@HIDDEN>
Subject: Re: [bug#51675] [PATCH 4/5] gnu: Add python-towncrier.
From: Vinicius Monego <monego@HIDDEN>
To: Stephen Paul Weber <singpolyma@HIDDEN>, 51675 <at> debbugs.gnu.org
Date: Fri, 12 Nov 2021 18:06:39 +0000
In-Reply-To: <20211108024520.49594-4-singpolyma@HIDDEN>
References: <20211108024520.49594-1-singpolyma@HIDDEN>
 <20211108024520.49594-4-singpolyma@HIDDEN>
Content-Type: text/plain; charset="UTF-8"
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Spam-Score: -2.3 (--)
X-Debbugs-Envelope-To: 51675
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -3.3 (---)

Em dom, 2021-11-07 às 21:45 -0500, Stephen Paul Weber escreveu:
> * gnu/packages/python-xyz.scm (python-towncrier): New variable.
> ---
>  gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
> 
> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-
> xyz.scm
> index f439ffd91e..4305e06030 100644
> --- a/gnu/packages/python-xyz.scm
> +++ b/gnu/packages/python-xyz.scm
> @@ -27731,3 +27731,29 @@ hierarchies and, as it aims at documenting
> Twisted, knows about zope.interface's
>  declaration API and can present information about which classes
> implement which
>  interface, and vice versa.")
>      (license license:expat)))
> +
> +(define-public python-towncrier
> +  (package
> +    (name "python-towncrier")
> +    (version "21.3.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (pypi-uri "towncrier" version))
> +        (sha256
> +          (base32
> "1znxavwsiy6czirjn0qi1p5yarnm7gg692nb0309hb6p4k4hpvbf"))))
> +    (build-system python-build-system)
> +    (propagated-inputs
> +      `(("python-click" ,python-click)
> +        ("python-click-default-group" ,python-click-default-group)
> +        ("python-incremental" ,python-incremental)
> +        ("python-jinja2" ,python-jinja2)
> +        ("python-toml" ,python-toml)))
> +    (native-inputs `(("python-packaging" ,python-packaging)))
> +    (home-page "https://github.com/hawkowl/towncrier")
> +    (synopsis "Tool to build newsfiles for your Python project")
> +    (description "A utility to produce useful, summarised news files
> for your
> +project. Rather than reading the Git history as some newer tools to
> produce it,
> +or having one single file which developers all write to, towncrier
> reads
> +\"news fragments\" which contain information useful to end users.")

Full sentence in description. New sentences have to be started with
double spaces. You can check for linting issues with the `guix lint`
tool.

> +    (license license:expat)))






Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 12 Nov 2021 18:02:56 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Fri Nov 12 13:02:56 2021
Received: from localhost ([127.0.0.1]:45914 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mlat6-0001C7-2h
	for submit <at> debbugs.gnu.org; Fri, 12 Nov 2021 13:02:56 -0500
Received: from mout01.posteo.de ([185.67.36.65]:45009)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <monego@HIDDEN>) id 1mlat3-0001Bt-Ux
 for 51675 <at> debbugs.gnu.org; Fri, 12 Nov 2021 13:02:55 -0500
Received: from submission (posteo.de [89.146.220.130]) 
 by mout01.posteo.de (Postfix) with ESMTPS id 5A67F240027
 for <51675 <at> debbugs.gnu.org>; Fri, 12 Nov 2021 19:02:47 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017;
 t=1636740167; bh=s93xQlVS+l3MBVLEIykIPPf2WHl5fPrzaR2KLGNyGxA=;
 h=Subject:From:To:Date:From;
 b=UbEDMLEQrvZO/TPPSe7LbLMZC8pUZxvjQY69aSczxg1QtHL/rbg7/L4fosoucOFwl
 H0RkYq6eDZL1vgGw//MVKbFHZORlacn19V97nQ1EackzFzdiz0Fvisc0BzS3SOaQkd
 WpDjnO+qkmrhQHyZea2aaEUm6ifKe6X1eolettGBVqhd4Y7YPxAY3ThhDotWk3Vw7n
 oiO/WVNLF1p5YUH/b4VP8iXfdkpt3HbvcXGc3DtLj8/e3ynU639L+XU36F+/lxYr6Q
 DngxvbaHCnBaa69SdJbbWO5yPGOSSfDY03hDzDwtz5UuTvZ6s4hf3nXmfii8i0AWo+
 zMh+78nV4L6Vg==
Received: from customer (localhost [127.0.0.1])
 by submission (posteo.de) with ESMTPSA id 4HrRJP26rKz9rxP;
 Fri, 12 Nov 2021 19:02:45 +0100 (CET)
Message-ID: <4a21a9d7262cbd062fa22555bbadaeeb34c6a79e.camel@HIDDEN>
Subject: Re: [bug#51675] [PATCH 3/5] gnu: Add python-pydoctor.
From: Vinicius Monego <monego@HIDDEN>
To: Stephen Paul Weber <singpolyma@HIDDEN>, 51675 <at> debbugs.gnu.org
Date: Fri, 12 Nov 2021 18:02:36 +0000
In-Reply-To: <20211108024520.49594-3-singpolyma@HIDDEN>
References: <20211108024520.49594-1-singpolyma@HIDDEN>
 <20211108024520.49594-3-singpolyma@HIDDEN>
Content-Type: text/plain; charset="UTF-8"
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Spam-Score: -2.3 (--)
X-Debbugs-Envelope-To: 51675
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -3.3 (---)

Em dom, 2021-11-07 às 21:45 -0500, Stephen Paul Weber escreveu:
> * gnu/packages/python-xyz.scm (python-pydoctor): New variable.
> ---
>  gnu/packages/python-xyz.scm | 38
> +++++++++++++++++++++++++++++++++++++
>  1 file changed, 38 insertions(+)
> 
> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-
> xyz.scm
> index 96718c7c18..f439ffd91e 100644
> --- a/gnu/packages/python-xyz.scm
> +++ b/gnu/packages/python-xyz.scm
> @@ -27693,3 +27693,41 @@ simple mock/record and a complete
> capture/replay framework.")
>       "Ijson is an iterative JSON parser with standard Python
> iterator
>  interfaces.")
>      (license license:bsd-3)))
> +
> +(define-public python-pydoctor
> +  (package
> +    (name "python-pydoctor")
> +    (version "21.9.2")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (pypi-uri "pydoctor" version))
> +        (sha256
> +          (base32
> "0nknh3k4zv505031ga8ira0d4slvwwm5g5bzjacjidmi2mmjj311"))))
> +    (build-system python-build-system)
> +    (arguments
> +     ; Some tests use network and cache storage
> +     '(#:tests? #f))

Can these tests be skipped somehow? If Pytest is used there may be a
pytest mark, or if they are in specific files these files can be
deleted in a phase. If they are few they can be skipped manually too.

> +    (propagated-inputs
> +      `(("python-appdirs" ,python-appdirs)
> +        ("python-astor" ,python-astor)
> +        ("python-attrs" ,python-attrs)
> +        ("python-cachecontrol" ,python-cachecontrol)
> +        ("python-docutils" ,python-docutils)
> +        ("python-importlib-metadata" ,python-importlib-metadata)
> +        ("python-importlib-resources" ,python-importlib-resources)
> +        ("python-requests" ,python-requests)
> +        ("python-twisted" ,python-twisted)))

Does this package only provides an executable? Inputs can be normal
inputs in that case, the libraries will be wrapped to the executable in
the 'wrap phase.

> +    (native-inputs
> +      `(("python-beautifulsoup4" ,python-beautifulsoup4)
> +        ("python-hypothesis" ,python-hypothesis)
> +        ("python-pytest" ,python-pytest)
> +        ("python-sphinx" ,python-sphinx)))

If the tests still can't run these inputs can be removed or commented
out.

> +    (home-page "https://github.com/twisted/pydoctor")
> +    (synopsis "Python API documentation generator")
> +    (description "A documentation generator that works by static
> analysis.
> +It puts a fair bit of effort into resolving imports and computing
> inheritance
> +hierarchies and, as it aims at documenting Twisted, knows about
> zope.interface's
> +declaration API and can present information about which classes
> implement which
> +interface, and vice versa.")

Description should have full sentences. A rule of thumb is to use the
package name, e.g. "Pydoctor is a [...]" or "This package provides
[...]".

> +    (license license:expat)))






Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 12 Nov 2021 17:53:28 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Fri Nov 12 12:53:28 2021
Received: from localhost ([127.0.0.1]:45901 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mlajv-0000vz-Mk
	for submit <at> debbugs.gnu.org; Fri, 12 Nov 2021 12:53:28 -0500
Received: from mout01.posteo.de ([185.67.36.65]:50763)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <monego@HIDDEN>) id 1mlajs-0000vj-5P
 for 51675 <at> debbugs.gnu.org; Fri, 12 Nov 2021 12:53:26 -0500
Received: from submission (posteo.de [89.146.220.130]) 
 by mout01.posteo.de (Postfix) with ESMTPS id CC201240026
 for <51675 <at> debbugs.gnu.org>; Fri, 12 Nov 2021 18:53:17 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017;
 t=1636739597; bh=W7k2lhSqX7FyWZ03A7MOUl2vS0ShxGOUvzI3UCOWXqU=;
 h=Subject:From:To:Date:From;
 b=khwS2lAN9p/eA5i9myRyn4uNw1PwoIM2CtijBIewB6bcZXAzE+oWCFlJctxnaHmJ9
 k4cOakv12u/JZLGNNKlmmvGOoXNeV8wDgwUfN81PgtidGide8lKpAagFN/hFxW+8Uw
 lyfnEjoyfxu/rKttAPcLSqHnYDpjWPUXCEnlps/yUXZoPdvw9W/vrGYJ5hOW3QTTJI
 TYfWDGZe49P/V/r3JQxikPWWfuen16sFcFqCuSpiRy1EUsHzm9YCjKhoxahELAr+mD
 8cQ/swRD/QTOQw6CgGbPnejcONPmhKJ68DhG0ajE7EGadrF8QWwnZh1nbqHHdfj9Vt
 +/vFo9A85sUvw==
Received: from customer (localhost [127.0.0.1])
 by submission (posteo.de) with ESMTPSA id 4HrR5R5mhdz9rxF;
 Fri, 12 Nov 2021 18:53:15 +0100 (CET)
Message-ID: <69058da8cb8ffd6004857e7c5eff89a3a50aa00e.camel@HIDDEN>
Subject: Re: [bug#51675] [PATCH 2/5] gnu: python-twisted: Update to 21.7.0
From: Vinicius Monego <monego@HIDDEN>
To: Stephen Paul Weber <singpolyma@HIDDEN>, 51675 <at> debbugs.gnu.org
Date: Fri, 12 Nov 2021 17:53:06 +0000
In-Reply-To: <20211108024520.49594-2-singpolyma@HIDDEN>
References: <20211108024520.49594-1-singpolyma@HIDDEN>
 <20211108024520.49594-2-singpolyma@HIDDEN>
Content-Type: text/plain; charset="UTF-8"
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Spam-Score: -2.3 (--)
X-Debbugs-Envelope-To: 51675
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -3.3 (---)

Hi,

Em dom, 2021-11-07 às 21:45 -0500, Stephen Paul Weber escreveu:
> * gnu/packages/python-xyz.scm (python-twisted): Update to 21.7.0.
> [propagated-inputs]: Add python-typing-extensions, python-attrs, and
> python-service-identity.
> ---

I did not try to build the series, I will comment based on some
impressions first.

>  gnu/packages/python-xyz.scm | 17 +++++++++++++----
>  1 file changed, 13 insertions(+), 4 deletions(-)
> 
> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-
> xyz.scm
> index 639945c278..96718c7c18 100644
> --- a/gnu/packages/python-xyz.scm
> +++ b/gnu/packages/python-xyz.scm
> @@ -15105,22 +15105,31 @@ format.")
>  (define-public python-twisted
>    (package
>      (name "python-twisted")
> -    (version "19.7.0")
> +    (version "21.7.0")
>      (source (origin
>                (method url-fetch)
> -              (uri (pypi-uri "Twisted" version ".tar.bz2"))
> +              (uri (pypi-uri "Twisted" version))

This change should be described in the commit message.

>                (sha256
>                 (base32
> -               
> "17d3hnxv9qndagzz63mdpyk99xj63p9gq586vjn0rxk8cl197nym"))))
> +               
> "01lh225d7lfnmfx4f4kxwl3963gjc9yg8jfkn1w769v34ia55mic"))))
>      (build-system python-build-system)
>      (arguments
> -     '(#:tests? #f))                    ; FIXME: some tests fail
> +     '(#:tests? #f ; FIXME: some tests fail
> +       #:phases (modify-phases %standard-phases
> +                  (add-after 'unpack 'add-py3-var
> +                    (lambda _
> +                      (substitute* "src/twisted/python/compat.py"
> +                        (("_PY37PLUS = True")
> +                         "_PY37PLUS = True\n    _PY3 = True")))))))

This new phase should be described in the commit message.

>      (propagated-inputs
>       `(("python-zope-interface" ,python-zope-interface)
>         ("python-pyhamcrest" ,python-pyhamcrest)
>         ("python-incremental" ,python-incremental)
>         ("python-hyperlink" ,python-hyperlink)
>         ("python-constantly" ,python-constantly)
> +       ("python-typing-extensions" ,python-typing-extensions)
> +       ("python-attrs" ,python-attrs)
> +       ("python-service-identity" ,python-service-identity)
>         ("python-automat" ,python-automat)))

Could you also sort these inputs alphabetically?

>      (home-page "https://twistedmatrix.com/")
>      (synopsis "Asynchronous networking framework written in Python")






Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 8 Nov 2021 02:45:38 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sun Nov 07 21:45:38 2021
Received: from localhost ([127.0.0.1]:55490 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mjuf8-00066E-7f
	for submit <at> debbugs.gnu.org; Sun, 07 Nov 2021 21:45:38 -0500
Received: from singpolyma.net ([192.99.233.116]:57383)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <singpolyma@HIDDEN>) id 1mjuex-00065C-Gh
 for 51675 <at> debbugs.gnu.org; Sun, 07 Nov 2021 21:45:25 -0500
Received: by singpolyma.net (Postfix, from userid 1000)
 id 891A748616BA; Mon,  8 Nov 2021 02:45:22 +0000 (UTC)
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=singpolyma.net;
 s=iweb; t=1636339522;
 bh=pk0XRp9r1hXy9N9yNTWyxQtTH3xRIChKWy0ZG+RYm+U=;
 h=From:To:Cc:Subject:Date:In-Reply-To:References:From;
 b=A8zZ/cHbtau4xw7MQzCUT0XlODM3327ZIpFWCvoBROsMPB/btPneOQQh3TIh3htPY
 oaJLXFrvW1CEyPpnlhzils9pjzADnaVBbJC/emtBpQA8YF6CZ3K9Z9+dK9CLewK67X
 EpMPKMS0Y/QX3cQzs1v7Y1gSOuZRiLQRG+hwwFUk=
From: Stephen Paul Weber <singpolyma@HIDDEN>
To: 51675 <at> debbugs.gnu.org
Subject: [PATCH 2/5] gnu: python-twisted: Update to 21.7.0
Date: Sun,  7 Nov 2021 21:45:17 -0500
Message-Id: <20211108024520.49594-2-singpolyma@HIDDEN>
X-Mailer: git-send-email 2.30.2
In-Reply-To: <20211108024520.49594-1-singpolyma@HIDDEN>
References: <20211108024520.49594-1-singpolyma@HIDDEN>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 51675
Cc: Stephen Paul Weber <singpolyma@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/python-xyz.scm (python-twisted): Update to 21.7.0.
[propagated-inputs]: Add python-typing-extensions, python-attrs, and python-service-identity.
---
 gnu/packages/python-xyz.scm | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 639945c278..96718c7c18 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15105,22 +15105,31 @@ format.")
 (define-public python-twisted
   (package
     (name "python-twisted")
-    (version "19.7.0")
+    (version "21.7.0")
     (source (origin
               (method url-fetch)
-              (uri (pypi-uri "Twisted" version ".tar.bz2"))
+              (uri (pypi-uri "Twisted" version))
               (sha256
                (base32
-                "17d3hnxv9qndagzz63mdpyk99xj63p9gq586vjn0rxk8cl197nym"))))
+                "01lh225d7lfnmfx4f4kxwl3963gjc9yg8jfkn1w769v34ia55mic"))))
     (build-system python-build-system)
     (arguments
-     '(#:tests? #f))                    ; FIXME: some tests fail
+     '(#:tests? #f ; FIXME: some tests fail
+       #:phases (modify-phases %standard-phases
+                  (add-after 'unpack 'add-py3-var
+                    (lambda _
+                      (substitute* "src/twisted/python/compat.py"
+                        (("_PY37PLUS = True")
+                         "_PY37PLUS = True\n    _PY3 = True")))))))
     (propagated-inputs
      `(("python-zope-interface" ,python-zope-interface)
        ("python-pyhamcrest" ,python-pyhamcrest)
        ("python-incremental" ,python-incremental)
        ("python-hyperlink" ,python-hyperlink)
        ("python-constantly" ,python-constantly)
+       ("python-typing-extensions" ,python-typing-extensions)
+       ("python-attrs" ,python-attrs)
+       ("python-service-identity" ,python-service-identity)
        ("python-automat" ,python-automat)))
     (home-page "https://twistedmatrix.com/")
     (synopsis "Asynchronous networking framework written in Python")
-- 
2.30.2




Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 8 Nov 2021 02:45:34 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sun Nov 07 21:45:34 2021
Received: from localhost ([127.0.0.1]:55488 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mjuf7-000667-MK
	for submit <at> debbugs.gnu.org; Sun, 07 Nov 2021 21:45:34 -0500
Received: from singpolyma.net ([192.99.233.116]:57845)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <singpolyma@HIDDEN>) id 1mjuex-00065L-Tp
 for 51675 <at> debbugs.gnu.org; Sun, 07 Nov 2021 21:45:24 -0500
Received: by singpolyma.net (Postfix, from userid 1000)
 id AAFA748616BD; Mon,  8 Nov 2021 02:45:23 +0000 (UTC)
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=singpolyma.net;
 s=iweb; t=1636339523;
 bh=MhQv8lpFUDwQVDEmx8T1B6aBX0aPrNAfFNzvEMPGoJI=;
 h=From:To:Cc:Subject:Date:In-Reply-To:References:From;
 b=NIdM6dVfd8DrpQDBTQBily3Vh/IilIhAdM2kQbWiQaUTAyL+cNfZWtYuDddnp2NRY
 5rJ9DUMcLCAyHhMh8b+WcVkrmmQhp5En51YkKRfNln3hdENCytruqm0H/+TxFI7BQ1
 NX+DPaYdjRTGiPw6IFSVbaPcGnzzgiX9JT0bA15E=
From: Stephen Paul Weber <singpolyma@HIDDEN>
To: 51675 <at> debbugs.gnu.org
Subject: [PATCH 5/5] gnu: Add python-wokkel.
Date: Sun,  7 Nov 2021 21:45:20 -0500
Message-Id: <20211108024520.49594-5-singpolyma@HIDDEN>
X-Mailer: git-send-email 2.30.2
In-Reply-To: <20211108024520.49594-1-singpolyma@HIDDEN>
References: <20211108024520.49594-1-singpolyma@HIDDEN>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 51675
Cc: Stephen Paul Weber <singpolyma@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/python-xyz.scm (python-wokkel): New variable.
---
 gnu/packages/python-xyz.scm | 40 +++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4305e06030..0f1cd97e2f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27757,3 +27757,43 @@ project. Rather than reading the Git history as some newer tools to produce it,
 or having one single file which developers all write to, towncrier reads
 \"news fragments\" which contain information useful to end users.")
     (license license:expat)))
+
+(define-public python-wokkel
+  (package
+    (name "python-wokkel")
+    (version "18.0.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "wokkel" version))
+        (sha256
+          (base32 "1spq44gg8gsviqx1dvlmjpgfc0wk0jpyx4ap01y2pad1ai9cw016"))))
+    (build-system python-build-system)
+    (arguments
+     '(#:phases (modify-phases %standard-phases
+                  (add-after 'unpack 'patch-tests
+                    (lambda _
+                      (substitute* "wokkel/test/test_client.py"
+                        (("'example.org', connector.domain")
+                         "b'example.org', connector.domain"))
+                      (substitute* "wokkel/test/test_xmppim.py"
+                        (("def test_onRosterRemove.*:")
+                         "def test_onRosterRemove(self):\n        return")
+                        (("def test_onRosterSet.*:")
+                         "def test_onRosterSet(self):\n        return")))))))
+    (propagated-inputs
+      `(("python-dateutil" ,python-dateutil)
+        ("python-incremental" ,python-incremental)
+        ("python-twisted" ,python-twisted)))
+    (native-inputs
+      `(("python-coverage" ,python-coverage)
+        ("python-pydoctor" ,python-pydoctor)
+        ("python-pyflakes" ,python-pyflakes)
+        ("python-sphinx" ,python-sphinx)
+        ("python-towncrier" ,python-towncrier)))
+    (home-page "https://wokkel.ik.nu/")
+    (synopsis "Twisted support library for Jabber/XMPP")
+    (description "A collection of enhancements on top of the ​Twisted networking
+framework. It provides enhancements to the Jabber/XMPP protocol implementation
+as found in Twisted Words.")
+    (license license:expat)))
-- 
2.30.2




Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 8 Nov 2021 02:45:33 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sun Nov 07 21:45:33 2021
Received: from localhost ([127.0.0.1]:55486 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mjuf7-000660-EV
	for submit <at> debbugs.gnu.org; Sun, 07 Nov 2021 21:45:33 -0500
Received: from singpolyma.net ([192.99.233.116]:59235)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <singpolyma@HIDDEN>) id 1mjuex-00065J-PG
 for 51675 <at> debbugs.gnu.org; Sun, 07 Nov 2021 21:45:24 -0500
Received: by singpolyma.net (Postfix, from userid 1000)
 id 84E4F48616BC; Mon,  8 Nov 2021 02:45:23 +0000 (UTC)
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=singpolyma.net;
 s=iweb; t=1636339523;
 bh=GtZnaevo+DwumRdOOo0yb3ZTUEbuOkejKxPE+28b/20=;
 h=From:To:Cc:Subject:Date:In-Reply-To:References:From;
 b=A8jHzjxEVQDhfxmE5RuVXG/7gFcqYrkawQ3lDvbn7jWixO3ieNgchQBH7d8zdf7qB
 BvTvisKJUbHDPClh+RJcNBHSW0uXl8vbthzDOLHu35E8PNnD+5z/SM74fBwVUXtP0T
 r+k+CWBDG/g3pBShE9HacH17g0EcUsG0/9k7yGbI=
From: Stephen Paul Weber <singpolyma@HIDDEN>
To: 51675 <at> debbugs.gnu.org
Subject: [PATCH 4/5] gnu: Add python-towncrier.
Date: Sun,  7 Nov 2021 21:45:19 -0500
Message-Id: <20211108024520.49594-4-singpolyma@HIDDEN>
X-Mailer: git-send-email 2.30.2
In-Reply-To: <20211108024520.49594-1-singpolyma@HIDDEN>
References: <20211108024520.49594-1-singpolyma@HIDDEN>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 51675
Cc: Stephen Paul Weber <singpolyma@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/python-xyz.scm (python-towncrier): New variable.
---
 gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f439ffd91e..4305e06030 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27731,3 +27731,29 @@ hierarchies and, as it aims at documenting Twisted, knows about zope.interface's
 declaration API and can present information about which classes implement which
 interface, and vice versa.")
     (license license:expat)))
+
+(define-public python-towncrier
+  (package
+    (name "python-towncrier")
+    (version "21.3.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "towncrier" version))
+        (sha256
+          (base32 "1znxavwsiy6czirjn0qi1p5yarnm7gg692nb0309hb6p4k4hpvbf"))))
+    (build-system python-build-system)
+    (propagated-inputs
+      `(("python-click" ,python-click)
+        ("python-click-default-group" ,python-click-default-group)
+        ("python-incremental" ,python-incremental)
+        ("python-jinja2" ,python-jinja2)
+        ("python-toml" ,python-toml)))
+    (native-inputs `(("python-packaging" ,python-packaging)))
+    (home-page "https://github.com/hawkowl/towncrier")
+    (synopsis "Tool to build newsfiles for your Python project")
+    (description "A utility to produce useful, summarised news files for your
+project. Rather than reading the Git history as some newer tools to produce it,
+or having one single file which developers all write to, towncrier reads
+\"news fragments\" which contain information useful to end users.")
+    (license license:expat)))
-- 
2.30.2




Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 8 Nov 2021 02:45:33 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sun Nov 07 21:45:33 2021
Received: from localhost ([127.0.0.1]:55484 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mjuf7-00065s-0v
	for submit <at> debbugs.gnu.org; Sun, 07 Nov 2021 21:45:33 -0500
Received: from singpolyma.net ([192.99.233.116]:37495)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <singpolyma@HIDDEN>) id 1mjuex-00065E-J5
 for 51675 <at> debbugs.gnu.org; Sun, 07 Nov 2021 21:45:23 -0500
Received: by singpolyma.net (Postfix, from userid 1000)
 id 5386948616A0; Mon,  8 Nov 2021 02:45:23 +0000 (UTC)
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=singpolyma.net;
 s=iweb; t=1636339523;
 bh=wE8oA6ly7Q6YNHb5CrHcdCmBEqxQCLv+gmBgGtuxOdc=;
 h=From:To:Cc:Subject:Date:In-Reply-To:References:From;
 b=tEDED/CxftySoFPUTHwTnFq9TJoDObFsxjfi+0xyJXrXayIxjqKIv99g6GgoBcnbE
 pNtPk9UpOspZ50lQLeAWRfYQk4utDg2GmJPh20yfvsYjxZwUXo/6klBf6+F22qZxT5
 zFqlIXy7HL4XymWpuHlyOo5gLieq67iSU6DFarl0=
From: Stephen Paul Weber <singpolyma@HIDDEN>
To: 51675 <at> debbugs.gnu.org
Subject: [PATCH 3/5] gnu: Add python-pydoctor.
Date: Sun,  7 Nov 2021 21:45:18 -0500
Message-Id: <20211108024520.49594-3-singpolyma@HIDDEN>
X-Mailer: git-send-email 2.30.2
In-Reply-To: <20211108024520.49594-1-singpolyma@HIDDEN>
References: <20211108024520.49594-1-singpolyma@HIDDEN>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 51675
Cc: Stephen Paul Weber <singpolyma@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/python-xyz.scm (python-pydoctor): New variable.
---
 gnu/packages/python-xyz.scm | 38 +++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 96718c7c18..f439ffd91e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27693,3 +27693,41 @@ simple mock/record and a complete capture/replay framework.")
      "Ijson is an iterative JSON parser with standard Python iterator
 interfaces.")
     (license license:bsd-3)))
+
+(define-public python-pydoctor
+  (package
+    (name "python-pydoctor")
+    (version "21.9.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "pydoctor" version))
+        (sha256
+          (base32 "0nknh3k4zv505031ga8ira0d4slvwwm5g5bzjacjidmi2mmjj311"))))
+    (build-system python-build-system)
+    (arguments
+     ; Some tests use network and cache storage
+     '(#:tests? #f))
+    (propagated-inputs
+      `(("python-appdirs" ,python-appdirs)
+        ("python-astor" ,python-astor)
+        ("python-attrs" ,python-attrs)
+        ("python-cachecontrol" ,python-cachecontrol)
+        ("python-docutils" ,python-docutils)
+        ("python-importlib-metadata" ,python-importlib-metadata)
+        ("python-importlib-resources" ,python-importlib-resources)
+        ("python-requests" ,python-requests)
+        ("python-twisted" ,python-twisted)))
+    (native-inputs
+      `(("python-beautifulsoup4" ,python-beautifulsoup4)
+        ("python-hypothesis" ,python-hypothesis)
+        ("python-pytest" ,python-pytest)
+        ("python-sphinx" ,python-sphinx)))
+    (home-page "https://github.com/twisted/pydoctor")
+    (synopsis "Python API documentation generator")
+    (description "A documentation generator that works by static analysis.
+It puts a fair bit of effort into resolving imports and computing inheritance
+hierarchies and, as it aims at documenting Twisted, knows about zope.interface's
+declaration API and can present information about which classes implement which
+interface, and vice versa.")
+    (license license:expat)))
-- 
2.30.2




Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at 51675 <at> debbugs.gnu.org:


Received: (at 51675) by debbugs.gnu.org; 8 Nov 2021 02:45:33 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sun Nov 07 21:45:33 2021
Received: from localhost ([127.0.0.1]:55482 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mjuez-00065d-2x
	for submit <at> debbugs.gnu.org; Sun, 07 Nov 2021 21:45:32 -0500
Received: from singpolyma.net ([192.99.233.116]:58451)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <singpolyma@HIDDEN>) id 1mjuew-00065A-TG
 for 51675 <at> debbugs.gnu.org; Sun, 07 Nov 2021 21:45:23 -0500
Received: by singpolyma.net (Postfix, from userid 1000)
 id 6A61448616B9; Mon,  8 Nov 2021 02:45:22 +0000 (UTC)
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=singpolyma.net;
 s=iweb; t=1636339522;
 bh=yoRNFP8erhrZhY0hfb0vMY9ogu0Nznb8fe/uNAcuBXY=;
 h=From:To:Cc:Subject:Date:From;
 b=v3ULP50hTG3dwDDh+YrzUycaEj9prVCem8wl8ttZJuXTO6BF8dHK9JfyrRrXdmX6j
 ItvzgOO4PcVLK16lMyGlHBKn99Xcy/tOKdbhthhraiNaUSdmaA4wHc0G726wnqyTEY
 mDjVRcRusmzpchHLF06bOhL8UWU/QVY7iJF6McKA=
From: Stephen Paul Weber <singpolyma@HIDDEN>
To: 51675 <at> debbugs.gnu.org
Subject: [PATCH 1/5] gnu: python-incremental: Update to 21.3.0
Date: Sun,  7 Nov 2021 21:45:16 -0500
Message-Id: <20211108024520.49594-1-singpolyma@HIDDEN>
X-Mailer: git-send-email 2.30.2
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 51675
Cc: Stephen Paul Weber <singpolyma@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/python-xyz.scm (python-incremental): Update to 21.3.0.
---
 gnu/packages/python-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8ba72170c0..639945c278 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17681,14 +17681,14 @@ parse many formal languages.")
 (define-public python-incremental
   (package
     (name "python-incremental")
-    (version "17.5.0")
+    (version "21.3.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "incremental" version))
        (sha256
         (base32
-         "1cylxdz1cnkm5g3pklna3h2n0i0rks95ir1pnpxfnvpkmab1cxbv"))))
+         "0mvgbmsnv1c8ziydw41jjkivc0zcqyzli7frcpvbkxj8zxddxx82"))))
     (build-system python-build-system)
     (home-page "https://github.com/hawkowl/incremental")
     (synopsis "Library for versioning Python projects")
-- 
2.30.2




Information forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.

Message received at submit <at> debbugs.gnu.org:


Received: (at submit) by debbugs.gnu.org; 8 Nov 2021 02:42:19 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sun Nov 07 21:42:19 2021
Received: from localhost ([127.0.0.1]:55473 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1mjubz-000608-Lt
	for submit <at> debbugs.gnu.org; Sun, 07 Nov 2021 21:42:19 -0500
Received: from lists.gnu.org ([209.51.188.17]:42612)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <singpolyma@HIDDEN>) id 1mjubv-0005zw-9b
 for submit <at> debbugs.gnu.org; Sun, 07 Nov 2021 21:42:19 -0500
Received: from eggs.gnu.org ([209.51.188.92]:34828)
 by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
 (Exim 4.90_1) (envelope-from <singpolyma@HIDDEN>)
 id 1mjubv-0008BQ-2B
 for guix-patches@HIDDEN; Sun, 07 Nov 2021 21:42:15 -0500
Received: from singpolyma.net ([192.99.233.116]:43847)
 by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
 (Exim 4.90_1) (envelope-from <singpolyma@HIDDEN>)
 id 1mjubt-0002JA-0U
 for guix-patches@HIDDEN; Sun, 07 Nov 2021 21:42:14 -0500
Received: by singpolyma.net (Postfix, from userid 1000)
 id 3755048616B9; Mon,  8 Nov 2021 02:42:11 +0000 (UTC)
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=singpolyma.net;
 s=iweb; t=1636339331;
 bh=OHxsEnBBLPQI4yjbj9/pWWIxV2m3twGRmq9FzlgCiLI=;
 h=Date:From:To:Subject:From;
 b=dx7rd1o55mOptkHQVIrxp12IpS5u+0BPL8VeY5NM7SkFe3iT0nN3kLm2ofxIIGw7x
 VsP9w9VM9n9azjBDK3bhE09Ib2qTJ/0PdiJM0w7lgclM0t2uO9yrQmzkXiP5RFpfWl
 oCQnN78MMLAKTFdc3ywMY/5BBQt00k/0k3k2ooX4=
Date: Sun, 7 Nov 2021 21:42:10 -0500
From: Stephen Paul Weber <singpolyma@HIDDEN>
To: guix-patches@HIDDEN
Subject: Add python-wokkel, Jabber/XMPP module for Twisted
Message-ID: <YYiOgriWPOi+DH09@HIDDEN>
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha256;
 protocol="application/pgp-signature"; boundary="ajEfIdvI8fDn0HQA"
Content-Disposition: inline
Jabber-ID: singpolyma@HIDDEN
OpenPGP: id=CE519CDE; url=https://singpolyma.net/public.asc
X-URL: https://singpolyma.net
Received-SPF: pass client-ip=192.99.233.116;
 envelope-from=singpolyma@HIDDEN; helo=singpolyma.net
X-Spam_score_int: -20
X-Spam_score: -2.1
X-Spam_bar: --
X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1,
 DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1,
 RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_PASS=-0.001,
 SPF_PASS=-0.001 autolearn=ham autolearn_force=no
X-Spam_action: no action
X-Spam-Score: -1.4 (-)
X-Debbugs-Envelope-To: submit
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -2.4 (--)


--ajEfIdvI8fDn0HQA
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Disposition: inline

This patch series adds python-wokkel, a Jabber/XMPP module for Twisted that is
used by libervia client (which I am packaging).

--ajEfIdvI8fDn0HQA
Content-Type: application/pgp-signature; name="signature.asc"

-----BEGIN PGP SIGNATURE-----

iQIzBAABCAAdFiEEWeaCw+rzmiEMpzU00RwpEc5RnN4FAmGIjoIACgkQ0RwpEc5R
nN55GQ//RB/spERz07vhzY/Jk/AewxY6tLuAFUruovNmqLGyZQgxNYwHcfCJ6Rqk
bnlWIa1svxLE4x3ASpZT4JlEQBk/72fdJNdiZzJkL0O9R7yVi0Gt0VU26RqfoD+3
FdliIs3072suyL6VRaR8OLu5FCLqlPOeaHpTaqocnsMqiLup2UnunwZFFkl2oXfl
onBnDHiXRRFsiGT2+LYyG2m+bmacRuAPsPMK8bijWnsL+xSVTMAoYRVYrOI5SxEV
rLzw1UnD2lU+UpXddxOR1zyeyl6T4z8qgyvOTMNnIMZuzGzVcuuWDkwm/4RmLMpm
+QpF8jYeF4lCzxurNvONJ4CU7oB+SH2p8U62oMHcKW+tZgdt5/v0FjUmg88r1JvG
nsyBE/32tOrWnvg+nGzMEvM/tIgdRqSHuaDpdeW6/rS145DrTNijtUEErBzLga8J
Zh7RiJbQlQhTYLDDdNaf35iphkaA2IShDqr455ss1nfcTW6N6/M/O1drV3ZH4qdt
fKdDR4ahEMq29IJ8S74zVHsDVTBdk0IFw5/HkwCf5fRHNgE6Igx5YGEjyC5gJ314
pTLVhynauZGcCLPIkeo9evtUiFaKEJ6vgPxQdVXiZVyE5iP3XzmatypZajYSrIM7
rPGN1uCLo6J8tbqNheAucG6CI+iM2/v9yryttbJ6dog11r2bhSI=
=xpOs
-----END PGP SIGNATURE-----

--ajEfIdvI8fDn0HQA--




Acknowledgement sent to Stephen Paul Weber <singpolyma@HIDDEN>:
New bug report received and forwarded. Copy sent to guix-patches@HIDDEN. Full text available.
Report forwarded to guix-patches@HIDDEN:
bug#51675; Package guix-patches. Full text available.
Please note: This is a static page, with minimal formatting, updated once a day.
Click here to see this page with the latest information and nicer formatting.
Last modified: Sun, 14 Nov 2021 02:00:02 UTC

GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997 nCipher Corporation Ltd, 1994-97 Ian Jackson.