From unknown Fri Jun 13 10:55:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49619] [PATCH 1/2] Add pirate-get Resent-From: phodina Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 18 Jul 2021 11:37:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 49619 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49619@debbugs.gnu.org X-Debbugs-Original-To: "guix-patches@gnu.org" Reply-To: phodina Received: via spool by submit@debbugs.gnu.org id=B.162660817130594 (code B ref -1); Sun, 18 Jul 2021 11:37:01 +0000 Received: (at submit) by debbugs.gnu.org; 18 Jul 2021 11:36:11 +0000 Received: from localhost ([127.0.0.1]:55287 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m555e-0007xO-Td for submit@debbugs.gnu.org; Sun, 18 Jul 2021 07:36:11 -0400 Received: from lists.gnu.org ([209.51.188.17]:53640) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m555d-0007xH-Hg for submit@debbugs.gnu.org; Sun, 18 Jul 2021 07:36:10 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:36000) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m555d-00037g-2y for guix-patches@gnu.org; Sun, 18 Jul 2021 07:36:09 -0400 Received: from mail-40133.protonmail.ch ([185.70.40.133]:50159) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m555a-0004DW-Ej for guix-patches@gnu.org; Sun, 18 Jul 2021 07:36:08 -0400 Date: Sun, 18 Jul 2021 11:36:02 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1626608163; bh=8IHyJWE/Rh8JSSiynDY1eg6gPtXOpFYZvVS6l2Hb7qY=; h=Date:To:From:Reply-To:Subject:From; b=AytM6VqGoeO2aClUt+3D8sI3G9Ps37ZlGX6WprD+JR3noxDMnzIRhoVkohIJvXAP3 VgoK5UEjTU/eXbYlge8gOvSrSOmytuvohEOKwtpZDjVgHKbTy3+CoE4Yn1DxoozOef BPs7n75tbAvbaMKCBO1qWyPOBi5Z3/mIIVnTceS0= From: phodina Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch Received-SPF: pass client-ip=185.70.40.133; envelope-from=phodina@protonmail.com; helo=mail-40133.protonmail.ch 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, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -0.0 (/) 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 (--) Add pkg veryprettytable as a dependency for pkg pirate-get --- diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d8c3fbec07..40b93c4b30 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1754,6 +1754,30 @@ helpers.") (properties `((python2-variant . ,(delay python2-humanfriendly)))) (license license:expat))) +(define-public python-veryprettytable + (package + (name "python-veryprettytable") + (version "0.8.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "veryprettytable" version)) + (sha256 + (base32 + "1k1rifz8x6qcicmx2is9vgxcj0qb2f5pvzrp7zhmvbmci3yack3f")))) + (build-system python-build-system) + (propagated-inputs + `(("python-colorama" ,python-colorama) + ("python-termcolor" ,python-termcolor))) + (home-page + "https://github.com/smeggingsmegger/VeryPrettyTable") + (synopsis + "A visually appealing ASCII table output format") + (description + "A simple Python library for easily displaying tabular data in a vis= ually +appealing ASCII table format") + (license license:bsd3))) + (define-public python2-humanfriendly (let ((base (package-with-python2 (strip-python2-variant python-humanfriendly)))) -- 2.31.1 From unknown Fri Jun 13 10:55:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49619] [PATCH 1/2] Add pirate-get Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 21 Jul 2021 02:54:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49619 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: phodina Cc: 49619@debbugs.gnu.org, control@debbugs.gnu.org Received: via spool by 49619-submit@debbugs.gnu.org id=B49619.162683602619255 (code B ref 49619); Wed, 21 Jul 2021 02:54:01 +0000 Received: (at 49619) by debbugs.gnu.org; 21 Jul 2021 02:53:46 +0000 Received: from localhost ([127.0.0.1]:35864 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m62Mj-00050T-NZ for submit@debbugs.gnu.org; Tue, 20 Jul 2021 22:53:46 -0400 Received: from out0.migadu.com ([94.23.1.103]:33887) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m62Mg-00050E-Eg; Tue, 20 Jul 2021 22:53:43 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mgsn.dev; s=key1; t=1626836020; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=P6p1rMNlUc3Bpbdbr2Hp+cJdLEMYUyKiYB1flDMDsQ0=; b=d835on4oexQqeUkYnXmVy3D9tGq4VjF+uMA2aEBFmO3EblG1upjtwQZIbYqFytyY4cW+5q pkB+he4Tuixx/oFRPgw25uDh5scaDAdmmDThbvxS5ZXWD6L9oGXR5nezUk6bd8ZeLddkqT vKtb+ttnZ2M4dV6A7T6oBVVj0CU+O7s= From: Sarah Morgensen References: Date: Tue, 20 Jul 2021 19:53:37 -0700 In-Reply-To: (phodina@protonmail.com's message of "Sun, 18 Jul 2021 11:36:02 +0000") Message-ID: <86bl6wtm1a.fsf@mgsn.dev> MIME-Version: 1.0 Content-Type: text/plain X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev X-Spam-Score: -0.7 (/) 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 (-) merge 49619 49620 thanks Hello, Thanks for the patch. Please note that when submitting patchsets, only the first patch should be sent to guix-patches@gnu.org; the rest should be sent to the generated bug number, in this case 49619@debbugs.gnu.org, in reply to the first email. You can find information about contributing at: https://guix.gnu.org/manual/en/html_node/Submitting-Patches.html I also have a few suggestions so your patch can be accepted. phodina writes: > Add pkg veryprettytable as a dependency for pkg pirate-get > > --- Commit messages should follow the ChangeLog format; see the commit history for examples. For example, this commit message would look like: --8<---------------cut here---------------start------------->8--- gnu: Add python-veryprettytable. * gnu/packages/python-xyz.scm (python-veryprettytable): New variable. --8<---------------cut here---------------end--------------->8--- > diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm > index d8c3fbec07..40b93c4b30 100644 > --- a/gnu/packages/python-xyz.scm > +++ b/gnu/packages/python-xyz.scm > @@ -1754,6 +1754,30 @@ helpers.") > (properties `((python2-variant . ,(delay python2-humanfriendly)))) > (license license:expat))) > > +(define-public python-veryprettytable > + (package > + (name "python-veryprettytable") > + (version "0.8.1") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "veryprettytable" version)) > + (sha256 > + (base32 > + "1k1rifz8x6qcicmx2is9vgxcj0qb2f5pvzrp7zhmvbmci3yack3f")))) > + (build-system python-build-system) > + (propagated-inputs > + `(("python-colorama" ,python-colorama) > + ("python-termcolor" ,python-termcolor))) > + (home-page > + "https://github.com/smeggingsmegger/VeryPrettyTable") > + (synopsis > + "A visually appealing ASCII table output format") Avoid starting synopses and descriptions with articles. "Visually appealing..." would be fine. > + (description > + "A simple Python library for easily displaying tabular data in a visually > +appealing ASCII table format") Descriptions typically start: "VeryPrettyTable is a simple..." The description for pirate-get should probably start "Pirate-get is a..." or "@code{pirate-get} is a..." > + (license license:bsd3))) This should be license:bsd-3. > + > (define-public python2-humanfriendly > (let ((base (package-with-python2 > (strip-python2-variant python-humanfriendly)))) > -- > 2.31.1 You should also add your copyright at the top of the file, below all the others. Please use `--reroll-count=` when generating revised patchsets and `--to=49169@debbugs.gnu.org --in-reply-to=` when sending. -- Sarah From unknown Fri Jun 13 10:55:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49619] [PATCH 1/2] Add pirate-get Resent-From: phodina Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 22 Jul 2021 12:18:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49619 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49619@debbugs.gnu.org Cc: control@debbugs.gnu.org, Sarah Morgensen Reply-To: phodina Received: via spool by 49619-submit@debbugs.gnu.org id=B49619.16269562793002 (code B ref 49619); Thu, 22 Jul 2021 12:18:01 +0000 Received: (at 49619) by debbugs.gnu.org; 22 Jul 2021 12:17:59 +0000 Received: from localhost ([127.0.0.1]:39558 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6XeI-0000mL-SN for submit@debbugs.gnu.org; Thu, 22 Jul 2021 08:17:59 -0400 Received: from mail-40133.protonmail.ch ([185.70.40.133]:35680) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6XeE-0000m1-4q; Thu, 22 Jul 2021 08:17:57 -0400 Date: Thu, 22 Jul 2021 12:17:46 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1626956267; bh=hP2XguM9yjpDj92+fLR0cZgfnupnVfMB/tTwzDvXnAg=; h=Date:To:From:Cc:Reply-To:Subject:In-Reply-To:References:From; b=YUWOB8RbmaE8wpyywi8tFmclby59jYkz6nyunI+uokD9NohAwyokv82tNXXBANSZl jA9fUYsNmxzI8XEwdCXtSWjg0T7WPozTxw0JCSrAJ9D6XaazcA4bI+1xkW03C8t+iA biZejQUDB3Mlyiq07qO71GWn7YsQsIQH1GgeETWU= From: phodina Message-ID: <8k-2wKQa0LpuopuIhb_90q6sfNtDiGhbFkLzul2M96i5hYKCwOLP-lC9QHmUeTn4dSl7Rx60bUu_RTIxXDnq0XpKV0gZrJq6BtzeHtsRv1k=@protonmail.com> In-Reply-To: <86bl6wtm1a.fsf@mgsn.dev> References: <86bl6wtm1a.fsf@mgsn.dev> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: -0.0 (/) 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 (-) Thanks again Sarah for the suggestions. --- In-Reply-To: References: From: Petr Hodina Date: Sun, 18 Jul 2021 12:59:49 +0200 Subject: [PATCH v2 1/2] gnu: Add python-very-pretty-table To: 49619@debbugs.gnu.org diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d8c3fbec07..020ba78401 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -105,6 +105,7 @@ ;;; Copyright =C2=A9 2021 Danial Behzadi ;;; Copyright =C2=A9 2021 Maxime Devos ;;; Copyright =C2=A9 2021 Hugo Lecomte +;;; Copyright =C2=A9 2021 Petr Hodina ;;; ;;; This file is part of GNU Guix. ;;; @@ -1754,6 +1755,30 @@ helpers.") (properties `((python2-variant . ,(delay python2-humanfriendly)))) (license license:expat))) +(define-public python-veryprettytable + (package + (name "python-veryprettytable") + (version "0.8.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "veryprettytable" version)) + (sha256 + (base32 + "1k1rifz8x6qcicmx2is9vgxcj0qb2f5pvzrp7zhmvbmci3yack3f")))) + (build-system python-build-system) + (propagated-inputs + `(("python-colorama" ,python-colorama) + ("python-termcolor" ,python-termcolor))) + (home-page + "https://github.com/smeggingsmegger/VeryPrettyTable") + (synopsis + "Visually appealing ASCII table output format") + (description + "The functions and classes in @code{veryprettytable} allow for easil= y + displaying tabular data in a visually appealing ASCII table format."= ) + (license license:bsd-3))) + (define-public python2-humanfriendly (let ((base (package-with-python2 (strip-python2-variant python-humanfriendly)))) -- 2.31.1 From unknown Fri Jun 13 10:55:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49619] [PATCH 2/2] Add pirate-get Resent-From: phodina Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 22 Jul 2021 12:23:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49619 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49619@debbugs.gnu.org Cc: Sarah Morgensen Reply-To: phodina Received: via spool by 49619-submit@debbugs.gnu.org id=B49619.16269565753521 (code B ref 49619); Thu, 22 Jul 2021 12:23:02 +0000 Received: (at 49619) by debbugs.gnu.org; 22 Jul 2021 12:22:55 +0000 Received: from localhost ([127.0.0.1]:39579 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6Xj4-0000uh-J6 for submit@debbugs.gnu.org; Thu, 22 Jul 2021 08:22:54 -0400 Received: from mail-4316.protonmail.ch ([185.70.43.16]:54989) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6Xj0-0000u7-1o for 49619@debbugs.gnu.org; Thu, 22 Jul 2021 08:22:51 -0400 Date: Thu, 22 Jul 2021 12:22:42 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1626956563; bh=Vi2/TuWPdyA5bAhxRsa51xi1sNMn64R859yG+JkIhn4=; h=Date:To:From:Cc:Reply-To:Subject:In-Reply-To:References:From; b=klsdSCSB6AMyLN7fTLORyf6IGMKT5z2J9uMkt6sC6QYEptGnuAgIzKhg1DuusJYk4 c7qYHCkPRzNm04cSoibdFguw1kGEaiq272jV6ua2CR70026058u81Fu/cq9Y+wBjlZ R5Cf/ahD55Fd70BUpKGUbAABBQRu7djqBUAMLRuo= From: phodina Message-ID: In-Reply-To: <8k-2wKQa0LpuopuIhb_90q6sfNtDiGhbFkLzul2M96i5hYKCwOLP-lC9QHmUeTn4dSl7Rx60bUu_RTIxXDnq0XpKV0gZrJq6BtzeHtsRv1k=@protonmail.com> References: <86bl6wtm1a.fsf@mgsn.dev> <8k-2wKQa0LpuopuIhb_90q6sfNtDiGhbFkLzul2M96i5hYKCwOLP-lC9QHmUeTn4dSl7Rx60bUu_RTIxXDnq0XpKV0gZrJq6BtzeHtsRv1k=@protonmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: -0.0 (/) 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 (-) And I guess control@debbugs.gnu.org is some kind of bot, right? Here's the second patch: --- In-Reply-To: References: From: Petr Hodina Date: Sun, 18 Jul 2021 13:02:14 +0200 Subject: [PATCH v2 2/2] gnu: Add python-pirate-get To: 49619@debbugs.gnu.org diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 020ba78401..a3b181cc30 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1779,6 +1779,33 @@ helpers.") displaying tabular data in a visually appealing ASCII table format."= ) (license license:bsd-3))) +(define-public python-pirate-get + (package + (name "python-pirate-get") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pirate-get" version)) + (sha256 + (base32 + "07s5ss9dxccx1mip7pyga1fagywkqchxmzz55ng47ac9053ffxkq")))) + (build-system python-build-system) + (propagated-inputs + `(("python-colorama" ,python-colorama) + ("python-pyperclip" ,python-pyperclip) + ("python-veryprettytable" + ,python-veryprettytable))) + (home-page + "https://github.com/vikstrous/pirate-get") + (synopsis + "Command line interface for The Pirate Bay") + (description + "@code{pirate-get} is a convenient command line tool (inspired by AP= T) +to speed up your trip to the Pirate Bay and get your completely legal +torrents more quickly.") + (license license:gpl3))) + (define-public python2-humanfriendly (let ((base (package-with-python2 (strip-python2-variant python-humanfriendly)))) -- 2.31.1 From unknown Fri Jun 13 10:55:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49619] Patch status References: In-Reply-To: Resent-From: phodina Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 18 Sep 2021 08:08:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49619 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49619@debbugs.gnu.org Cc: Sarah Morgensen Reply-To: phodina Received: via spool by 49619-submit@debbugs.gnu.org id=B49619.163195243530953 (code B ref 49619); Sat, 18 Sep 2021 08:08:02 +0000 Received: (at 49619) by debbugs.gnu.org; 18 Sep 2021 08:07:15 +0000 Received: from localhost ([127.0.0.1]:33480 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mRVNT-00083B-JG for submit@debbugs.gnu.org; Sat, 18 Sep 2021 04:07:15 -0400 Received: from mail-40134.protonmail.ch ([185.70.40.134]:26800) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mRVNR-00082o-5F for 49619@debbugs.gnu.org; Sat, 18 Sep 2021 04:07:14 -0400 Date: Sat, 18 Sep 2021 08:07:01 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1631952423; bh=7/9fX6BInOs9YR+5i/yX70PjHI2cs2lhCkqz8G7izSQ=; h=Date:To:From:Cc:Reply-To:Subject:From; b=nxrTfVDq7fvUSOgiv7N8mSeqzWR6/MGBHOvFdj4XMhtjUO/0eo+eP11PdjXwJboA8 lAM9D9wtil2a6VHPtn6b//Mt0vEpQn/g2zStPfd5joPHvTrGpxGk9a31cLy9kdSjvJ SDGDgQ2+7mkYoJ7NtffP4zugTzJmJe8jRWU1bX/o= From: phodina Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: -0.0 (/) 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 (-) Hi Sarah! Are these fixes now compliant to upstream the patch? From unknown Fri Jun 13 10:55:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49619] [PATCH v3 1/2] gnu: Add python-very-pretty-table. References: In-Reply-To: Resent-From: phodina Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 18 Sep 2021 12:45:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49619 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49619@debbugs.gnu.org Cc: Sarah Morgensen Reply-To: phodina Received: via spool by 49619-submit@debbugs.gnu.org id=B49619.1631969074614 (code B ref 49619); Sat, 18 Sep 2021 12:45:02 +0000 Received: (at 49619) by debbugs.gnu.org; 18 Sep 2021 12:44:34 +0000 Received: from localhost ([127.0.0.1]:33806 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mRZhp-00009q-Pk for submit@debbugs.gnu.org; Sat, 18 Sep 2021 08:44:33 -0400 Received: from mail2.protonmail.ch ([185.70.40.22]:64568) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mRZhl-00009a-ON for 49619@debbugs.gnu.org; Sat, 18 Sep 2021 08:44:31 -0400 Date: Sat, 18 Sep 2021 12:44:21 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1631969062; bh=Bt6oUQ6om2jG5XmhaS1IAv+8ns8ND358YKfr2eH2xq0=; h=Date:To:From:Cc:Reply-To:Subject:From; b=dW7Fa78pZWwhNJ6bxmjBVTzZQ6FQpczNZILeuXtn4WlcQPkpE17P57rQ8BFKIH2cz XryefOf1Aq892jAEMclEfb9UkZWFxpJBv2sy0sI2wPZNiOVilobZ20hmQtJSvwrDCW PXzbpHx/KJMpD19QY3vKUxOLONEaJqmPEWurQMzw= From: phodina Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: -0.0 (/) 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 (-) Hi Sarah, here are some the changes for upstreaming :-) --8<---------------cut here---------------start------------->8-- * gnu/packages/python-xyz.scm (python-very-pretty-table): New variable. diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 66857b31b0..c4fb6edd40 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1793,6 +1793,30 @@ helpers.") (properties `((python2-variant . ,(delay python2-humanfriendly)))) (license license:expat))) +(define-public python-very-pretty-table + (package + (name "python-very-pretty-table") + (version "0.8.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "veryprettytable" version)) + (sha256 + (base32 + "1k1rifz8x6qcicmx2is9vgxcj0qb2f5pvzrp7zhmvbmci3yack3f")))) + (build-system python-build-system) + (propagated-inputs + `(("python-colorama" ,python-colorama) + ("python-termcolor" ,python-termcolor))) + (home-page + "https://github.com/smeggingsmegger/VeryPrettyTable") + (synopsis + "Visually appealing ASCII table output format") + (description + "Functions and classes in @code{very-pretty-table} allow for easily + displaying tabular data in a visually appealing ASCII table format."= ) + (license license:bsd-3))) + (define-public python2-humanfriendly (let ((base (package-with-python2 (strip-python2-variant python-humanfriendly)))) -- 2.32.0 From unknown Fri Jun 13 10:55:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49619] [PATCH v3 2/2] gnu: Add python-pirate-get. References: In-Reply-To: Resent-From: phodina Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 18 Sep 2021 12:46:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49619 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49619@debbugs.gnu.org Cc: Sarah Morgensen Reply-To: phodina Received: via spool by 49619-submit@debbugs.gnu.org id=B49619.1631969120731 (code B ref 49619); Sat, 18 Sep 2021 12:46:02 +0000 Received: (at 49619) by debbugs.gnu.org; 18 Sep 2021 12:45:20 +0000 Received: from localhost ([127.0.0.1]:33810 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mRZia-0000Bj-39 for submit@debbugs.gnu.org; Sat, 18 Sep 2021 08:45:20 -0400 Received: from mail-40131.protonmail.ch ([185.70.40.131]:31335) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mRZiY-0000BT-Gz for 49619@debbugs.gnu.org; Sat, 18 Sep 2021 08:45:19 -0400 Date: Sat, 18 Sep 2021 12:45:04 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1631969108; bh=K2eCpxJUKFLRbXDL8E5EMIJ0lN0wn9IAIrnb8LTkr+c=; h=Date:To:From:Cc:Reply-To:Subject:From; b=ykaHRyOqyrPOE07VR9tCfUHB+ddxogsyQ25Gem6VLF/xBcTdFyxjE/HjkGhkwirsB AsSCBLr/FE9h9HrxAIFnz/BWl0AErrdc9h3FZA5mzgn4N76oGnHL+Wo4lanqqQyRyY 858W3x2xl7WCRvLXsMx+i3v58T0DkbzWq9VNqwgU= From: phodina Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: -0.0 (/) 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/python-xyz.scm (python-pirate-get): New variable. diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c4fb6edd40..6dcef95f1e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1817,6 +1817,33 @@ helpers.") displaying tabular data in a visually appealing ASCII table format."= ) (license license:bsd-3))) +(define-public python-pirate-get + (package + (name "python-pirate-get") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pirate-get" version)) + (sha256 + (base32 + "07s5ss9dxccx1mip7pyga1fagywkqchxmzz55ng47ac9053ffxkq")))) + (build-system python-build-system) + (propagated-inputs + `(("python-colorama" ,python-colorama) + ("python-pyperclip" ,python-pyperclip) + ("python-veryprettytable" + ,python-veryprettytable))) + (home-page + "https://github.com/vikstrous/pirate-get") + (synopsis + "Command line interface for The Pirate Bay") + (description + "@code{pirate-get} is a convenient command line tool (inspired by APT= ) +to speed up your trip to the Pirate Bay and get your completely legal +torrents more quickly.") + (license license:gpl3))) + (define-public python2-humanfriendly (let ((base (package-with-python2 (strip-python2-variant python-humanfriendly)))) -- 2.32.0 From unknown Fri Jun 13 10:55:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49619] [PATCH v3 1/2] gnu: Add python-very-pretty-table. References: In-Reply-To: Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 22 Sep 2021 03:23:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49619 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: phodina Cc: 49619@debbugs.gnu.org Received: via spool by 49619-submit@debbugs.gnu.org id=B49619.16322809236279 (code B ref 49619); Wed, 22 Sep 2021 03:23:01 +0000 Received: (at 49619) by debbugs.gnu.org; 22 Sep 2021 03:22:03 +0000 Received: from localhost ([127.0.0.1]:48440 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mSspe-0001dD-Tv for submit@debbugs.gnu.org; Tue, 21 Sep 2021 23:22:03 -0400 Received: from out2.migadu.com ([188.165.223.204]:11540) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mSspb-0001cg-L2 for 49619@debbugs.gnu.org; Tue, 21 Sep 2021 23:22:01 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mgsn.dev; s=key1; t=1632280917; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type; bh=bLzOT7kT7wLTGcKtgsWa7fxKj/ZmPig6UrM3zmbEauw=; b=Qcrxs/JEgagKWaPTRqg2dGJaRtb80nPDcqDIxhm/0l0B/+DKbwe8WernHMCHVCTupAamvy RMweykUoo6sjw2DiugyfzSRgxN1onpKqjo+JGK4XAjShq56GFkkkQNBVPOudsDuFB25v1q z38gYRS1oxbexCuyAEynFAibJpWLdOM= From: Sarah Morgensen Date: Tue, 21 Sep 2021 20:21:53 -0700 Message-ID: <8635pxxpke.fsf@mgsn.dev> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev X-Spam-Score: -0.0 (/) 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 Hi, phodina writes: > Hi Sarah! > > Are these fixes now compliant to upstream the patch? It's pretty good. I went ahead and made a few changes (attached below): I tweaked the descriptions, I changed very-pretty-table to veryprettytable so the python importer can find it in the future, I changed pirate-get's propagated-inputs to inputs since it's an end-user package, and I changed the license of pirate-get to AGPL-3. * Package review checklist (WIP) Lack of a check is not proof of noncompliance. 1. [X] Package builds (guix build package) [X] x86_64 [ ] aarch64 [ ] armhf [ ] powerpc64le [ ] i686 [ ] i586 [ ] mips64le 2. [X] Build is reproducible (guix build --rounds=n package) 3. [X] Tests enabled (if available) or disabled with in-source comment 4. [X] No extraneous dependencies (guix size package) 5. [X] No unnecessary pre-built binaries/blobs 6. [X] Dependencies unvendored when available in Guix 7. [X] Cross-compile friendly (cc-for-target, patches with inputs) 8. [X] License matches source 9. [X] No problematic lints (guix lint package) 10. [X] Formatting follows guidelines - [X] Lines wrap at 80 characters - [X] Indentation passes etc/indent-code.el - [X] Two spaces used between sentences For new packages: 1. [X] Source url is robust * mirror:// used with url-fetch when possible * No auto-generated archives from source repo (prefer cloning) 2. [X] Synopsis is short, descriptive, and meaningful to a wide audience 3. [X] Description is objective, takes 5-10 lines, uses full sentences, and provides the information users need to decide whether the software fits their needs. I also gave it a spin, and it works fine as long as the SSL_CERT_DIR environment variable is defined (I think that's beyond the scope of this package). LGTM. Thanks for your work! -- Sarah --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=v4-0001-gnu-Add-python-veryprettytable.patch Content-Description: gnu: Add python-veryprettytable. >From e468a5f5722a31ce9999ddba43a8de120521a938 Mon Sep 17 00:00:00 2001 Message-Id: From: phodina Date: Sat, 18 Sep 2021 12:44:21 +0000 Subject: [PATCH v4 1/2] gnu: Add python-veryprettytable. * gnu/packages/python-xyz.scm (python-veryprettytable): New variable. --- gnu/packages/python-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4e2e719afc..b1f162d079 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1793,6 +1793,33 @@ helpers.") (properties `((python2-variant . ,(delay python2-humanfriendly)))) (license license:expat))) +(define-public python-veryprettytable + (package + (name "python-veryprettytable") + (version "0.8.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "veryprettytable" version)) + (sha256 + (base32 + "1k1rifz8x6qcicmx2is9vgxcj0qb2f5pvzrp7zhmvbmci3yack3f")))) + (build-system python-build-system) + (propagated-inputs + `(("python-colorama" ,python-colorama) + ("python-termcolor" ,python-termcolor))) + (home-page + "https://github.com/smeggingsmegger/VeryPrettyTable") + (synopsis + "Visually appealing ASCII table output format for Python") + (description + "VeryPrettyTable is a Python library for displaying tabular data in a +visually appealing ASCII or HTML table. Output is highly configurable, +including text alignment, padding, borders, sort order, and more. Data can be +inserted directly, read from a CSV file, or imported using a Python DB-API +database cursor such as @code{sqlite3}.") + (license license:bsd-3))) + (define-public python2-humanfriendly (let ((base (package-with-python2 (strip-python2-variant python-humanfriendly)))) base-commit: a916d50566e77ae730e34f1753ceb78cc6bf0a5a -- 2.33.0 --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=v4-0002-gnu-Add-python-pirate-get.patch Content-Description: gnu: Add python-pirate-get. >From 5e99c1f791c990dd76cd63a9ab2a5196656c5c6f Mon Sep 17 00:00:00 2001 Message-Id: <5e99c1f791c990dd76cd63a9ab2a5196656c5c6f.1632277047.git.iskarian@mgsn.dev> In-Reply-To: References: From: phodina Date: Sat, 18 Sep 2021 12:45:04 +0000 Subject: [PATCH v4 2/2] gnu: Add python-pirate-get. * gnu/packages/python-xyz.scm (python-pirate-get): New variable. --- gnu/packages/python-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b1f162d079..86962e35b8 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1820,6 +1820,34 @@ inserted directly, read from a CSV file, or imported using a Python DB-API database cursor such as @code{sqlite3}.") (license license:bsd-3))) +(define-public python-pirate-get + (package + (name "python-pirate-get") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pirate-get" version)) + (sha256 + (base32 + "07s5ss9dxccx1mip7pyga1fagywkqchxmzz55ng47ac9053ffxkq")))) + (build-system python-build-system) + (inputs + `(("python-colorama" ,python-colorama) + ("python-pyperclip" ,python-pyperclip) + ("python-veryprettytable" ,python-veryprettytable))) + (home-page + "https://github.com/vikstrous/pirate-get") + (synopsis + "Command line interface for The Pirate Bay") + (description + "@code{pirate-get} is an unofficial command line interface for searching +The Pirate Bay, inspired by @command{apt}. Results can be saved as JSON, +@code{.torrent} files, or magnet links, or they can be opened directly in +@command{transmission-remote}. @code{pirate-get} also supports searching +mirrors or a local copy of The Pirate Bay's database.") + (license license:agpl3))) + (define-public python2-humanfriendly (let ((base (package-with-python2 (strip-python2-variant python-humanfriendly)))) -- 2.33.0 --=-=-=-- From unknown Fri Jun 13 10:55:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49619] [PATCH v3 1/2] gnu: Add python-very-pretty-table. Resent-From: phodina Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 27 Sep 2021 22:43:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49619 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Sarah Morgensen Cc: 49619@debbugs.gnu.org Reply-To: phodina Received: via spool by 49619-submit@debbugs.gnu.org id=B49619.16327825312721 (code B ref 49619); Mon, 27 Sep 2021 22:43:01 +0000 Received: (at 49619) by debbugs.gnu.org; 27 Sep 2021 22:42:11 +0000 Received: from localhost ([127.0.0.1]:43081 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mUzK6-0000ho-Of for submit@debbugs.gnu.org; Mon, 27 Sep 2021 18:42:11 -0400 Received: from mail-40133.protonmail.ch ([185.70.40.133]:10560) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mUzK4-0000hW-Fd for 49619@debbugs.gnu.org; Mon, 27 Sep 2021 18:42:09 -0400 Date: Mon, 27 Sep 2021 22:41:55 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1632782518; bh=bFc+6zAK7ims/O0lXkwTa6yiZFZCPvSWKLPJh0oujnY=; h=Date:To:From:Cc:Reply-To:Subject:In-Reply-To:References:From; b=lxIP3i+CGS84venOlJJzSuZRCLmBKwx4KLJqVbHhfJSNzWniwDHKKzXnd9IVBHcmT xvUzNcKE8pqHW5G3RclaroAhylNDi704sj4b3DXW+pHluCeTC7GEi6srXRL+h0NkXK 9Jw9n3i6AOfrfxA3dfacGEVqlwIEfkGoyAH/TXvM= From: phodina Message-ID: In-Reply-To: <8635pxxpke.fsf@mgsn.dev> References: <8635pxxpke.fsf@mgsn.dev> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: -0.0 (/) 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 (-) On Wednesday, September 22nd, 2021 at 5:21 AM, Sarah Morgensen wrote: > Hi, > > phodina phodina@protonmail.com writes: > > > Hi Sarah! > > > > Are these fixes now compliant to upstream the patch? > > It's pretty good. I went ahead and made a few changes (attached below): > > I tweaked the descriptions, I changed very-pretty-table to > > veryprettytable so the python importer can find it in the future, I > > changed pirate-get's propagated-inputs to inputs since it's an end-user > > package, and I changed the license of pirate-get to AGPL-3. > > - Package review checklist (WIP) > > Lack of a check is not proof of noncompliance. > > 1. [X] Package builds (guix build package) > > [X] x86_64 [ ] aarch64 [ ] armhf [ ] powerpc64le > > [ ] i686 [ ] i586 [ ] mips64le > 2. [X] Build is reproducible (guix build --rounds=3Dn package) > 3. [X] Tests enabled (if available) or disabled with in-source comment > 4. [X] No extraneous dependencies (guix size package) > 5. [X] No unnecessary pre-built binaries/blobs > 6. [X] Dependencies unvendored when available in Guix > 7. [X] Cross-compile friendly (cc-for-target, patches with inputs) > 8. [X] License matches source > 9. [X] No problematic lints (guix lint package) > 10. [X] Formatting follows guidelines > - [X] Lines wrap at 80 characters > - [X] Indentation passes etc/indent-code.el > - [X] Two spaces used between sentences > > For new packages: > 11. [X] Source url is robust > - mirror:// used with url-fetch when possible > - No auto-generated archives from source repo (prefer cloning) > 12. [X] Synopsis is short, descriptive, and meaningful to a wide audienc= e > 13. [X] Description is objective, takes 5-10 lines, uses full sentences, > Thanks for the list! I'll follow it next time I'll submit a package or prop= ose a change :-) > and provides the information users need to decide whether the > > software fits their needs. > > I also gave it a spin, and it works fine as long as the SSL_CERT_DIR > > environment variable is defined (I think that's beyond the scope of t= his > Well I also thought about the certificates but as you mentioned that's prob= ably out of scope and it would be good to handle it by default in the build= script so that we don't have to do it for the packages requiring network c= onnectivity. > package). LGTM. > > Thanks for your work! You're welcome. Guix is the exact distribution I've been looking for and po= rting tools I use is a nice way to get familiar with the Guile programming = language and the ideas behind Guix (and Nix :) > > -- > > Sarah From unknown Fri Jun 13 10:55:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49619] [PATCH v3 2/2] gnu: Add python-pirate-get. Resent-From: phodina Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 08 Nov 2021 16:54:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49619 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49619@debbugs.gnu.org Cc: Sarah Morgensen Reply-To: phodina Received: via spool by 49619-submit@debbugs.gnu.org id=B49619.163639038312944 (code B ref 49619); Mon, 08 Nov 2021 16:54:02 +0000 Received: (at 49619) by debbugs.gnu.org; 8 Nov 2021 16:53:03 +0000 Received: from localhost ([127.0.0.1]:59286 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mk7tH-0003Mi-6m for submit@debbugs.gnu.org; Mon, 08 Nov 2021 11:53:03 -0500 Received: from mail-4322.protonmail.ch ([185.70.43.22]:12503) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mk7tE-0003M9-Kk for 49619@debbugs.gnu.org; Mon, 08 Nov 2021 11:53:01 -0500 Date: Mon, 08 Nov 2021 16:52:51 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1636390374; bh=g+s/NsGrSGJpytHqM8fLcssDznMiH/mFvKDi8d3iJBE=; h=Date:To:From:Cc:Reply-To:Subject:In-Reply-To:References:From; b=SGXmh4hq7q51UXBFGe+VVYoEUKmuzQGZOhGDNDg23Y2IR4Bkv/1oxkD2tgcpLgF6n Eh9mhHDIpqFnY2s/tE4H9nMrmlu55KLrY1hKxnNaPBVFJ5B9fSPdw+QKTuviNcfQ/q M2H02OK7yo6fLpryJtUngMzR4ha3bIsWjCNsNinE= From: phodina Message-ID: In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: -0.0 (/) 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 (-) Hi Sarah, is there still something missing for upstreaming? -- Kind Regards Petr From unknown Fri Jun 13 10:55:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49619] Upstream or close the ticket References: In-Reply-To: Resent-From: phodina Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 30 Oct 2022 20:23:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49619 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: "49619@debbugs.gnu.org" <49619@debbugs.gnu.org>, Sarah Morgensen Cc: "jgart@dismail.de" , Lars-Dominik Braun Received: via spool by 49619-submit@debbugs.gnu.org id=B49619.166716136827252 (code B ref 49619); Sun, 30 Oct 2022 20:23:01 +0000 Received: (at 49619) by debbugs.gnu.org; 30 Oct 2022 20:22:48 +0000 Received: from localhost ([127.0.0.1]:39070 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1opEpU-00075T-5r for submit@debbugs.gnu.org; Sun, 30 Oct 2022 16:22:48 -0400 Received: from mail-4322.protonmail.ch ([185.70.43.22]:14635) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1opEpS-00075F-5s for 49619@debbugs.gnu.org; Sun, 30 Oct 2022 16:22:47 -0400 Date: Sun, 30 Oct 2022 20:22:35 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1667161359; x=1667420559; bh=qyRyV8ETWBeTql0M87fLzgai1rMhuegqWdx2yWD+0I4=; h=Date:To:From:Cc:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=EroqV52zIqyd6G062F9U8pAbU1hRVVTr5k98fFRUpMlDc4JmIRTIA2WZIwfFVEzD8 WsJVK1vgcSojlV6wf6ETelRV9lfvoBrz7peqivzub+e7JjgDZdaBFfATKeYdRPCM9a 5QPoYZoD9VmZ7ToH+rl3mTyuGws+IcZ8ELkfIyy10qZiZGPWWPYPp+Nvw9xZaMsxjh BjMnhKUdsOBz1K/s8srIBlZvdrV42O8ooUb1ShpHHciNGzPtYmwYhAzCx6oio4fYas uJpROy7n8UfWs7HOQZHooWwlqCZJ7+qpEWzvM1urAUPDlKfHWBil5sZW88tZKGqF0z Bnu6XGm8A6Kxg== From: phodina Message-ID: Feedback-ID: 14143818:user:proton MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="b1_fEzRWU19iBKyJEk3AJbNq7gUdFNpiLSUFmkrbHOOIA" X-Spam-Score: -0.0 (/) 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 (-) This is a multi-part message in MIME format. --b1_fEzRWU19iBKyJEk3AJbNq7gUdFNpiLSUFmkrbHOOIA Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: base64 SGksCgp0aGlzIHRpY2tldCBoYXMgYmVlbiBkb3JtYW50IGZvciBzb21lIHRpbWUuCgpJcyBpdCB0 ZWNobmljYWxseSBhbGwgcmlnaHQgYW5kIGNhbiBpdCBiZSB1cHN0cmVhbWVkIG9yIHNob3VsZCBp dCBiZSBjbG9zZWQgZHVlIHRvIGJlaW5nIHRpZWQgdG8gIm5vbi1saWJyZSIgc2VydmljZT8KCi0t LS0KUGV0cg== --b1_fEzRWU19iBKyJEk3AJbNq7gUdFNpiLSUFmkrbHOOIA Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: base64 PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsOyBmb250LXNpemU6IDE0cHg7IGNvbG9yOiBy Z2IoMCwgMCwgMCk7Ij5IaSw8YnI+PGJyPnRoaXMgdGlja2V0IGhhcyBiZWVuIGRvcm1hbnQgZm9y IHNvbWUgdGltZS48YnI+PGJyPklzIGl0IHRlY2huaWNhbGx5IGFsbCByaWdodCBhbmQgY2FuIGl0 IGJlIHVwc3RyZWFtZWQgb3Igc2hvdWxkIGl0IGJlIGNsb3NlZCBkdWUgdG8gYmVpbmcgdGllZCB0 byAibm9uLWxpYnJlIiBzZXJ2aWNlPzxicj48YnI+LS0tLTxicj5QZXRyPGJyPjwvZGl2Pg== --b1_fEzRWU19iBKyJEk3AJbNq7gUdFNpiLSUFmkrbHOOIA-- From unknown Fri Jun 13 10:55:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49619] Upstream or close the ticket Resent-From: jgart Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 30 Oct 2022 22:24:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49619 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: phodina Cc: "49619@debbugs.gnu.org" <49619@debbugs.gnu.org>, Sarah Morgensen , Lars-Dominik Braun Received: via spool by 49619-submit@debbugs.gnu.org id=B49619.16671686016499 (code B ref 49619); Sun, 30 Oct 2022 22:24:02 +0000 Received: (at 49619) by debbugs.gnu.org; 30 Oct 2022 22:23:21 +0000 Received: from localhost ([127.0.0.1]:39157 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1opGi9-0001gk-6L for submit@debbugs.gnu.org; Sun, 30 Oct 2022 18:23:21 -0400 Received: from mx1.dismail.de ([78.46.223.134]:2472) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1opGi6-0001gW-53 for 49619@debbugs.gnu.org; Sun, 30 Oct 2022 18:23:19 -0400 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 66e3cd17; Sun, 30 Oct 2022 23:23:11 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h=date :message-id:from:to:cc:subject:in-reply-to:references :mime-version:content-type:content-transfer-encoding; s= 20190914; bh=hJ2P2a0UNnCX+nIMWwJczpn6ORRByxD7odB3M4lvqfU=; b=KbY PsCKS4DdExh7CrSu9PjuMq1E4zxNUwIgIfkOoAwVAyXpWEcPA17BK2eSedX+btTA c3RXpwOoqD6TqXABzN4c1AszcfLWDJFxiB9ap4x4g2659uq3Bfa0GRrBVrswzweL o4WsfP96eKJJQXOlWYWT/lIXgsEo82Wx1SErWgzoVTFQAq6ZdWxGlwgj4sBiZfTs VcR9PevY3oZ090aXav1hz0OnYHmIUiKKcI5QUsXDs7qiNnNmqkt9UcH/XuDscJDd ynUMNIS4PYYK8BbKbAgyf1U13gefBV61LXsFg0PDQVeqofw7ULLRwb8AkHR/Q62K O8SDmbYDizEJjl22juA== Received: from smtp2.dismail.de ( [10.240.26.12]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 2b82e3d4; Sun, 30 Oct 2022 23:23:10 +0100 (CET) Received: from smtp2.dismail.de (localhost [127.0.0.1]) by smtp2.dismail.de (OpenSMTPD) with ESMTP id 0b80262d; Sun, 30 Oct 2022 23:23:10 +0100 (CET) Received: by dismail.de (OpenSMTPD) with ESMTPSA id 9d110119 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Sun, 30 Oct 2022 23:23:09 +0100 (CET) Date: Sun, 30 Oct 2022 17:23:03 -0500 Message-ID: <20221030172303.GB15447@dismail.de> From: jgart In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) 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 Sun, 30 Oct 2022 20:22:35 +0000 phodina wrote: > Is it technically all right and can it be upstreamed or should it be closed due to being tied to "non-libre" service? > The fact that this software interacts with a "non-libre" service/backend should not be a blocker for Guix. all best, jgart From unknown Fri Jun 13 10:55:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49619] Upstream or close the ticket Resent-From: phodina Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 25 Dec 2022 18:02:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49619 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: jgart Cc: "49619@debbugs.gnu.org" <49619@debbugs.gnu.org>, Ludovic =?UTF-8?Q?Court=C3=A8s?= , Sarah Morgensen , Lars-Dominik Braun Received: via spool by 49619-submit@debbugs.gnu.org id=B49619.167199127832584 (code B ref 49619); Sun, 25 Dec 2022 18:02:01 +0000 Received: (at 49619) by debbugs.gnu.org; 25 Dec 2022 18:01:18 +0000 Received: from localhost ([127.0.0.1]:50132 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p9VJG-0008TT-30 for submit@debbugs.gnu.org; Sun, 25 Dec 2022 13:01:18 -0500 Received: from mail-40131.protonmail.ch ([185.70.40.131]:62135) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p9VJD-0008TD-PL for 49619@debbugs.gnu.org; Sun, 25 Dec 2022 13:01:16 -0500 Date: Sun, 25 Dec 2022 18:01:03 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1671991269; x=1672250469; bh=k8hYjxe/OUuJZMUdYMTH9g53EdkWmYFteXatmTTsAc0=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=FWyhkup1s/lTZhxRX7tR9JlQurCNKuPWvCqK4G58DHiof0IYGoOzmMAi9Xx8y32bQ oINMX5n8+5fttxg+9ilSuZSQjMEHOWlFbdMR6hrlbbUjhe8Vn0oTdZGyhWwYA3snFS J0P7nNDJ7zSsO0ksZKvHPtV4e4UxnzIPyiujBDLzIp/3dhoG0dv6H3g8axS26pvGFv zX/dFQ7lYBNwQS+7tCNBkhQ/dD6OxZpf7vILLO06pA/suGJWcPo2rp2v2++gIIRByV x8GndPBFMrnkcCL2XWW2VfYQzm/8lioxb3SQ42+62J1o0ilomPpADZoCZS//DTZSRf yXTFhJ8lN4VIg== From: phodina Message-ID: In-Reply-To: <20221030172303.GB15447@dismail.de> References: <20221030172303.GB15447@dismail.de> Feedback-ID: 14143818:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.0 (/) 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 (-) Hi Ludo=E2=80=99, another ancient package that fell through :-) ---- Petr