From unknown Sun Jun 22 00:55:02 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#75901] [PATCH] gnu: Add python-securetar. Resent-From: Evgeny Pisemsky Original-Sender: "Debbugs-submit" Resent-CC: lars@6xq.net, marius@gnu.org, me@bonfacemunyoki.com, sharlatanus@gmail.com, tanguy@bioneland.org, jgart@dismail.de, guix-patches@gnu.org Resent-Date: Mon, 27 Jan 2025 20:30:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 75901 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 75901@debbugs.gnu.org Cc: Lars-Dominik Braun , Marius Bakke , Munyoki Kilyungi , Sharlatan Hellseher , Tanguy Le Carrour , jgart X-Debbugs-Original-To: guix-patches@gnu.org X-Debbugs-Original-Xcc: Lars-Dominik Braun , Marius Bakke , Munyoki Kilyungi , Sharlatan Hellseher , Tanguy Le Carrour , jgart Received: via spool by submit@debbugs.gnu.org id=B.173800978026401 (code B ref -1); Mon, 27 Jan 2025 20:30:02 +0000 Received: (at submit) by debbugs.gnu.org; 27 Jan 2025 20:29:40 +0000 Received: from localhost ([127.0.0.1]:34575 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tcVjo-0006rk-ET for submit@debbugs.gnu.org; Mon, 27 Jan 2025 15:29:40 -0500 Received: from lists.gnu.org ([2001:470:142::17]:49106) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tcVjm-0006rS-Ft for submit@debbugs.gnu.org; Mon, 27 Jan 2025 15:29:38 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tcVjf-0008Hm-FF for guix-patches@gnu.org; Mon, 27 Jan 2025 15:29:31 -0500 Received: from sofi-shared.hosting.energy ([2001:41d0:602:1f56::] helo=sofi.hosting.energy) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tcVjd-00023E-QK for guix-patches@gnu.org; Mon, 27 Jan 2025 15:29:31 -0500 Received: from [212.233.84.76] (helo=localhost.localdomain) by sofi.hosting.energy with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1tcVja-00033K-CH for guix-patches@gnu.org; Mon, 27 Jan 2025 23:29:26 +0300 From: Evgeny Pisemsky Date: Mon, 27 Jan 2025 23:29:13 +0300 Message-ID: <8d8c42ce6d412a7161df9cecdf3c05fe6e007675.1738009753.git.mail@pisemsky.site> X-Mailer: git-send-email 2.47.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: permerror client-ip=2001:41d0:602:1f56::; envelope-from=mail@pisemsky.site; helo=sofi.hosting.energy X-Spam_score_int: -14 X-Spam_score: -1.5 X-Spam_bar: - X-Spam_report: (-1.5 / 5.0 requ) BAYES_00=-1.9, KHOP_HELO_FCRDNS=0.4, T_SCC_BODY_TEXT_LINE=-0.01, T_SPF_HELO_PERMERROR=0.01, T_SPF_PERMERROR=0.01 autolearn=no 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: -1.0 (-) * gnu/packages/python-xyz.scm (python-securetar): New variable. Change-Id: Ic27644f20f59b6dceb2c15c637eb2db5955abba3 --- gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 31a5166574..760699085f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -21698,6 +21698,29 @@ (define-public s3cmd CloudFront content delivery network.") (license license:gpl2+))) +(define-public python-securetar + (package + (name "python-securetar") + (version "2025.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pvizeli/securetar") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1b9m29j4mjiv7925wrbiyj6vyx7m9qmdz40zqd4vgxhz4pq6x3xw")))) + (build-system pyproject-build-system) + (native-inputs (list python-setuptools python-wheel python-pytest)) + (propagated-inputs (list python-cryptography)) + (home-page "https://github.com/pvizeli/securetar") + (synopsis "Python module to handle tarfile backups") + (description + "This library provides a streaming wrapper around python tarfile and allow +secure handling files and support encryption.") + (license license:asl2.0))) + (define-public python-pkgconfig (package (name "python-pkgconfig") base-commit: 25651bab10800cf078be81025ffed168cfa76dbe -- 2.47.1 From unknown Sun Jun 22 00:55:02 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: Evgeny Pisemsky Subject: bug#75901: closed (Re: [bug#75901] [PATCH] gnu: Add python-securetar.) Message-ID: References: <87a5b4rgtf.fsf@envs.net> <8d8c42ce6d412a7161df9cecdf3c05fe6e007675.1738009753.git.mail@pisemsky.site> X-Gnu-PR-Message: they-closed 75901 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 75901@debbugs.gnu.org Date: Sun, 02 Feb 2025 06:36:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1738478161-23217-1" This is a multi-part message in MIME format... ------------=_1738478161-23217-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #75901: [PATCH] gnu: Add python-securetar. 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 75901@debbugs.gnu.org. --=20 75901: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D75901 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1738478161-23217-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 75901-done) by debbugs.gnu.org; 2 Feb 2025 06:35:58 +0000 Received: from localhost ([127.0.0.1]:60982 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1teTaH-00062E-Jm for submit@debbugs.gnu.org; Sun, 02 Feb 2025 01:35:57 -0500 Received: from mail.envs.net ([5.199.136.28]:40902) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1teTaE-000625-Ie for 75901-done@debbugs.gnu.org; Sun, 02 Feb 2025 01:35:55 -0500 Received: from localhost (mail.envs.net [127.0.0.1]) by mail.envs.net (Postfix) with ESMTP id BC26838A3E90; Sun, 2 Feb 2025 06:35:53 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at mail.envs.net Received: from mail.envs.net ([127.0.0.1]) by localhost (mail.envs.net [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id Yxif9aBMfBHV; Sun, 2 Feb 2025 06:35:43 +0000 (UTC) Received: from localhost (unknown [112.44.100.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.envs.net (Postfix) with ESMTPSA; Sun, 2 Feb 2025 06:35:42 +0000 (UTC) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id bf84b369; Sun, 2 Feb 2025 06:39:24 +0000 (UTC) From: =?utf-8?B?5a6L5paH5q2m?= To: Evgeny Pisemsky Subject: Re: [bug#75901] [PATCH] gnu: Add python-securetar. In-Reply-To: <8d8c42ce6d412a7161df9cecdf3c05fe6e007675.1738009753.git.mail@pisemsky.site> (Evgeny Pisemsky's message of "Mon, 27 Jan 2025 23:29:13 +0300") References: <8d8c42ce6d412a7161df9cecdf3c05fe6e007675.1738009753.git.mail@pisemsky.site> Date: Sun, 02 Feb 2025 14:39:24 +0800 Message-ID: <87a5b4rgtf.fsf@envs.net> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 75901-done Cc: 75901-done@debbugs.gnu.org, Tanguy Le Carrour , Munyoki Kilyungi , Lars-Dominik Braun , jgart , Marius Bakke , Sharlatan Hellseher 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 (-) Evgeny Pisemsky writes: > * gnu/packages/python-xyz.scm (python-securetar): New variable. Pushed to master, thank you! ------------=_1738478161-23217-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 27 Jan 2025 20:29:40 +0000 Received: from localhost ([127.0.0.1]:34575 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tcVjo-0006rk-ET for submit@debbugs.gnu.org; Mon, 27 Jan 2025 15:29:40 -0500 Received: from lists.gnu.org ([2001:470:142::17]:49106) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tcVjm-0006rS-Ft for submit@debbugs.gnu.org; Mon, 27 Jan 2025 15:29:38 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tcVjf-0008Hm-FF for guix-patches@gnu.org; Mon, 27 Jan 2025 15:29:31 -0500 Received: from sofi-shared.hosting.energy ([2001:41d0:602:1f56::] helo=sofi.hosting.energy) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tcVjd-00023E-QK for guix-patches@gnu.org; Mon, 27 Jan 2025 15:29:31 -0500 Received: from [212.233.84.76] (helo=localhost.localdomain) by sofi.hosting.energy with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1tcVja-00033K-CH for guix-patches@gnu.org; Mon, 27 Jan 2025 23:29:26 +0300 From: Evgeny Pisemsky To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-securetar. Date: Mon, 27 Jan 2025 23:29:13 +0300 Message-ID: <8d8c42ce6d412a7161df9cecdf3c05fe6e007675.1738009753.git.mail@pisemsky.site> X-Mailer: git-send-email 2.47.1 MIME-Version: 1.0 X-Debbugs-Cc: Lars-Dominik Braun , Marius Bakke , Munyoki Kilyungi , Sharlatan Hellseher , Tanguy Le Carrour , jgart Content-Transfer-Encoding: 8bit Received-SPF: permerror client-ip=2001:41d0:602:1f56::; envelope-from=mail@pisemsky.site; helo=sofi.hosting.energy X-Spam_score_int: -14 X-Spam_score: -1.5 X-Spam_bar: - X-Spam_report: (-1.5 / 5.0 requ) BAYES_00=-1.9, KHOP_HELO_FCRDNS=0.4, T_SCC_BODY_TEXT_LINE=-0.01, T_SPF_HELO_PERMERROR=0.01, T_SPF_PERMERROR=0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -0.0 (/) 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: -1.0 (-) * gnu/packages/python-xyz.scm (python-securetar): New variable. Change-Id: Ic27644f20f59b6dceb2c15c637eb2db5955abba3 --- gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 31a5166574..760699085f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -21698,6 +21698,29 @@ (define-public s3cmd CloudFront content delivery network.") (license license:gpl2+))) +(define-public python-securetar + (package + (name "python-securetar") + (version "2025.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pvizeli/securetar") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1b9m29j4mjiv7925wrbiyj6vyx7m9qmdz40zqd4vgxhz4pq6x3xw")))) + (build-system pyproject-build-system) + (native-inputs (list python-setuptools python-wheel python-pytest)) + (propagated-inputs (list python-cryptography)) + (home-page "https://github.com/pvizeli/securetar") + (synopsis "Python module to handle tarfile backups") + (description + "This library provides a streaming wrapper around python tarfile and allow +secure handling files and support encryption.") + (license license:asl2.0))) + (define-public python-pkgconfig (package (name "python-pkgconfig") base-commit: 25651bab10800cf078be81025ffed168cfa76dbe -- 2.47.1 ------------=_1738478161-23217-1--