unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#49526] Add cl-authentic
@ 2021-07-11 18:30 Charles via Guix-patches via
  2021-07-12  9:41 ` Guillaume Le Vaillant
  0 siblings, 1 reply; 4+ messages in thread
From: Charles via Guix-patches via @ 2021-07-11 18:30 UTC (permalink / raw)
  To: 49526


[-- Attachment #1.1: Type: text/plain, Size: 13 bytes --]

Empty Message

[-- Attachment #1.2: Type: text/html, Size: 24 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-cl-authentic.patch --]
[-- Type: text/x-patch; name=0001-gnu-Add-cl-authentic.patch, Size: 2380 bytes --]

From 5fd68ca75c3606311621b726960fdc3a680f992c Mon Sep 17 00:00:00 2001
From: Charles <charles.b.jackson@protonmail.com>
Date: Wed, 7 Jul 2021 21:41:36 -0500
Subject: [PATCH] gnu: Add cl-authentic.

* gnu/packages/lisp-xyz.scm (sbcl-authentic, ecl-authentic, cl-authentic): Add new variables.
---
 gnu/packages/lisp-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index fe1c010811..a99f0fa301 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -16485,6 +16485,40 @@ for Common Lisp.")
 (define-public cl-bknr-datastore
   (sbcl-package->cl-source-package sbcl-bknr-datastore))
 
+(define-public sbcl-authentic
+  (let ((commit "51aa6b2a13184eff773a5507ec12e08409789ba8")
+        (revision "1"))
+    (package
+      (name "sbcl-authentic")
+      (version (git-version "0.1.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/charje/cl-authentic")
+               (commit commit)))
+         (file-name (git-file-name "authentic" version))
+         (sha256
+          (base32 "1dmi9lw1ickx0i41lh9sfchalvy7km6wc9w3szfjlvny7svwf6qp"))))
+      (build-system asdf-build-system/sbcl)
+      (inputs
+       `(("clsql" ,sbcl-clsql)
+         ("ironclad" ,sbcl-ironclad)))
+      (home-page "https://github.com/charje/cl-authentic")
+      (synopsis "Provide a light-weight and extendible solution to
+user/password management for Common Lisp applicaitons")
+      (description "Authentic provides a light-weight and extendible
+solution to user/password management for Common Lisp applicaitons. It has
+features such as safe password storage in a database, password reset, user
+confirmation tokens, and user authentication.")
+      (license license:llgpl))))
+
+(define-public ecl-authentic
+  (sbcl-package->ecl-package sbcl-authentic))
+
+(define-public cl-authentic
+  (sbcl-package->cl-source-package sbcl-authentic))
+
 (define-public sbcl-3d-vectors
   (let ((commit "29bb9684df803590deed344af63dbf7b712aabc0")
         (revision "1"))
@@ -18418,3 +18452,4 @@ bound to whatever value was in the same place in the URL (as a string).")
 
 (define-public cl-hunchenissr-routes
   (sbcl-package->cl-source-package sbcl-hunchenissr-routes))
+
-- 
2.32.0


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

* [bug#49526] Add cl-authentic
  2021-07-11 18:30 [bug#49526] Add cl-authentic Charles via Guix-patches via
@ 2021-07-12  9:41 ` Guillaume Le Vaillant
  2021-07-12 13:25   ` Charles via Guix-patches via
  0 siblings, 1 reply; 4+ messages in thread
From: Guillaume Le Vaillant @ 2021-07-12  9:41 UTC (permalink / raw)
  To: Charles; +Cc: 49526

[-- Attachment #1: Type: text/plain, Size: 129 bytes --]

When applying this patch, should I also update it to the most recent
upstream commit (d5ff2f4666ce24e41fb4ca22476c782c070e6f6e)?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

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

* [bug#49526] Add cl-authentic
  2021-07-12  9:41 ` Guillaume Le Vaillant
@ 2021-07-12 13:25   ` Charles via Guix-patches via
  2021-07-12 15:07     ` bug#49526: " Guillaume Le Vaillant
  0 siblings, 1 reply; 4+ messages in thread
From: Charles via Guix-patches via @ 2021-07-12 13:25 UTC (permalink / raw)
  To: Guillaume Le Vaillant; +Cc: 49526

[-- Attachment #1: Type: text/plain, Size: 400 bytes --]

Woops, yes. I forgot to pull to local before copying the comit and hash. I have attatchhed an updated patch.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐

On Monday, July 12th, 2021 at 4:41 AM, Guillaume Le Vaillant <glv@posteo.net> wrote:

> When applying this patch, should I also update it to the most recent
>
> upstream commit (d5ff2f4666ce24e41fb4ca22476c782c070e6f6e)?

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-cl-authentic.patch --]
[-- Type: text/x-patch; name=0001-gnu-Add-cl-authentic.patch, Size: 1991 bytes --]

From 3ab5d94047836d4c6887fabe070803626f635611 Mon Sep 17 00:00:00 2001
From: Charles <charles.b.jackson@protonmail.com>
Date: Wed, 7 Jul 2021 21:41:36 -0500
Subject: [PATCH] gnu: Add cl-authentic.

* gnu/packages/lisp-xyz.scm (sbcl-authentic, ecl-authentic, cl-authentic): Add new variables.
---
 gnu/packages/lisp-xyz.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index fe1c010811..9aa5c854a7 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -16485,6 +16485,37 @@ for Common Lisp.")
 (define-public cl-bknr-datastore
   (sbcl-package->cl-source-package sbcl-bknr-datastore))
 
+(define-public sbcl-authentic
+  (let ((commit "d5ff2f4666ce24e41fb4ca22476c782c070e6f6e")
+        (revision "1"))
+    (package
+      (name "authentic")
+      (version (git-version "0.1.0" revision commit))
+      (source
+       (origin
+         (method url-fetch)
+         (uri "/home/charles/cl-authentic")
+         (sha256
+          (base32 "1dmi9lw1ickx0i41lh9sfchalvy7km6wc9w3szfjlvny7svwf6qp"))))
+      (build-system asdf-build-system/sbcl)
+      (inputs
+       `(("clsql" ,sbcl-clsql)
+         ("ironclad" ,sbcl-ironclad)))
+      (home-page "")
+      (synopsis "Provide a light-weight and extendible solution to
+user/password management for Common Lisp applicaitons")
+      (description "Authentic provides a light-weight and extendible
+solution to user/password management for Common Lisp applicaitons. It has
+features such as safe password storage in a database, password reset, user
+confirmation tokens, and user authentication.")
+      (license license:llgpl))))
+
+(define-public ecl-authentic
+  (sbcl-package->ecl-package sbcl-authentic))
+
+(define-public cl-authentic
+  (sbcl-package->cl-source-package sbcl-authentic))
+
 (define-public sbcl-3d-vectors
   (let ((commit "29bb9684df803590deed344af63dbf7b712aabc0")
         (revision "1"))
-- 
2.32.0


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

* bug#49526: Add cl-authentic
  2021-07-12 13:25   ` Charles via Guix-patches via
@ 2021-07-12 15:07     ` Guillaume Le Vaillant
  0 siblings, 0 replies; 4+ messages in thread
From: Guillaume Le Vaillant @ 2021-07-12 15:07 UTC (permalink / raw)
  To: Charles; +Cc: 49526-done

[-- Attachment #1: Type: text/plain, Size: 539 bytes --]

Charles <charles.b.jackson@protonmail.com> skribis:

> Woops, yes. I forgot to pull to local before copying the comit and hash. I have attatchhed an updated patch.
>
> ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
>
> On Monday, July 12th, 2021 at 4:41 AM, Guillaume Le Vaillant <glv@posteo.net> wrote:
>
>> When applying this patch, should I also update it to the most recent
>>
>> upstream commit (d5ff2f4666ce24e41fb4ca22476c782c070e6f6e)?

Patch pushed as 62b60ba08249cbe239f3abe033a15fac83c4b54a.
Thanks.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

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

end of thread, other threads:[~2021-07-12 15:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-11 18:30 [bug#49526] Add cl-authentic Charles via Guix-patches via
2021-07-12  9:41 ` Guillaume Le Vaillant
2021-07-12 13:25   ` Charles via Guix-patches via
2021-07-12 15:07     ` bug#49526: " Guillaume Le Vaillant

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).