From unknown Sat Aug 16 00:30:35 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#44251 <44251@debbugs.gnu.org> To: bug#44251 <44251@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add pwclient. Reply-To: bug#44251 <44251@debbugs.gnu.org> Date: Sat, 16 Aug 2025 07:30:35 +0000 retitle 44251 [PATCH] gnu: Add pwclient. reassign 44251 guix-patches submitter 44251 Christopher Baines severity 44251 normal tag 44251 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 27 05:46:16 2020 Received: (at submit) by debbugs.gnu.org; 27 Oct 2020 09:46:16 +0000 Received: from localhost ([127.0.0.1]:42918 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXLYV-0001fH-Rm for submit@debbugs.gnu.org; Tue, 27 Oct 2020 05:46:16 -0400 Received: from lists.gnu.org ([209.51.188.17]:59366) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXLYT-0001cu-H2 for submit@debbugs.gnu.org; Tue, 27 Oct 2020 05:46:13 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:50846) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kXLYT-0007vm-9G for guix-patches@gnu.org; Tue, 27 Oct 2020 05:46:13 -0400 Received: from mira.cbaines.net ([2a01:7e00:e000:2f8:fd4d:b5c7:13fb:3d27]:35567) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kXLYO-0003tw-NH for guix-patches@gnu.org; Tue, 27 Oct 2020 05:46:13 -0400 Received: from localhost (92.41.179.191.threembb.co.uk [92.41.179.191]) by mira.cbaines.net (Postfix) with ESMTPSA id EA98127BBF2 for ; Tue, 27 Oct 2020 09:46:04 +0000 (GMT) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id caa9a4c3 for ; Tue, 27 Oct 2020 09:46:02 +0000 (UTC) From: Christopher Baines To: guix-patches@gnu.org Subject: [PATCH] gnu: Add pwclient. Date: Tue, 27 Oct 2020 09:46:02 +0000 Message-Id: <20201027094602.13503-1-mail@cbaines.net> X-Mailer: git-send-email 2.28.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2a01:7e00:e000:2f8:fd4d:b5c7:13fb:3d27; envelope-from=mail@cbaines.net; helo=mira.cbaines.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/10/27 05:46:05 X-ACL-Warn: Detected OS = ??? X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, UNPARSEABLE_RELAY=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/patchutils.scm (pwclient): New variable. --- gnu/packages/patchutils.scm | 41 +++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/gnu/packages/patchutils.scm b/gnu/packages/patchutils.scm index 12dd472c68..e0ed30070b 100644 --- a/gnu/packages/patchutils.scm +++ b/gnu/packages/patchutils.scm @@ -468,3 +468,44 @@ patches, and displays the patches along with comments and state information. Users can login allowing them to change the state of patches.") (home-page "http://jk.ozlabs.org/projects/patchwork/") (license gpl2+))) + +(define-public pwclient + (package + (name "pwclient") + (version "1.3.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/getpatchwork/pwclient") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1xckwvcqklzpyh3xs4k2zm40ifp0q5fdkj2vmgb8vhfvl1ivs6jv")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch + (lambda _ + (substitute* "test-requirements.txt" + (("pytest>=3.0,<5.0;") + "pytest>=3.0,<6.0;")) + #t)) + (add-before 'build 'set-PBR_VERSION + (lambda _ + (setenv "PBR_VERSION" + ,version) + #t))))) + (native-inputs + `(("npython-pbr" ,python-pbr) + ("python-pytest" ,python-pytest) + ("python-pytest-cov" ,python-pytest-cov) + ("python-mock" ,python-mock))) + (home-page + "https://github.com/getpatchwork/pwclient") + (synopsis "Command-line client for the Patchwork patch tracking tool") + (description + "pwclient is a VCS-agnostic tool for interacting with Patchwork, the +web-based patch tracking system.") + (license gpl2+))) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 27 19:05:33 2020 Received: (at 44251) by debbugs.gnu.org; 27 Oct 2020 23:05:34 +0000 Received: from localhost ([127.0.0.1]:46349 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXY21-0004aX-J4 for submit@debbugs.gnu.org; Tue, 27 Oct 2020 19:05:33 -0400 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:49225) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXY1z-0004aI-RL for 44251@debbugs.gnu.org; Tue, 27 Oct 2020 19:05:32 -0400 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id BF1A65C018F; Tue, 27 Oct 2020 19:05:26 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute3.internal (MEProxy); Tue, 27 Oct 2020 19:05:26 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=mesmtp; bh=/gSBEloKsug8waTZ5o3xYviq xkHRqOKr0penNH4OVxE=; b=XiG5gth7KBz08H+K1G8FzzOaVPgjqw5mukxlhJK/ T+oiGgm0krI2Krn6Fc7gQxi5IQRCsdKSFbOL9jRsti/RItzbwizcjkHyXEBU1FY4 iTjjJNHg5FcGfNw2+EXCRFSnFi6HJAi46x2iN5ycxb4w7h8dB8RJ1FAy/xk8xRv2 qjk= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=/gSBEl oKsug8waTZ5o3xYviqxkHRqOKr0penNH4OVxE=; b=ZYoSlozonKlkjEVc7M+Znv nEf4I3ta5XVlRVWKs04eottLc4bRVH04Yz4vxDryJ1IWTQrjX7hl2Eu0g+quXRq3 gYoEH4HLjpPUcwnxj28+IMN9v8keYxXMRrGmAlrkAhRtyQJCHUKSSeuQ0GCuC1LC CN4/iM/IooA9io09N0sZXVxzdW1iynXlLaGz4s5I3+wDv7uekPk4E4Xs6gYH7cEu pr00aObz2vuQsZcOuihno7/DWvY+Jb4irFAAeU7+B2Rs9lR6FzEvGw3ct/pNVSRi g4+rmLzDDZ/kb9ClBmtTHYV0bSr2fzd9jhZO+KIqYYRoQZLvdDkLjTLk79nk9ang == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedujedrledtgddthecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhepfffhvffukfhfgggtuggjsehttdertd dttddvnecuhfhrohhmpefnvghoucfhrghmuhhlrghrihcuoehlvghosehfrghmuhhlrghr ihdrnhgrmhgvqeenucggtffrrghtthgvrhhnpeeukeektdffvddtudegjeegtdevhfeufe eivdejiedtieegtdevjedvjeehffevgfenucfkphepjeefrddugedurdduvdejrddugeei necuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehmrghilhhfrhhomheplhgvoh esfhgrmhhulhgrrhhirdhnrghmvg X-ME-Proxy: Received: from localhost (c-73-141-127-146.hsd1.pa.comcast.net [73.141.127.146]) by mail.messagingengine.com (Postfix) with ESMTPA id 356363280069; Tue, 27 Oct 2020 19:05:26 -0400 (EDT) Date: Tue, 27 Oct 2020 19:05:24 -0400 From: Leo Famulari To: Christopher Baines Subject: Re: [bug#44251] [PATCH] gnu: Add pwclient. Message-ID: <20201027230524.GC32529@jasmine.lan> References: <20201027094602.13503-1-mail@cbaines.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201027094602.13503-1-mail@cbaines.net> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 44251 Cc: 44251@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) On Tue, Oct 27, 2020 at 09:46:02AM +0000, Christopher Baines wrote: > * gnu/packages/patchutils.scm (pwclient): New variable. > + (add-after 'unpack 'patch > + (lambda _ > + (substitute* "test-requirements.txt" > + (("pytest>=3.0,<5.0;") > + "pytest>=3.0,<6.0;")) > + #t)) I would call the phase 'patch-requirements' or similar and add a brief comment explaining it. > + (native-inputs > + `(("npython-pbr" ,python-pbr) Typo here --^ From debbugs-submit-bounces@debbugs.gnu.org Wed Oct 28 09:29:43 2020 Received: (at 44251) by debbugs.gnu.org; 28 Oct 2020 13:29:43 +0000 Received: from localhost ([127.0.0.1]:47686 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXlWJ-0005RV-0T for submit@debbugs.gnu.org; Wed, 28 Oct 2020 09:29:43 -0400 Received: from mira.cbaines.net ([212.71.252.8]:60170) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXlWG-0005RK-P4 for 44251@debbugs.gnu.org; Wed, 28 Oct 2020 09:29:41 -0400 Received: from localhost (188.28.126.167.threembb.co.uk [188.28.126.167]) by mira.cbaines.net (Postfix) with ESMTPSA id E685B27BBF2 for <44251@debbugs.gnu.org>; Wed, 28 Oct 2020 13:29:39 +0000 (GMT) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id c7f050e4 for <44251@debbugs.gnu.org>; Wed, 28 Oct 2020 13:29:37 +0000 (UTC) From: Christopher Baines To: 44251@debbugs.gnu.org Subject: [PATCH v2] gnu: Add pwclient. Date: Wed, 28 Oct 2020 13:29:37 +0000 Message-Id: <20201028132937.9750-1-mail@cbaines.net> X-Mailer: git-send-email 2.28.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 44251 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/patchutils.scm (pwclient): New variable. --- gnu/packages/patchutils.scm | 54 +++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/gnu/packages/patchutils.scm b/gnu/packages/patchutils.scm index 12dd472c68..da0f13a01e 100644 --- a/gnu/packages/patchutils.scm +++ b/gnu/packages/patchutils.scm @@ -468,3 +468,57 @@ patches, and displays the patches along with comments and state information. Users can login allowing them to change the state of patches.") (home-page "http://jk.ozlabs.org/projects/patchwork/") (license gpl2+))) + +(define-public pwclient + (package + (name "pwclient") + (version "1.3.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/getpatchwork/pwclient") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1xckwvcqklzpyh3xs4k2zm40ifp0q5fdkj2vmgb8vhfvl1ivs6jv")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-requirements + (lambda _ + (substitute* "test-requirements.txt" + ;; The pytest requirement is unnecessarily strict + (("pytest>=3.0,<5.0;") + "pytest>=3.0,<6.0;")) + #t)) + (add-before 'build 'set-PBR_VERSION + (lambda _ + (setenv "PBR_VERSION" + ,version) + #t)) + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "pytest")) + #t)) + (add-after 'install 'install-man-page + (lambda* (#:key outputs #:allow-other-keys) + (install-file "man/pwclient.1" + (string-append + (assoc-ref outputs "out") + "/share/man/man1")) + #t))))) + (native-inputs + `(("python-pbr" ,python-pbr) + ("python-pytest" ,python-pytest) + ("python-pytest-cov" ,python-pytest-cov) + ("python-mock" ,python-mock))) + (home-page + "https://github.com/getpatchwork/pwclient") + (synopsis "Command-line client for the Patchwork patch tracking tool") + (description + "pwclient is a VCS-agnostic tool for interacting with Patchwork, the +web-based patch tracking system.") + (license gpl2+))) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Wed Oct 28 09:30:54 2020 Received: (at 44251) by debbugs.gnu.org; 28 Oct 2020 13:30:54 +0000 Received: from localhost ([127.0.0.1]:47690 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXlXS-0005Us-DD for submit@debbugs.gnu.org; Wed, 28 Oct 2020 09:30:54 -0400 Received: from mira.cbaines.net ([212.71.252.8]:60176) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXlXN-0005Uj-Pa for 44251@debbugs.gnu.org; Wed, 28 Oct 2020 09:30:53 -0400 Received: from localhost (188.28.126.167.threembb.co.uk [188.28.126.167]) by mira.cbaines.net (Postfix) with ESMTPSA id 6063527BBF2; Wed, 28 Oct 2020 13:30:49 +0000 (GMT) Received: from capella (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id fd6affc3; Wed, 28 Oct 2020 13:30:47 +0000 (UTC) References: <20201027094602.13503-1-mail@cbaines.net> <20201027230524.GC32529@jasmine.lan> User-agent: mu4e 1.4.13; emacs 27.1 From: Christopher Baines To: Leo Famulari Subject: Re: [bug#44251] [PATCH] gnu: Add pwclient. In-reply-to: <20201027230524.GC32529@jasmine.lan> Date: Wed, 28 Oct 2020 13:30:46 +0000 Message-ID: <871rhizddl.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 44251 Cc: 44251@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain Leo Famulari writes: > On Tue, Oct 27, 2020 at 09:46:02AM +0000, Christopher Baines wrote: >> * gnu/packages/patchutils.scm (pwclient): New variable. > >> + (add-after 'unpack 'patch >> + (lambda _ >> + (substitute* "test-requirements.txt" >> + (("pytest>=3.0,<5.0;") >> + "pytest>=3.0,<6.0;")) >> + #t)) > > I would call the phase 'patch-requirements' or similar and add a brief > comment explaining it. I've renamed the phase now, and added a comment. >> + (native-inputs >> + `(("npython-pbr" ,python-pbr) > > Typo here --^ Indeed, I've removed the rogue n. I've sent an updated patch, which fixes a few more things as well. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAl+ZcoZfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9Xf7rA//bc7x61sr3MmaoM4In/QomcdrX7162wyD 5phjaJMwdiJ79fnPm1Nn3J8BZSSW9a/T/yeHgE5XX4XNnsh7H1qlQxPCHwZrv76o gqZvDqLjffWJyqKLRkeyVddSbyCCcyk0eSSUY0fjiiXXpEYfHT4MtCVRfX3SRye+ chl4XMaJ6Kd1lWsfXZrAnbCCW0VTOGdxD9cpDPfTKaZ+9rYkVI2Ribi/p8icrTsF 69iucD5izpz5HnKLy0RitY+qrqMmd1S93mAJzl/LcxeGRpki0Pr/kSrTjlkS4LXL fGHqmeY0vre6odbx0tSMe+e99kFT30s7NANbtvT1tjgDkHQdHQK2K9zbm61esVk8 NimfJgn0QlePGK/Pw0rtsfY+v0DUP6mB2MCh/7my99URLl3UClSADT07v8EQUXii opEUwmagVJ0CVRspledUqAEKO3nLWEN3DAMQFs8vjk9ChNmbbIqlJakRMZNRZYhC TYhlGtq1CfM6T+hzlTgaMZ8u47XFF+D+3wd9aVStmgMnDjDctMGXqpttDD+cQoUg c8QtzqBq+v5vohAKHWbEXToiiJJb0+D2blDBH7qnJ2LyWuCyMdufG9VRdaO98BrB mS4YKz7tDBCAW72Od9h1B4wUgJDvahp3c8nGXArpJ1sX7+hiuXQJ8WB3o85xRfUs m6VaKgsTiYM= =buVS -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Wed Oct 28 11:36:31 2020 Received: (at 44251) by debbugs.gnu.org; 28 Oct 2020 15:36:31 +0000 Received: from localhost ([127.0.0.1]:50185 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXnV0-0002yV-TI for submit@debbugs.gnu.org; Wed, 28 Oct 2020 11:36:31 -0400 Received: from wout2-smtp.messagingengine.com ([64.147.123.25]:54049) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXnUy-0002yH-Od for 44251@debbugs.gnu.org; Wed, 28 Oct 2020 11:36:29 -0400 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.west.internal (Postfix) with ESMTP id 91A7DB58; Wed, 28 Oct 2020 11:36:22 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute3.internal (MEProxy); Wed, 28 Oct 2020 11:36:22 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=mesmtp; bh=tWLNgN062yckWDzj5/gnM5pD 4li9VIaLFSb4KZbJyxw=; b=EGSYCJHbR6Pi6XmxWLUjaW05meTVvvskuCOKfJAB bH9JCb2kA+o6tGu8ZScn+Hb67WNNUtfacvxLnBs0qrC9PHm7jlAAy4boS1sCT8Wa dyy+NhwafKynHAGC98Ffj8TuVo4xodpl/qtWDbRDZ/iH+o+0XHoJ5j+OxVdduun3 qvg= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=tWLNgN 062yckWDzj5/gnM5pD4li9VIaLFSb4KZbJyxw=; b=b2G/ivFytK5BP5xvFN2Oqw TKVx6zNpEWJobs+zfa6hAsSPPxruITEUOWrQ8pR52aLiZxHMuqmeFueAb3dcXIib /jD6xcb4Mxht3OtTBdT40LXQW77M/RwujIhJtIN9KOMrt91NTnnl1rjVaiDjhlwc kKX+S4MyvCpJPlEnU/NFn8dCtadXZ3TN41sfe5A0nLFxTueihUPwf67PL3Tkfp1b aSx0TkPIi1tyvAtP9oHmCd/81L37rUOVRgNEXwtWMzWFqt8OrVl3VxHbBGObOXHN TsuA3MasBfkRJcOBlbDPPL3w8ubxzoQrJ0sAn5q/T4GVKkqeEAaarMTIZpL/K0TA == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedujedrledugdejjecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhepfffhvffukfhfgggtuggjsehgtderre dttddvnecuhfhrohhmpefnvghoucfhrghmuhhlrghrihcuoehlvghosehfrghmuhhlrghr ihdrnhgrmhgvqeenucggtffrrghtthgvrhhnpedukeevgeetkeeltefgiedtjefgjeekff duteehvdfhueekudelieekjeefheffteenucfkphepjeefrddugedurdduvdejrddugeei necuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehmrghilhhfrhhomheplhgvoh esfhgrmhhulhgrrhhirdhnrghmvg X-ME-Proxy: Received: from localhost (c-73-141-127-146.hsd1.pa.comcast.net [73.141.127.146]) by mail.messagingengine.com (Postfix) with ESMTPA id B9D5A306467E; Wed, 28 Oct 2020 11:36:21 -0400 (EDT) Date: Wed, 28 Oct 2020 11:36:19 -0400 From: Leo Famulari To: Christopher Baines Subject: Re: [bug#44251] [PATCH] gnu: Add pwclient. Message-ID: <20201028153619.GA9989@jasmine.lan> References: <20201027094602.13503-1-mail@cbaines.net> <20201027230524.GC32529@jasmine.lan> <871rhizddl.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="y0ulUmNC+osPPQO6" Content-Disposition: inline In-Reply-To: <871rhizddl.fsf@cbaines.net> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 44251 Cc: 44251@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --y0ulUmNC+osPPQO6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Oct 28, 2020 at 01:30:46PM +0000, Christopher Baines wrote: > I've sent an updated patch, which fixes a few more things as well. Alright, then you can push as you see fit :) --y0ulUmNC+osPPQO6 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAl+Zj+8ACgkQJkb6MLrK fwjzRxAA7kmXJbRWXLwrvu0blxMgfmQ9XpczOFdz7iCqWYg/+YLcg8zznuTl+pOK IDp6Mt1DNUlFyRstCnfADMRu4vp0ClXJB3Y3bjf5DwQ8yzhbQ8t8vG8Ei5+zjvGQ Jnlz3IiIN5p9RJkLuz4ft+1tbrDj/qWjQrkIZls3QAHBukvlFyKYZsChbK5rvGIV YV0sJ/2rG7vBX1szc5x7isN7N3rx5omLid5siwrS+X8s+36cJXyPSbfvRQ05uCE0 IPImD0UK0Ks5mhGhuY5qfGQhnpzPkCEV1upuoOpGclhf06nl3eGsyeHzqZqPcMMC p3DQzwCSVeggV7sq4ghfyi2l8GVr6vMqOx+7Tk91ca/HZlwQIJOiV/iRwkB6gf/l g2I0C0y+Q8CyOuRaJWGIGqyAClHvnOvqodnhRXF2u4co8yG0q1ADMcjSSRaESiRr ViQYAYNaz4q+m0QlwXK9Sg3ThMYiafSky5UZ7lbjlPrmNc0HKgYmO61WZAfuGwcl hyGxGcBt/Ql+GjM2DkCSjTLtnRswDQHUPnOHNaTA7WO2I6f43O0QoemEYc1vOrhv 0qbf4Ysc+63zuy6woegGpudgFOHURSMKUqckkIHGP2/EAckSp3EgfYyOAy3sh4+f hwHv8q4GIi0ICS01K4OStAFD4ULl3+0A7U8qa11rElu1jDRNSk4= =iNQG -----END PGP SIGNATURE----- --y0ulUmNC+osPPQO6-- From debbugs-submit-bounces@debbugs.gnu.org Wed Oct 28 12:53:53 2020 Received: (at 44251-done) by debbugs.gnu.org; 28 Oct 2020 16:53:53 +0000 Received: from localhost ([127.0.0.1]:50399 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXoht-00052w-4v for submit@debbugs.gnu.org; Wed, 28 Oct 2020 12:53:53 -0400 Received: from mira.cbaines.net ([212.71.252.8]:42884) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXohr-00052m-9a for 44251-done@debbugs.gnu.org; Wed, 28 Oct 2020 12:53:51 -0400 Received: from localhost (188.28.126.167.threembb.co.uk [188.28.126.167]) by mira.cbaines.net (Postfix) with ESMTPSA id 4F6A527BBF3; Wed, 28 Oct 2020 16:53:50 +0000 (GMT) Received: from capella (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 664902de; Wed, 28 Oct 2020 16:53:47 +0000 (UTC) References: <20201027094602.13503-1-mail@cbaines.net> <20201027230524.GC32529@jasmine.lan> <871rhizddl.fsf@cbaines.net> <20201028153619.GA9989@jasmine.lan> User-agent: mu4e 1.4.13; emacs 27.1 From: Christopher Baines To: Leo Famulari Subject: Re: [bug#44251] [PATCH] gnu: Add pwclient. In-reply-to: <20201028153619.GA9989@jasmine.lan> Date: Wed, 28 Oct 2020 16:53:47 +0000 Message-ID: <87y2jqxpes.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 44251-done Cc: 44251-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain Leo Famulari writes: > On Wed, Oct 28, 2020 at 01:30:46PM +0000, Christopher Baines wrote: >> I've sent an updated patch, which fixes a few more things as well. > > Alright, then you can push as you see fit :) Thanks for taking a look! I've pushed this to master as f6839fed5f2052fd257b4af73effb10dcd9bf35b now. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAl+ZohtfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9XdF3Q//XGn1G8BIXFGzuYuntXfv1snFBILCsOoA LlKc+8OetCxYnzIx+TuygtIcsBSzlmYlH0Hl91SfZZM7DUC3oiPyM5272NuNMZbg nw0dDSWiyFOHKLY9AvrpM7Zy8jrRGWpQ0g0CYBF4bMCnOE1aVCW1v7YZrUmCbNad MBfQouwwymJKo0DitpNIeu12RV7Bttbfpt0MhINJ/ZLtkHmtjmstCvQyMR1xKgqY YUsOrkUycLp5wv0jKegFIdQhjbLrFvh3q7adhJkL7DPbc63GpJVAXbOU59fyMFLT 7kFLYUsXFjMAlMhQkUA5QFb6r4ygANV5b9+c9mTrprv5HXtG8R3oGxPXpmxC32kf 0WJGes+4qnR4lZRN/57PgjnTcRzdPKb+b7pAAxazep20CK5+xW2sUwwXLxYEPdJ7 CGUhzEsthNbnv5mN4DHGy465Ui/5y8+RCn/QUgj5XjfIliabWPqs2TtgWDim5uT1 EaJiqJP8iBVbnNEo8AlF0ONeXUqFSuSza4GC2KCch0DL6aufCQR46aUiEkI9yYv6 nziSc4Yjtuah9Z1xDkfK2lfhUdMAm+LtPLl4hxUFOMdjBXIwLmGAMB9Tifkyn7e8 KiJH4ZeLFfjBoZyLC1Kh4U/+zqHlAwUssZ4YHzhyZDa7+9gioCKBklJRuH3lFGwm OCHzc8aJEu8= =4LO8 -----END PGP SIGNATURE----- --=-=-=-- From unknown Sat Aug 16 00:30:35 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 26 Nov 2020 12:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator