guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: dehydrated: Update to 0.7.1.


From: guix-commits
Subject: 02/03: gnu: dehydrated: Update to 0.7.1.
Date: Mon, 31 Oct 2022 16:09:28 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit c744992715225acb1b2681ae69e0448878a6146c
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Oct 30 02:00:01 2022 +0100

    gnu: dehydrated: Update to 0.7.1.
    
    It's a Halloween miracle.
    
    * gnu/packages/tls.scm (dehydrated): Update to 0.7.1.
    [inputs]: Add util-linux+udev.
---
 gnu/packages/tls.scm | 164 +++++++++++++++++++++++++--------------------------
 1 file changed, 81 insertions(+), 83 deletions(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index f7af5c9758..56857ce1e4 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -1105,97 +1105,95 @@ coding footprint.")
                 #t)))))))))
 
 (define-public dehydrated
-  ;; The last release is from 2020 and pleas for a new one have so far been
-  ;; ignored.  Yet, we must keep up with Let's Encrypt API changes & fixes.
-  (let ((revision "0")
-        (commit "6fb8eba56a67af8e8b5528b669a5da923b5d2182"))
-    (package
-      (name "dehydrated")
-      (version (git-version "0.7.0" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/dehydrated-io/dehydrated";)
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "0rvxgxfk0filzw2dr14xwmiic1pwj82b615wydmg818xwdx7mxfx"))))
-      (build-system trivial-build-system)
-      (arguments
-       (list
-        #:modules '((guix build utils)
-                    (srfi srfi-26))
-        #:builder
-        #~(begin
-            (use-modules (guix build utils)
-                         (srfi srfi-26))
-            (let* ((source (assoc-ref %build-inputs "source"))
-                   (gzip (search-input-file %build-inputs "bin/gzip"))
-                   (bin  (string-append #$output "/bin"))
-                   (doc  (string-append #$output "/share/doc/"
-                                        #$name "-" #$version))
-                   (man  (string-append #$output "/share/man"))
-                   (bash (in-vicinity (assoc-ref %build-inputs "bash") "bin")))
+  (package
+    (name "dehydrated")
+    (version "0.7.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/dehydrated-io/dehydrated";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1mhf3v9ynwrxrkqawqpxnwfn5dmrlkqcvkxdrk59nkxjpdx1wkrb"))))
+    (build-system trivial-build-system)
+    (arguments
+     (list
+      #:modules '((guix build utils)
+                  (srfi srfi-26))
+      #:builder
+      #~(begin
+          (use-modules (guix build utils)
+                       (srfi srfi-26))
+          (let* ((source (assoc-ref %build-inputs "source"))
+                 (gzip (search-input-file %build-inputs "bin/gzip"))
+                 (bin  (string-append #$output "/bin"))
+                 (doc  (string-append #$output "/share/doc/"
+                                      #$name "-" #$version))
+                 (man  (string-append #$output "/share/man"))
+                 (bash (in-vicinity (assoc-ref %build-inputs "bash") "bin")))
 
-              (chdir source)
+            (chdir source)
 
-              (copy-recursively "docs" doc)
-              (install-file "LICENSE" doc)
+            (copy-recursively "docs" doc)
+            (install-file "LICENSE" doc)
 
-              (mkdir-p man)
-              (rename-file (string-append doc "/man")
-                           (string-append man "/man1"))
-              (for-each (cut invoke gzip "-9n" <>)
-                        (find-files man ".*"))
+            (mkdir-p man)
+            (rename-file (string-append doc "/man")
+                         (string-append man "/man1"))
+            (for-each (cut invoke gzip "-9n" <>)
+                      (find-files man ".*"))
 
-              (install-file "dehydrated" bin)
-              (with-directory-excursion bin
-                (patch-shebang "dehydrated" (list bash))
+            (install-file "dehydrated" bin)
+            (with-directory-excursion bin
+              (patch-shebang "dehydrated" (list bash))
 
-                ;; Do not try to write to the store.
-                (substitute* "dehydrated"
-                  (("SCRIPTDIR=\"\\$.*\"") "SCRIPTDIR=~/.dehydrated"))
+              ;; Do not try to write to the store.
+              (substitute* "dehydrated"
+                (("SCRIPTDIR=\"\\$.*\"") "SCRIPTDIR=~/.dehydrated"))
 
-                (setenv "PATH" bash)
-                (wrap-program "dehydrated"
-                  `("PATH" ":" prefix
-                    ,(map (lambda (dir)
-                            (string-append dir "/bin"))
-                          (map (lambda (input)
-                                 (assoc-ref %build-inputs input))
-                               '("coreutils"
-                                 "curl"
-                                 "diffutils"
-                                 "gawk"
-                                 "grep"
-                                 "openssl"
-                                 "sed"))))))))))
-      (inputs
-       (list bash
-             coreutils
-             curl
-             diffutils
-             gawk
-             grep
-             openssl
-             sed))
-      (native-inputs
-       (list gzip))
-      ;; The following definition is copied from the cURL package to prevent a
-      ;; cycle between the curl and tls modules.
-      (native-search-paths
-       (list (search-path-specification
-              (variable "CURL_CA_BUNDLE")
-              (file-type 'regular)
-              (separator #f)
-              (files '("etc/ssl/certs/ca-certificates.crt")))))
-      (home-page "https://dehydrated.io/";)
-      (synopsis "ACME client implemented as a shell script")
-      (description "Dehydrated is a client for obtaining certificates from an
+              (setenv "PATH" bash)
+              (wrap-program "dehydrated"
+                `("PATH" ":" prefix
+                  ,(map (lambda (dir)
+                          (string-append dir "/bin"))
+                        (map (lambda (input)
+                               (assoc-ref %build-inputs input))
+                             '("coreutils"
+                               "curl"
+                               "diffutils"
+                               "gawk"
+                               "grep"
+                               "openssl"
+                               "sed"
+                               "util-linux-with-udev"))))))))))
+    (inputs
+     (list bash
+           coreutils
+           curl
+           diffutils
+           gawk
+           grep
+           openssl
+           sed
+           util-linux+udev))
+    (native-inputs
+     (list gzip))
+    ;; The following definition is copied from the cURL package to prevent a
+    ;; cycle between the curl and tls modules.
+    (native-search-paths
+     (list (search-path-specification
+            (variable "CURL_CA_BUNDLE")
+            (file-type 'regular)
+            (separator #f)
+            (files '("etc/ssl/certs/ca-certificates.crt")))))
+    (home-page "https://dehydrated.io/";)
+    (synopsis "ACME client implemented as a shell script")
+    (description "Dehydrated is a client for obtaining certificates from an
 ACME server (such as Let's Encrypt) implemented as a relatively simple Bash
 script.")
-      (license license:expat))))
+    (license license:expat)))
 
 (define-public go-github-com-certifi-gocertifi
   (let ((commit "a5e0173ced670013bfb649c7e806bc9529c986ec")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]