From unknown Sat Sep 06 14:23:40 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54334] [PATCH] gnu: python-gitlab: update to 3.2.0 Resent-From: Denis 'GNUtoo' Carikli Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 11 Mar 2022 00:22:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 54334 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54334@debbugs.gnu.org Cc: Denis 'GNUtoo' Carikli X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.164695808717017 (code B ref -1); Fri, 11 Mar 2022 00:22:02 +0000 Received: (at submit) by debbugs.gnu.org; 11 Mar 2022 00:21:27 +0000 Received: from localhost ([127.0.0.1]:35928 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nST27-0004QP-0d for submit@debbugs.gnu.org; Thu, 10 Mar 2022 19:21:27 -0500 Received: from lists.gnu.org ([209.51.188.17]:56700) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nST24-0004QH-K2 for submit@debbugs.gnu.org; Thu, 10 Mar 2022 19:21:25 -0500 Received: from eggs.gnu.org ([209.51.188.92]:50286) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nST24-0001tN-Dp for guix-patches@gnu.org; Thu, 10 Mar 2022 19:21:24 -0500 Received: from [2001:910:1314:ffff::1] (port=39966 helo=gnutoo.cyberdimension.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1nST22-0006TE-A4 for guix-patches@gnu.org; Thu, 10 Mar 2022 19:21:24 -0500 Received: from gnutoo.cyberdimension.org (localhost [127.0.0.1]) by cyberdimension.org (OpenSMTPD) with ESMTP id a18f8ce1; Fri, 11 Mar 2022 00:14:34 +0000 (UTC) Received: from primarylaptop.localdomain (localhost [::1]) by gnutoo.cyberdimension.org (OpenSMTPD) with ESMTP id ebecfb5d; Fri, 11 Mar 2022 00:14:34 +0000 (UTC) From: Denis 'GNUtoo' Carikli Date: Fri, 11 Mar 2022 01:15:16 +0100 Message-Id: <20220311001516.7959-1-GNUtoo@cyberdimension.org> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Host-Lookup-Failed: Reverse DNS lookup failed for 2001:910:1314:ffff::1 (failed) Received-SPF: pass client-ip=2001:910:1314:ffff::1; envelope-from=GNUtoo@cyberdimension.org; helo=gnutoo.cyberdimension.org X-Spam_score_int: -10 X-Spam_score: -1.1 X-Spam_bar: - X-Spam_report: (-1.1 / 5.0 requ) BAYES_00=-1.9, RDNS_NONE=0.793, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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.4 (--) * gnu/packages/python-web.scm (python-gitlab): Update to 3.2.0 Signed-off-by: Denis 'GNUtoo' Carikli --- gnu/packages/python-web.scm | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 240c58b665..69dbd87acd 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -48,6 +48,7 @@ ;;; Copyright © 2021 jgart ;;; Copyright © 2021 Alice Brenon ;;; Copyright © 2022 John Kehayias +;;; Copyright © 2022 Denis 'GNUtoo' Carikli ;;; ;;; This file is part of GNU Guix. ;;; @@ -4910,21 +4911,19 @@ (define-public python-translation-finder (define-public python-gitlab (package (name "python-gitlab") - (version "1.15.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "python-gitlab" version)) - (sha256 - (base32 - "0zl6kz8v8cg1bcy2r78b2snb0lpw0b573gdx2x1ps0nhsh75l4j5")))) + (version "3.2.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "python-gitlab" version)) + (sha256 + (base32 + "1gi4lp2g4k99zqcx2bgqx940bpmpbc1w9qkl5gy33hpy148yhvlg")))) (build-system python-build-system) - (propagated-inputs - (list python-requests python-six)) - (native-inputs - (list python-httmock python-mock)) - (home-page - "https://github.com/python-gitlab/python-gitlab") + (arguments + `( ;Tests require network access + #:tests? #f)) + (propagated-inputs (list python-requests python-requests-toolbelt)) + (home-page "https://github.com/python-gitlab/python-gitlab") (synopsis "Interact with GitLab API") (description "This package provides an extended library for interacting with GitLab instances through their API.") base-commit: 5397c18157f12e9127b5a9a59b0aa5a4eb058839 -- 2.35.1 From unknown Sat Sep 06 14:23:40 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Denis 'GNUtoo' Carikli Subject: bug#54334: closed (Re: bug#54334: [PATCH] gnu: python-gitlab: update to 3.2.0) Message-ID: References: <87r172dm2l.fsf@gnu.org> <20220311001516.7959-1-GNUtoo@cyberdimension.org> X-Gnu-PR-Message: they-closed 54334 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 54334@debbugs.gnu.org Date: Wed, 16 Mar 2022 14:12:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1647439922-24860-1" This is a multi-part message in MIME format... ------------=_1647439922-24860-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54334: [PATCH] gnu: python-gitlab: update to 3.2.0 which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54334@debbugs.gnu.org. --=20 54334: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54334 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1647439922-24860-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54334-done) by debbugs.gnu.org; 16 Mar 2022 14:11:25 +0000 Received: from localhost ([127.0.0.1]:51926 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nUUN3-0006S7-LE for submit@debbugs.gnu.org; Wed, 16 Mar 2022 10:11:25 -0400 Received: from eggs.gnu.org ([209.51.188.92]:46596) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nUUN1-0006Ru-F5 for 54334-done@debbugs.gnu.org; Wed, 16 Mar 2022 10:11:24 -0400 Received: from [2001:470:142:3::e] (port=60674 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nUUMv-00049q-Sf; Wed, 16 Mar 2022 10:11:17 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=StgKQi3vvcEGsgbYcXR24B5twRDRWANrmdDYoSfT+3A=; b=crTnIxSlPzt8+dMGxrSA dQ1MzmX91j5ShDgLxMKNmXEE0oGZ5ybioXHY25iyYC30qsFua7WsBLCy4dijUtS7LsnY6kJ1uKrU3 gT6q0ezslYO0UCse6alp1tabvYL0fInq0rMsiboZJC7CCNAz/SVzNIXleqSENyLeIIccXX4YhSN++ miPXi7j7S9P16APAEohwAO3BIrJAdZKpjaD1Dc/jdRFBNCrRiSRzNdsn26abjIfoSbNxSmosVKX8l I1TFtEKOWJORi4Q4H2TK3B09korP4L6VB6Cas5WR7bgvGodfGXPFRh1TLiTVb6nkztuz4nsHYqXg6 9zHPToud114JRA==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:57944 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nUUMu-0001z1-RS; Wed, 16 Mar 2022 10:11:17 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Denis 'GNUtoo' Carikli Subject: Re: bug#54334: [PATCH] gnu: python-gitlab: update to 3.2.0 References: <20220311001516.7959-1-GNUtoo@cyberdimension.org> Date: Wed, 16 Mar 2022 15:11:14 +0100 In-Reply-To: <20220311001516.7959-1-GNUtoo@cyberdimension.org> (Denis Carikli's message of "Fri, 11 Mar 2022 01:15:16 +0100") Message-ID: <87r172dm2l.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 54334-done Cc: 54334-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: -3.3 (---) Hi, Denis 'GNUtoo' Carikli skribis: > * gnu/packages/python-web.scm (python-gitlab): Update to 3.2.0 > > Signed-off-by: Denis 'GNUtoo' Carikli Applied. > + (arguments > + `( ;Tests require network access > + #:tests? #f)) Nitpick: I turned it into a margin comment, like so: (arguments `(#:tests? #f)) ;tests require network acc= ess Use one semicolon for margin comments, two for standalone comments. See . Thanks, Ludo=E2=80=99. ------------=_1647439922-24860-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 11 Mar 2022 00:21:27 +0000 Received: from localhost ([127.0.0.1]:35928 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nST27-0004QP-0d for submit@debbugs.gnu.org; Thu, 10 Mar 2022 19:21:27 -0500 Received: from lists.gnu.org ([209.51.188.17]:56700) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nST24-0004QH-K2 for submit@debbugs.gnu.org; Thu, 10 Mar 2022 19:21:25 -0500 Received: from eggs.gnu.org ([209.51.188.92]:50286) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nST24-0001tN-Dp for guix-patches@gnu.org; Thu, 10 Mar 2022 19:21:24 -0500 Received: from [2001:910:1314:ffff::1] (port=39966 helo=gnutoo.cyberdimension.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1nST22-0006TE-A4 for guix-patches@gnu.org; Thu, 10 Mar 2022 19:21:24 -0500 Received: from gnutoo.cyberdimension.org (localhost [127.0.0.1]) by cyberdimension.org (OpenSMTPD) with ESMTP id a18f8ce1; Fri, 11 Mar 2022 00:14:34 +0000 (UTC) Received: from primarylaptop.localdomain (localhost [::1]) by gnutoo.cyberdimension.org (OpenSMTPD) with ESMTP id ebecfb5d; Fri, 11 Mar 2022 00:14:34 +0000 (UTC) From: Denis 'GNUtoo' Carikli To: guix-patches@gnu.org Subject: [PATCH] gnu: python-gitlab: update to 3.2.0 Date: Fri, 11 Mar 2022 01:15:16 +0100 Message-Id: <20220311001516.7959-1-GNUtoo@cyberdimension.org> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Host-Lookup-Failed: Reverse DNS lookup failed for 2001:910:1314:ffff::1 (failed) Received-SPF: pass client-ip=2001:910:1314:ffff::1; envelope-from=GNUtoo@cyberdimension.org; helo=gnutoo.cyberdimension.org X-Spam_score_int: -10 X-Spam_score: -1.1 X-Spam_bar: - X-Spam_report: (-1.1 / 5.0 requ) BAYES_00=-1.9, RDNS_NONE=0.793, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Denis 'GNUtoo' Carikli 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.4 (--) * gnu/packages/python-web.scm (python-gitlab): Update to 3.2.0 Signed-off-by: Denis 'GNUtoo' Carikli --- gnu/packages/python-web.scm | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 240c58b665..69dbd87acd 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -48,6 +48,7 @@ ;;; Copyright © 2021 jgart ;;; Copyright © 2021 Alice Brenon ;;; Copyright © 2022 John Kehayias +;;; Copyright © 2022 Denis 'GNUtoo' Carikli ;;; ;;; This file is part of GNU Guix. ;;; @@ -4910,21 +4911,19 @@ (define-public python-translation-finder (define-public python-gitlab (package (name "python-gitlab") - (version "1.15.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "python-gitlab" version)) - (sha256 - (base32 - "0zl6kz8v8cg1bcy2r78b2snb0lpw0b573gdx2x1ps0nhsh75l4j5")))) + (version "3.2.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "python-gitlab" version)) + (sha256 + (base32 + "1gi4lp2g4k99zqcx2bgqx940bpmpbc1w9qkl5gy33hpy148yhvlg")))) (build-system python-build-system) - (propagated-inputs - (list python-requests python-six)) - (native-inputs - (list python-httmock python-mock)) - (home-page - "https://github.com/python-gitlab/python-gitlab") + (arguments + `( ;Tests require network access + #:tests? #f)) + (propagated-inputs (list python-requests python-requests-toolbelt)) + (home-page "https://github.com/python-gitlab/python-gitlab") (synopsis "Interact with GitLab API") (description "This package provides an extended library for interacting with GitLab instances through their API.") base-commit: 5397c18157f12e9127b5a9a59b0aa5a4eb058839 -- 2.35.1 ------------=_1647439922-24860-1--