gnu: shepherd: Update to 0.3.
* gnu/packages/admin.scm (shepherd): Update to 0.3.
This commit is contained in:
parent
9a8b9eb8de
commit
133056bd74
|
@ -62,6 +62,7 @@
|
||||||
#:use-module (gnu packages autotools))
|
#:use-module (gnu packages autotools))
|
||||||
|
|
||||||
(define-public dmd
|
(define-public dmd
|
||||||
|
;; Deprecated. Kept around "just in case."
|
||||||
(let ((base-version "0.2")
|
(let ((base-version "0.2")
|
||||||
(patch-level "01"))
|
(patch-level "01"))
|
||||||
(package
|
(package
|
||||||
|
@ -101,30 +102,29 @@ interface and is based on GNU Guile.")
|
||||||
(home-page "http://www.gnu.org/software/dmd/"))))
|
(home-page "http://www.gnu.org/software/dmd/"))))
|
||||||
|
|
||||||
(define-public shepherd
|
(define-public shepherd
|
||||||
(let ((commit "bc7757cd1f3d0a162e765d0ecebde052765a6a23"))
|
|
||||||
(package
|
(package
|
||||||
(inherit dmd)
|
|
||||||
(name "shepherd")
|
(name "shepherd")
|
||||||
(version (string-append "0.2-1." (string-take commit 7)))
|
(version "0.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method url-fetch)
|
||||||
(uri (git-reference
|
(uri (string-append "ftp://alpha.gnu.org/gnu/dmd/shepherd-"
|
||||||
(url "git://git.savannah.gnu.org/shepherd.git")
|
version ".tar.gz"))
|
||||||
(commit commit)))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0ks4yy6ji1s7id09im5jcwrr4y5ss3244hcy7v504cwf21gdkdgq"))))
|
"13mcy2131h7hggqvxbfxyrnbz46aaiaq2agng3x3f789a78n4mnn"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases (modify-phases %standard-phases
|
'(#:configure-flags '("--localstatedir=/var")))
|
||||||
(add-after 'unpack 'autoreconf
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||||
(lambda _
|
(inputs `(("guile" ,guile-2.0)))
|
||||||
(zero? (system* "autoreconf" "-vfi")))))
|
(synopsis "System service manager")
|
||||||
,@(package-arguments dmd)))
|
(description
|
||||||
(native-inputs `(("autoconf" ,(autoconf-wrapper))
|
"The GNU Shepherd is a daemon-managing daemon, meaning that it supervises
|
||||||
("automake" ,automake)
|
the execution of system services, replacing similar functionality found in
|
||||||
("texinfo" ,texinfo)
|
typical init systems. It provides dependency-handling through a convenient
|
||||||
("help2man" ,help2man)
|
interface and is based on GNU Guile.")
|
||||||
,@(package-native-inputs dmd))))))
|
(license license:gpl3+)
|
||||||
|
(home-page "http://www.gnu.org/software/shepherd/")))
|
||||||
|
|
||||||
(define-public dfc
|
(define-public dfc
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue