unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#59154] [PATCH] gnu: Add python-xkcdpass.
@ 2022-11-09 18:36 Antero Mejr via Guix-patches via
  2022-11-09 18:42 ` [bug#59154] [PATCH] licenses: Add EUPL 1.1 Antero Mejr via Guix-patches via
  2022-11-26  8:57 ` bug#59154: [PATCH] gnu: Add python-xkcdpass Lars-Dominik Braun
  0 siblings, 2 replies; 3+ messages in thread
From: Antero Mejr via Guix-patches via @ 2022-11-09 18:36 UTC (permalink / raw)
  To: 59154; +Cc: Antero Mejr, lars

* gnu/packages/python-crypto.scm (python-xkcdpass): New variable.
---
 gnu/packages/python-crypto.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index c9eb226d8a..cc94a08ed1 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1795,3 +1795,35 @@ (define-public python-zxcvbn
 in different situations.
 @end enumerate")
     (license license:expat)))
+
+(define-public python-xkcdpass
+  (package
+    (name "python-xkcdpass")
+    (version "1.19.3")
+    (home-page "https://github.com/redacted/XKCD-password-generator")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url home-page)
+                    (commit (string-append "xkcdpass-" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0xfrmx9k2vinlagv476rfcfdp41aix1ldy6qnzzx26n985gcyk7p"))))
+    (build-system python-build-system)
+    (synopsis
+     "Generate secure multiword passwords/passphrases, inspired by XKCD")
+    (description
+     "This package provides a flexible and scriptable password generator which
+generates strong passphrases, inspired by
+@url{https://xkcd.com/936/,XKCD 936}.")
+    (license (list license:bsd-3 ;code
+                   license:cc0 ;spanish, eff_large_de, french word lists
+                   license:cc-by-sa3.0 ;finnish, italian word list
+                   license:lgpl2.0 ;finnish word list
+                   license:eupl1.1 ;finnish word list
+                   license:gpl3 ;ger-anix word list
+                   license:cc-by-sa4.0 ;norwegian word list
+                   license:gpl2 ;portuguese word list
+                   license:lgpl2.1 ;portuguese word list
+                   license:mpl1.1)))) ;portuguese word list
-- 
2.38.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#59154] [PATCH] licenses: Add EUPL 1.1.
  2022-11-09 18:36 [bug#59154] [PATCH] gnu: Add python-xkcdpass Antero Mejr via Guix-patches via
@ 2022-11-09 18:42 ` Antero Mejr via Guix-patches via
  2022-11-26  8:57 ` bug#59154: [PATCH] gnu: Add python-xkcdpass Lars-Dominik Braun
  1 sibling, 0 replies; 3+ messages in thread
From: Antero Mejr via Guix-patches via @ 2022-11-09 18:42 UTC (permalink / raw)
  To: 59154; +Cc: Antero Mejr, lars

* guix/licenses.scm (eupl1.1): New variable.
---
Please apply this patch first.

 guix/licenses.scm | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/guix/licenses.scm b/guix/licenses.scm
index 80cf0f1114..632c9174df 100644
--- a/guix/licenses.scm
+++ b/guix/licenses.scm
@@ -57,6 +57,7 @@ (define-module (guix licenses)
             edl1.0
             epl1.0
             epl2.0
+            eupl1.1
             eupl1.2
             expat expat-0
             freetype
@@ -344,6 +345,11 @@ (define epl2.0
            "https://www.eclipse.org/legal/epl-2.0/"
            "https://www.gnu.org/licenses/license-list#EPL2"))
 
+(define eupl1.1
+  (license "EUPL 1.1"
+           "https://directory.fsf.org/wiki/License:EUPL-1.1"
+           "https://www.gnu.org/licenses/license-list#EUPL-1.1"))
+
 (define eupl1.2
   (license "EUPL 1.2"
            "https://directory.fsf.org/wiki/License:EUPL-1.2"
-- 
2.38.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#59154: [PATCH] gnu: Add python-xkcdpass.
  2022-11-09 18:36 [bug#59154] [PATCH] gnu: Add python-xkcdpass Antero Mejr via Guix-patches via
  2022-11-09 18:42 ` [bug#59154] [PATCH] licenses: Add EUPL 1.1 Antero Mejr via Guix-patches via
@ 2022-11-26  8:57 ` Lars-Dominik Braun
  1 sibling, 0 replies; 3+ messages in thread
From: Lars-Dominik Braun @ 2022-11-26  8:57 UTC (permalink / raw)
  To: Antero Mejr; +Cc: 59154-done

Hi,

pushed as afa5fa8d5b33e115745c720a1d06db0160d9d902 with some changes
(moved to password-utils.scm and installing manpage).

Thanks,
Lars





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-11-26  8:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-09 18:36 [bug#59154] [PATCH] gnu: Add python-xkcdpass Antero Mejr via Guix-patches via
2022-11-09 18:42 ` [bug#59154] [PATCH] licenses: Add EUPL 1.1 Antero Mejr via Guix-patches via
2022-11-26  8:57 ` bug#59154: [PATCH] gnu: Add python-xkcdpass Lars-Dominik Braun

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).