mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
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.
This commit is contained in:
parent
f52ddd6236
commit
5743ba4979
1 changed files with 9 additions and 6 deletions
|
@ -17,6 +17,7 @@
|
||||||
(define-module (gnu packages debian)
|
(define-module (gnu packages debian)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
|
@ -112,15 +113,17 @@ (define-public ubuntu-keyring
|
||||||
(define-public debootstrap
|
(define-public debootstrap
|
||||||
(package
|
(package
|
||||||
(name "debootstrap")
|
(name "debootstrap")
|
||||||
(version "1.0.101")
|
(version "1.0.106")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "mirror://debian/pool/main/d/" name "/"
|
(uri (git-reference
|
||||||
name "_" version ".tar.gz"))
|
(url "https://salsa.debian.org/installer-team/debootstrap.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1p1a81s8hq73byd7256iljdls389x2q7w6srgrgfmx5bl1csnzp3"))))
|
"1fm5bgllcwgwizrqi4sn8p4fpbzhbzgwprrfppfq9hqdzbmlfmnv"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -165,7 +168,7 @@ (define-public debootstrap
|
||||||
`(("binutils" ,binutils)
|
`(("binutils" ,binutils)
|
||||||
("gnupg" ,gnupg)
|
("gnupg" ,gnupg)
|
||||||
("perl" ,perl)))
|
("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")
|
(synopsis "Bootstrap a basic Debian system")
|
||||||
(description "Debootstrap is used to create a Debian base system from
|
(description "Debootstrap is used to create a Debian base system from
|
||||||
scratch, without requiring the availability of @code{dpkg} or @code{apt}.
|
scratch, without requiring the availability of @code{dpkg} or @code{apt}.
|
||||||
|
|
Loading…
Reference in a new issue