From eb1b193379ee23b43ef7a3bb90d718df5c6c7d24 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 29 Apr 2022 17:36:22 -0400 Subject: gnu: Remove sala. * gnu/packages/password-utils.scm (sala): Delete variable. --- gnu/packages/password-utils.scm | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'gnu/packages/password-utils.scm') diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index 1891a2cf09..348afb5af4 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -1035,33 +1035,6 @@ (define-public john-the-ripper-jumbo is the community-enhanced, \"jumbo\" version of John the Ripper.") (license license:gpl2+)))) -(define-public sala - (package - (name "sala") - (version "1.3") - (source - (origin - (method url-fetch) - (uri (pypi-uri "sala" version)) - (sha256 - (base32 - "13qgmc3i2a0cqp8jqrfl93lnphfagb32pgfikc1gza2a14asxzi8")))) - (build-system python-build-system) - (arguments - ;; Sala is supposed to work with Python 3.2 or higher, - ;; but it doesn't work with Python 3.6. Better stick - ;; to Python 2, which works fine. - `(#:python ,python-2)) - (propagated-inputs - (list gnupg pwgen)) - (home-page "http://www.digip.org/sala/") - (synopsis "Encrypted plaintext password store") - (description - "Store passwords and other bits of sensitive plain-text information -to encrypted files on a directory hierarchy. The information is protected -by GnuPG's symmetrical encryption.") - (license license:expat))) - (define-public fpm2 (package (name "fpm2") -- cgit v1.2.3 From ec822034d9fb0cb97be04342bed399489bef1b0a Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 12 May 2022 21:49:16 -0400 Subject: gnu: john-the-ripper-jumbo: Use Python 3. * gnu/packages/password-utils.scm (john-the-ripper-jumbot): [inputs]: Use new style and replace python-2 by python-wrapper. [phases]{install}: Delete trailing #t. --- gnu/packages/password-utils.scm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'gnu/packages/password-utils.scm') diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index 348afb5af4..127cfdf7aa 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -33,6 +33,7 @@ ;;; Copyright © 2021 Xinglu Chen ;;; Copyright © 2020 Hartmut Goebel ;;; Copyright © 2021 David Dashyan +;;; Copyright © 2022 Maxim Cournoyer ;;; ;;; This file is part of GNU Guix. ;;; @@ -951,13 +952,13 @@ (define-public john-the-ripper-jumbo (native-inputs (list perl)) (inputs - `(("gmp" ,gmp) - ("libpcap" ,libpcap) - ("nss" ,nss) - ("openssl" ,openssl) - ("python" ,python-2) ; For "python" and "python2" shebangs - ("ruby" ,ruby) ; For genincstats.rb - ("zlib" ,zlib))) + (list gmp + libpcap + nss + openssl + python-wrapper + ruby ; For genincstats.rb + zlib)) (arguments `(#:configure-flags (list "--with-systemwide" @@ -1018,8 +1019,7 @@ (define-public john-the-ripper-jumbo (find-files "." "(.*\\.chr|.*\\.lst)") (find-files "." ".*\\.conf"))) (copy-recursively "rules" (string-append datadir "/rules"))) - (copy-recursively "../doc" docdir) - #t))) + (copy-recursively "../doc" docdir)))) (delete 'check) ; Tests need installed .conf files; move after install (add-after 'install 'check (lambda args -- cgit v1.2.3