From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46696) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f1CTi-0003BX-Ml for guix-patches@gnu.org; Wed, 28 Mar 2018 10:55:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f1CTf-000154-AE for guix-patches@gnu.org; Wed, 28 Mar 2018 10:55:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49595) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f1CTf-00014t-5s for guix-patches@gnu.org; Wed, 28 Mar 2018 10:55:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f1CTe-0005vg-Vm for guix-patches@gnu.org; Wed, 28 Mar 2018 10:55:02 -0400 Subject: [bug#30971] Add package definition for fpm2 Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35220) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f1Blu-0003Uh-EI for guix-patches@gnu.org; Wed, 28 Mar 2018 10:09:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f1Blp-0005E4-4b for guix-patches@gnu.org; Wed, 28 Mar 2018 10:09:50 -0400 Received: from mx1.riseup.net ([198.252.153.129]:34067) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1f1Blo-0005Df-O2 for guix-patches@gnu.org; Wed, 28 Mar 2018 10:09:45 -0400 Received: from cotinga.riseup.net (cotinga-pn.riseup.net [10.0.1.164]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id B88901A01F4 for ; Wed, 28 Mar 2018 07:09:43 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) by cotinga.riseup.net with ESMTPSA id 0274D6C5F7 for ; Wed, 28 Mar 2018 07:09:42 -0700 (PDT) Date: Wed, 28 Mar 2018 16:09:32 +0200 From: Ton Message-ID: <20180328160932.4674f3be@merlin.browniehive.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; boundary="Sig_/aiQxSG9tS0G3l9TO5sbAr+p"; protocol="application/pgp-signature" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30971@debbugs.gnu.org --Sig_/aiQxSG9tS0G3l9TO5sbAr+p Content-Type: multipart/mixed; boundary="MP_/W_NiEZx7=TXGQ9Aos0Mu5e0" --MP_/W_NiEZx7=TXGQ9Aos0Mu5e0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Here is the package definition for figaros password manager, or fpm2. It is= a simple password manager. Development has seized and the package should be considered dead. I had use for it personally and thought I'd share it. There is a warning in the description. Built and tested on GuixSD Linux merlin 4.15.8-gnu #1 SMP 1 x86_64 GNU/Linu= x. It passes guix lint without errors. It builds 5 times deterministicly. Guix size says "total: 486.5 MiB" --MP_/W_NiEZx7=TXGQ9Aos0Mu5e0 Content-Type: text/x-patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=0001-Add-package-definition-screen-message.patch =46rom d2efd598855759ce8377569b9e8279a5f774a22a Mon Sep 17 00:00:00 2001 From: Tonton Date: Wed, 28 Mar 2018 16:08:52 +0200 Subject: [PATCH] Add package definition screen message Built and tested on GuixSD Linux merlin 4.15.8-gnu #1 SMP 1 x86_64 GNU/Linu= x. It passes guix lint without errors. It builds 5 times deterministicly. Guix size says "total: 486.5 MiB" --- gnu/packages/fpm2.scm | 64 +++++++++++++++++++++++++++++++++++++++++++++++= ++++ 1 file changed, 64 insertions(+) create mode 100644 gnu/packages/fpm2.scm diff --git a/gnu/packages/fpm2.scm b/gnu/packages/fpm2.scm new file mode 100644 index 000000000..a9a35e01a --- /dev/null +++ b/gnu/packages/fpm2.scm @@ -0,0 +1,64 @@ +(define-module (fpm2) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix build-system gnu) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (gnu packages pkg-config) + #:use-module (gnu packages gtk) + #:use-module (gnu packages gnupg) + #:use-module (gnu packages xml) + #:use-module (gnu packages glib)) + +(define-public fpm2 + (package + (name "fpm2") + (version "0.79") + (source (origin + (method url-fetch) + (uri (string-append "https://als.regnet.cz/fpm2/download/fpm= 2-" + version ".tar.bz2")) + (sha256 + (base32 + "19sdy1lygfhkg5nxi2w9a4d9kwvw24nxp0ix0p0lz91qpvk9qpnm")))) + (build-system gnu-build-system) + (inputs `(("gtk2" ,gtk+-2) + ("gnupg" ,gnupg) + ("libxml2" ,libxml2))) + (native-inputs `(("pkgconfig" ,pkg-config) + ("intltool" ,intltool))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before + 'configure 'pre-configure + (lambda _ + (let* ((poinc (open-output-file "po/POTFILES.in"))) + (begin + (newline poinc) + (display "data/fpm2.desktop.in" poinc) + (newline poinc) + (display "data/fpm2.desktop.in.in" poinc) + (newline poinc) + (display "fpm2.glade" poinc) + (newline poinc) + (display "src/callbacks.c" poinc) + (newline poinc) + (display "src/fpm.c" poinc) + (newline poinc) + (display "src/fpm_file.c" poinc) + (newline poinc) + (display "src/interface.c" poinc) + (newline poinc) + (display "src/support.c" poinc) + (newline poinc) + (display "fpm2.glade" poinc) + (newline poinc) + (close-port poinc)))))))) + (synopsis "Manages, generates and stores passwords encrypted") + (description "FPM2 is GTK2 port from Figaro's Password Manager +originally developed by John Conneely, with some new enhancements. + +Upstream development seems to have stopped. It is therefore recommended +to use a different password manager. ") + (home-page "https://als.regnet.cz/fpm2/") + (license license:gpl2))) --=20 2.16.3 --MP_/W_NiEZx7=TXGQ9Aos0Mu5e0-- --Sig_/aiQxSG9tS0G3l9TO5sbAr+p Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEJpQ8ER/dPhCuYhy5z+UMpbuBoZAFAlq7ohwACgkQz+UMpbuB oZD64xAA0pDT8+FWuYsmMRX1/YsIiea7HIOxSxubVLX42IqofiKqT4077V82E6Gk xyR88vL2geDUZkKa/MPONROcJ4dqjEVVLkWYk77iKF7cpXPyf591gU1vhUBKRpzB lPJTe1LQn4m1yuGCEjuOrOURt0CAYp61nJX1IEfAfIVurLqGoDDNEe9qLWqzWwLM qqwdCEyGHxXeOtWjdYHofjWdtAhBKnWBbV+3Wo7qtiNuaJleVhY9FHJWxDN6GyTb xWHnSQEfHuzF54lAtKPTxtd/EFGxNntYNQwC9oAPNhxM5QLxCeWZH2sZzi2tUEen pIJN1qUe+mDqSv2t4uyt2afNl1utdM8f4zcMN497Z/SvSh0u+CxgOmr4NSgmHsS0 rcJOtM71hmTEqKlzTiN5rnE8kde+uE8SbbFCTKMonsxCqUffGgC+kgGJNZae21cd AEwEvI0XBXg842Py9ByyjBzFgoaU+2HHLug/MsCl2K/hbqja0VzgjTIPT3nxT7JG QIarh168qadv+oofZuExv0FwaouIQ2J49aiDoyZhYl3XuxhoHLRwKtgwhW9D5Q3P Pdzp4TtlmmFM0Y8Fvz8M1ZmNca8oeBq5ro5z5AwReRng3stbWsp3NycUoRqTooen NWtE4JNan90DVaIzAk3bv9pMuggDpdZ4/+RHdIGNmBN6QLJb5s4= =cUEd -----END PGP SIGNATURE----- --Sig_/aiQxSG9tS0G3l9TO5sbAr+p--