From unknown Wed Sep 10 20:08:09 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#46646] [PATCH] gnu: Add pwsafe-cli. Resent-From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 19 Feb 2021 21:17:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 46646 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 46646@debbugs.gnu.org Cc: Stefan =?UTF-8?Q?Reich=C3=B6r?= X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.161376939226151 (code B ref -1); Fri, 19 Feb 2021 21:17:02 +0000 Received: (at submit) by debbugs.gnu.org; 19 Feb 2021 21:16:32 +0000 Received: from localhost ([127.0.0.1]:50518 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDD8Z-0006ni-Cj for submit@debbugs.gnu.org; Fri, 19 Feb 2021 16:16:32 -0500 Received: from lists.gnu.org ([209.51.188.17]:43540) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDD8W-0006na-Th for submit@debbugs.gnu.org; Fri, 19 Feb 2021 16:16:30 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:34328) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lDD8W-0006Hn-NJ for guix-patches@gnu.org; Fri, 19 Feb 2021 16:16:28 -0500 Received: from dd3624.kasserver.com ([85.13.130.11]:58520) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lDD8U-00029N-7E for guix-patches@gnu.org; Fri, 19 Feb 2021 16:16:28 -0500 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id D640C5D4052B; Fri, 19 Feb 2021 22:16:22 +0100 (CET) From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Date: Fri, 19 Feb 2021 22:16:16 +0100 Message-Id: <20210219211616.166900-1-stefan@xsteve.at> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.130.11; envelope-from=stefan@xsteve.at; helo=dd3624.kasserver.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) 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 (---) * gnu/packages/password-utils.scm (pwsafe-cli): New variable. --- gnu/packages/password-utils.scm | 44 +++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index ef4bf535a4..6d6834cfd5 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -29,6 +29,7 @@ ;;; Copyright © 2020 Jean-Baptiste Note ;;; Copyright © 2020 Michael Rohleder ;;; Copyright © 2020 Vinicius Monego +;;; Copyright © 2021 Stefan Reichör ;;; ;;; This file is part of GNU Guix. ;;; @@ -58,6 +59,7 @@ #:use-module (gnu packages admin) #:use-module (gnu packages aidc) #:use-module (gnu packages authentication) + #:use-module (gnu packages autotools) #:use-module (gnu packages base) #:use-module (gnu packages check) #:use-module (gnu packages compression) @@ -255,6 +257,48 @@ There are other programs that support the file format on different platforms.") (license license:artistic2.0))) +(define-public pwsafe-cli + (let ((commit "c49a0541b66647ad04d19ddb351d264054c67759") + (revision "0")) + (package + (name "pwsafe-cli") + (version (git-version "0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nsd20463/pwsafe") + (commit commit))) + (sha256 + (base32 + "0ak09r1l7k57m6pdx468hhzvz0szmaq42vyr575fvsjc8rbrp8qq")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; skip failing test suite (requires write access to /tmp) + #:phases + (modify-phases %standard-phases + (replace 'bootstrap + (lambda _ + (invoke "aclocal") + (invoke "autoheader") + (invoke "automake" "--add-missing") + (invoke "autoconf") + #t))))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake))) + (inputs + `(("openssl" ,openssl) + ("libx11" ,libx11) + ("libxt" ,libxt) + ("libxmu" ,libxmu))) + (home-page "https://github.com/nsd20463/pwsafe") + (synopsis "CLI password manager") + (description "Command line tool compatible with Counterpane's +Passwordsafe.") + (license license:gpl2)))) + (define-public shroud (package (name "shroud") -- 2.25.1 From unknown Wed Sep 10 20:08:09 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: Stefan =?UTF-8?Q?Reich=C3=B6r?= Subject: bug#46646: closed () Message-ID: References: <20210219211616.166900-1-stefan@xsteve.at> X-Gnu-PR-Message: they-closed 46646 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 46646@debbugs.gnu.org Date: Tue, 23 Feb 2021 17:35:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1614101702-5480-1" This is a multi-part message in MIME format... ------------=_1614101702-5480-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #46646: [PATCH] gnu: Add pwsafe-cli. 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 46646@debbugs.gnu.org. --=20 46646: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D46646 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1614101702-5480-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 46646-done) by debbugs.gnu.org; 23 Feb 2021 17:35:01 +0000 Received: from localhost ([127.0.0.1]:60406 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lEbaO-0001Q8-NQ for submit@debbugs.gnu.org; Tue, 23 Feb 2021 12:35:00 -0500 Received: from mail.zaclys.net ([178.33.93.72]:34447) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lEbaM-0001Pt-L6 for 46646-done@debbugs.gnu.org; Tue, 23 Feb 2021 12:34:59 -0500 Received: from guix-xps.local (laubervilliers-658-1-13-116.w217-128.abo.wanadoo.fr [217.128.144.116]) (authenticated bits=0) by mail.zaclys.net (8.14.7/8.14.7) with ESMTP id 11NHYp1w021902 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for <46646-done@debbugs.gnu.org>; Tue, 23 Feb 2021 18:34:52 +0100 DMARC-Filter: OpenDMARC Filter v1.3.2 mail.zaclys.net 11NHYp1w021902 Authentication-Results: mail.zaclys.net; dmarc=fail (p=reject dis=none) header.from=zaclys.net Authentication-Results: mail.zaclys.net; spf=fail smtp.mailfrom=lle-bout@zaclys.net DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zaclys.net; s=default; t=1614101692; bh=envkCR/e/fR1H6IukHpNBsHErOULtMM8oe+hrcHD11A=; h=Subject:From:To:Date:From; b=OygGcLwQTEpzjgVpab3FY9jQPDzCe2aBf2dj4ds1C/WVd6VJ2C+givyszVTLyzbnZ 8GX2CWkYfdozd9Zf7XXX5+8xO/Uq/ElVY5ygP+ylyhKhzES3Crpfr17ov/2Ef4gpT2 iOkz/HigVtTjavHF3eprWCUg/AoMS93tEqpNWT24= Message-ID: Subject: From: =?ISO-8859-1?Q?L=E9o?= Le Bouter To: 46646-done@debbugs.gnu.org Date: Tue, 23 Feb 2021 18:34:45 +0100 Content-Type: multipart/signed; micalg="pgp-sha512"; protocol="application/pgp-signature"; boundary="=-t4sGgsBeUvzg9In5ev1D" User-Agent: Evolution 3.34.2 MIME-Version: 1.0 X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Pushed as 33a212bf88904295ddc20fcb05a4c237205812f8 I tried to enable the tests by substituting /tmp in all files in the "test" directory but somehow the files created by the tests in a writable directory are not writable themselves, still quite obscur [...] Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: 46646-done 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 (+) --=-t4sGgsBeUvzg9In5ev1D Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Pushed as 33a212bf88904295ddc20fcb05a4c237205812f8 I tried to enable the tests by substituting /tmp in all files in the "test" directory but somehow the files created by the tests in a writable directory are not writable themselves, still quite obscure to me. Please suggest another patch if you fix the tests one day. Thank you! --=-t4sGgsBeUvzg9In5ev1D Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEFIvLi9gL+xax3g6RRaix6GvNEKYFAmA1PLUACgkQRaix6GvN EKa2Cg//UvC2nA1QceLGjnk0ZF6x/xx5zwBTac7rScCZ1T5iMAVaXzJ/2z+Qy4LZ K2ywUXeN39+NNB2iD2MeEBZxaUr9S7KB84weOxtGThMNGhXP2Pw8GIqYoqEEfHCl MbRW9pEUPt38xCoPTjUNIOeadZuPRiYkAeON3zDlnh7TLUGpmlPe5slGwDesa/IB IgVYaXBpNh3PCjM640ZdBImLmgVrpOmkrCaz3lbyfKmGlJ0HRHvSK8/ezNXu38KR bNyGdAFmljas0JIarxmLCICXmoHaUXkIb6lvpOrrtMFG2vYRBHppsOnoZqPFYBvY G5/W5qEYBWp/w5VeCVEMIyWh/Kcrp1yPDOObplG97oCluh7bk0KWPeNsqNLajzhD 5pe72z7OcnZ3SlkHum5mPzey7vCYhJfL7pi65cxhs92aQMvK4z5mveDIIGeHa32U 1RjAx/Jqpjv/ygro8su6zfi0MOAK7V+gW9abMnpfBKMcltI0X/UertD3wUJHf/Ad frDp7fs5dNiXa6el6LeaNlhdBOE36tdWZnIF5jAy6b8TodECbKsWHKkmyM4Htq9a Tjij9dppo8sfk/n7ByCqanUdI5XaqT4sM06W3Ad//ye4kWGRea6L6DSjkQaepum/ ztS6WEjBSvaU2F3dlWpPGnI54rL49WQfbQyoCaRT89AulRFetSk= =ymN5 -----END PGP SIGNATURE----- --=-t4sGgsBeUvzg9In5ev1D-- ------------=_1614101702-5480-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 19 Feb 2021 21:16:32 +0000 Received: from localhost ([127.0.0.1]:50518 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDD8Z-0006ni-Cj for submit@debbugs.gnu.org; Fri, 19 Feb 2021 16:16:32 -0500 Received: from lists.gnu.org ([209.51.188.17]:43540) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDD8W-0006na-Th for submit@debbugs.gnu.org; Fri, 19 Feb 2021 16:16:30 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:34328) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lDD8W-0006Hn-NJ for guix-patches@gnu.org; Fri, 19 Feb 2021 16:16:28 -0500 Received: from dd3624.kasserver.com ([85.13.130.11]:58520) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lDD8U-00029N-7E for guix-patches@gnu.org; Fri, 19 Feb 2021 16:16:28 -0500 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id D640C5D4052B; Fri, 19 Feb 2021 22:16:22 +0100 (CET) From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= To: guix-patches@gnu.org Subject: [PATCH] gnu: Add pwsafe-cli. Date: Fri, 19 Feb 2021 22:16:16 +0100 Message-Id: <20210219211616.166900-1-stefan@xsteve.at> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.130.11; envelope-from=stefan@xsteve.at; helo=dd3624.kasserver.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?Stefan=20Reich=C3=B6r?= 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 (---) * gnu/packages/password-utils.scm (pwsafe-cli): New variable. --- gnu/packages/password-utils.scm | 44 +++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index ef4bf535a4..6d6834cfd5 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -29,6 +29,7 @@ ;;; Copyright © 2020 Jean-Baptiste Note ;;; Copyright © 2020 Michael Rohleder ;;; Copyright © 2020 Vinicius Monego +;;; Copyright © 2021 Stefan Reichör ;;; ;;; This file is part of GNU Guix. ;;; @@ -58,6 +59,7 @@ #:use-module (gnu packages admin) #:use-module (gnu packages aidc) #:use-module (gnu packages authentication) + #:use-module (gnu packages autotools) #:use-module (gnu packages base) #:use-module (gnu packages check) #:use-module (gnu packages compression) @@ -255,6 +257,48 @@ There are other programs that support the file format on different platforms.") (license license:artistic2.0))) +(define-public pwsafe-cli + (let ((commit "c49a0541b66647ad04d19ddb351d264054c67759") + (revision "0")) + (package + (name "pwsafe-cli") + (version (git-version "0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nsd20463/pwsafe") + (commit commit))) + (sha256 + (base32 + "0ak09r1l7k57m6pdx468hhzvz0szmaq42vyr575fvsjc8rbrp8qq")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; skip failing test suite (requires write access to /tmp) + #:phases + (modify-phases %standard-phases + (replace 'bootstrap + (lambda _ + (invoke "aclocal") + (invoke "autoheader") + (invoke "automake" "--add-missing") + (invoke "autoconf") + #t))))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake))) + (inputs + `(("openssl" ,openssl) + ("libx11" ,libx11) + ("libxt" ,libxt) + ("libxmu" ,libxmu))) + (home-page "https://github.com/nsd20463/pwsafe") + (synopsis "CLI password manager") + (description "Command line tool compatible with Counterpane's +Passwordsafe.") + (license license:gpl2)))) + (define-public shroud (package (name "shroud") -- 2.25.1 ------------=_1614101702-5480-1-- From unknown Wed Sep 10 20:08:09 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#46646] [PATCH] gnu: Add pwsafe-cli. Resent-From: Nicolas Goaziou Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 23 Feb 2021 17:55:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 46646 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Stefan =?UTF-8?Q?Reich=C3=B6r?= Cc: 46646@debbugs.gnu.org Received: via spool by 46646-submit@debbugs.gnu.org id=B46646.16141028627357 (code B ref 46646); Tue, 23 Feb 2021 17:55:01 +0000 Received: (at 46646) by debbugs.gnu.org; 23 Feb 2021 17:54:22 +0000 Received: from localhost ([127.0.0.1]:60467 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lEbt7-0001ub-Nd for submit@debbugs.gnu.org; Tue, 23 Feb 2021 12:54:21 -0500 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:54607) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lEbt6-0001uM-82 for 46646@debbugs.gnu.org; Tue, 23 Feb 2021 12:54:20 -0500 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id 51C6660003; Tue, 23 Feb 2021 17:54:13 +0000 (UTC) From: Nicolas Goaziou References: <20210219211616.166900-1-stefan@xsteve.at> Date: Tue, 23 Feb 2021 18:54:12 +0100 In-Reply-To: <20210219211616.166900-1-stefan@xsteve.at> ("Stefan =?UTF-8?Q?Reich=C3=B6r?="'s message of "Fri, 19 Feb 2021 22:16:16 +0100") Message-ID: <87eeh6y8jf.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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 (-) Hello, Stefan Reich=C3=B6r writes: > * gnu/packages/password-utils.scm (pwsafe-cli): New variable. Thanks! The project seems to be named "pwsafe", and all other distributions use "pwsafe" for it. I understand it is a CLI, but is there a particular reason to name it "pwsafe-cli"? Regards, --=20 Nicolas Goaziou From unknown Wed Sep 10 20:08:09 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#46646] [PATCH] gnu: Add pwsafe-cli. Resent-From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 23 Feb 2021 18:05:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 46646 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Nicolas Goaziou Cc: 46646@debbugs.gnu.org Received: via spool by 46646-submit@debbugs.gnu.org id=B46646.16141034878401 (code B ref 46646); Tue, 23 Feb 2021 18:05:01 +0000 Received: (at 46646) by debbugs.gnu.org; 23 Feb 2021 18:04:47 +0000 Received: from localhost ([127.0.0.1]:60486 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lEc3D-0002BR-D2 for submit@debbugs.gnu.org; Tue, 23 Feb 2021 13:04:47 -0500 Received: from dd3624.kasserver.com ([85.13.130.11]:42048) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lEc3A-0002BH-P9 for 46646@debbugs.gnu.org; Tue, 23 Feb 2021 13:04:45 -0500 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id 421535D40423; Tue, 23 Feb 2021 19:04:42 +0100 (CET) From: Stefan =?UTF-8?Q?Reich=C3=B6r?= In-Reply-To: <87eeh6y8jf.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Tue, 23 Feb 2021 18:54:12 +0100") References: <20210219211616.166900-1-stefan@xsteve.at> <87eeh6y8jf.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) Date: Tue, 23 Feb 2021 19:04:41 +0100 Message-ID: <87v9aivex2.fsf@xsteve.at> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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 (-) Hi Nicolas! > Hello, > > Stefan Reich=C3=B6r writes: > >> * gnu/packages/password-utils.scm (pwsafe-cli): New variable. > > Thanks! > > The project seems to be named "pwsafe", and all other distributions use > "pwsafe" for it. I understand it is a CLI, but is there a particular > reason to name it "pwsafe-cli"? > > Regards, I would also prefer pwsafe as name, however guix already has a package name= d pwsafe. This is why I picked a different name. I would have no problem in renaming pwsafe to something else and name pwsaf= e-cli pwsafe... ;-) Stefan. From unknown Wed Sep 10 20:08:09 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#46646] [PATCH] gnu: Add pwsafe-cli. Resent-From: Nicolas Goaziou Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 23 Feb 2021 18:21:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 46646 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Stefan =?UTF-8?Q?Reich=C3=B6r?= Cc: 46646@debbugs.gnu.org Received: via spool by 46646-submit@debbugs.gnu.org id=B46646.16141044409797 (code B ref 46646); Tue, 23 Feb 2021 18:21:01 +0000 Received: (at 46646) by debbugs.gnu.org; 23 Feb 2021 18:20:40 +0000 Received: from localhost ([127.0.0.1]:60494 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lEcIZ-0002Xw-ST for submit@debbugs.gnu.org; Tue, 23 Feb 2021 13:20:40 -0500 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:2313) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lEcIY-0002Xj-Lq for 46646@debbugs.gnu.org; Tue, 23 Feb 2021 13:20:39 -0500 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id A4598240004; Tue, 23 Feb 2021 18:20:31 +0000 (UTC) From: Nicolas Goaziou References: <20210219211616.166900-1-stefan@xsteve.at> <87eeh6y8jf.fsf@nicolasgoaziou.fr> <87v9aivex2.fsf@xsteve.at> Date: Tue, 23 Feb 2021 19:20:30 +0100 In-Reply-To: <87v9aivex2.fsf@xsteve.at> ("Stefan =?UTF-8?Q?Reich=C3=B6r?="'s message of "Tue, 23 Feb 2021 19:04:41 +0100") Message-ID: <87a6ruy7bl.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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 (-) Stefan Reich=C3=B6r writes: > I would also prefer pwsafe as name, however guix already has a package na= med pwsafe. > This is why I picked a different name. Ah true! I hadn't realized this. > I would have no problem in renaming pwsafe to something else and name > pwsafe-cli pwsafe... ;-) And we also have passwordsafe=E2=80=A6 According to other distributions, we should do the following renaming passwordsafe -> gnome-passwordsafe pwsafe -> passwordsafe pwsafe-cli -> pwsafe I guess that ship has sailed=E2=80=A6 Thank you for your answer! Regards,