guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: debootstrap: Update to 1.0.106.


From: Efraim Flashner
Subject: 01/01: gnu: debootstrap: Update to 1.0.106.
Date: Sat, 14 Jul 2018 15:52:18 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 5743ba497922d8278929f1accf8e8aff5cc9ea28
Author: Efraim Flashner <address@hidden>
Date:   Sat Jul 14 22:51:14 2018 +0300

    gnu: debootstrap: Update to 1.0.106.
    
    * gnu/packages/debian.scm (debootstrap): Update to 1.0.106.
    [source]: Download from git repository.
    [home-page]: Update to new home-page.
---
 gnu/packages/debian.scm | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm
index e1dd9d1..1974672 100644
--- a/gnu/packages/debian.scm
+++ b/gnu/packages/debian.scm
@@ -17,6 +17,7 @@
 (define-module (gnu packages debian)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix download)
+  #:use-module (guix git-download)
   #:use-module (guix packages)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system trivial)
@@ -112,15 +113,17 @@ contains the archive keys used for that.")
 (define-public debootstrap
   (package
     (name "debootstrap")
-    (version "1.0.101")
+    (version "1.0.106")
     (source
       (origin
-        (method url-fetch)
-        (uri (string-append "mirror://debian/pool/main/d/" name "/"
-                            name "_" version ".tar.gz"))
+        (method git-fetch)
+        (uri (git-reference
+              (url "https://salsa.debian.org/installer-team/debootstrap.git";)
+              (commit version)))
+        (file-name (git-file-name name version))
         (sha256
          (base32
-          "1p1a81s8hq73byd7256iljdls389x2q7w6srgrgfmx5bl1csnzp3"))))
+          "1fm5bgllcwgwizrqi4sn8p4fpbzhbzgwprrfppfq9hqdzbmlfmnv"))))
     (build-system gnu-build-system)
     (arguments
      `(#:phases
@@ -165,7 +168,7 @@ contains the archive keys used for that.")
      `(("binutils" ,binutils)
        ("gnupg" ,gnupg)
        ("perl" ,perl)))
-    (home-page "https://anonscm.debian.org/cgit/d-i/debootstrap.git";)
+    (home-page "https://tracker.debian.org/pkg/debootstrap";)
     (synopsis "Bootstrap a basic Debian system")
     (description "Debootstrap is used to create a Debian base system from
 scratch, without requiring the availability of @code{dpkg} or @code{apt}.



reply via email to

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