mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: sudo: Use gexps and remove input labels.
* gnu/packages/admin.scm (sudo)[arguments]: Use gexps; use ‘search-input-file’ rather than ‘assoc-ref’. [inputs]: Remove labels. Change-Id: I0ea13751c5e34d1ad14035e8c2b8e7e4a7d5f8e1
This commit is contained in:
parent
79726a0507
commit
432a6ece6b
1 changed files with 62 additions and 61 deletions
|
@ -2059,9 +2059,9 @@ (define-public sudo
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(outputs (list "out"))
|
(outputs (list "out"))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
(list #:configure-flags
|
||||||
(list (string-append "--docdir=" (assoc-ref %outputs "out")
|
#~(list (string-append "--docdir=" #$output
|
||||||
"/share/doc/" ,name "-" ,version)
|
"/share/doc/" #$name "-" #$version)
|
||||||
|
|
||||||
"--with-logpath=/var/log/sudo.log"
|
"--with-logpath=/var/log/sudo.log"
|
||||||
"--with-rundir=/var/run/sudo" ; must be cleaned up at boot time
|
"--with-rundir=/var/run/sudo" ; must be cleaned up at boot time
|
||||||
|
@ -2071,14 +2071,14 @@ (define-public sudo
|
||||||
;; 'visudo.c' expects _PATH_MV to be defined, but glibc doesn't
|
;; 'visudo.c' expects _PATH_MV to be defined, but glibc doesn't
|
||||||
;; provide it.
|
;; provide it.
|
||||||
(string-append "CPPFLAGS=-D_PATH_MV=\\\""
|
(string-append "CPPFLAGS=-D_PATH_MV=\\\""
|
||||||
(assoc-ref %build-inputs "coreutils")
|
(search-input-file %build-inputs "/bin/mv")
|
||||||
"/bin/mv\\\"")
|
"\\\"")
|
||||||
|
|
||||||
;; When cross-compiling, assume we have a working 'snprintf' and
|
;; When cross-compiling, assume we have a working 'snprintf' and
|
||||||
;; 'vsnprintf' (which we do, when using glibc). The default
|
;; 'vsnprintf' (which we do, when using glibc). The default
|
||||||
;; choice fails with undefined references to 'sudo_snprintf' &
|
;; choice fails with undefined references to 'sudo_snprintf' &
|
||||||
;; co. when linking.
|
;; co. when linking.
|
||||||
,@(if (%current-target-system)
|
#$@(if (%current-target-system)
|
||||||
'("ac_cv_have_working_snprintf=yes"
|
'("ac_cv_have_working_snprintf=yes"
|
||||||
"ac_cv_have_working_vsnprintf=yes")
|
"ac_cv_have_working_vsnprintf=yes")
|
||||||
'()))
|
'()))
|
||||||
|
@ -2087,7 +2087,7 @@ (define-public sudo
|
||||||
#:parallel-build? #f
|
#:parallel-build? #f
|
||||||
|
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-before 'configure 'pre-configure
|
(add-before 'configure 'pre-configure
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "src/sudo_usage.h.in"
|
(substitute* "src/sudo_usage.h.in"
|
||||||
|
@ -2095,13 +2095,15 @@ (define-public sudo
|
||||||
;; unduly retain references, and also because the
|
;; unduly retain references, and also because the
|
||||||
;; CPPFLAGS above would close the string literal
|
;; CPPFLAGS above would close the string literal
|
||||||
;; prematurely.
|
;; prematurely.
|
||||||
(("@CONFIGURE_ARGS@") "\"\""))
|
(("@CONFIGURE_ARGS@")
|
||||||
|
"\"\""))
|
||||||
(substitute* (find-files "." "Makefile\\.in")
|
(substitute* (find-files "." "Makefile\\.in")
|
||||||
;; Allow installation as non-root.
|
;; Allow installation as non-root.
|
||||||
(("-o [[:graph:]]+ -g [[:graph:]]+")
|
(("-o [[:graph:]]+ -g [[:graph:]]+")
|
||||||
"")
|
"")
|
||||||
;; Don't try to create /etc/sudoers.
|
;; Don't try to create /etc/sudoers.
|
||||||
(("^install: (.*)install-sudoers(.*)" _ before after)
|
(("^install: (.*)install-sudoers(.*)" _ before
|
||||||
|
after)
|
||||||
(string-append "install: " before after "\n"))
|
(string-append "install: " before after "\n"))
|
||||||
;; Don't try to create /run/sudo.
|
;; Don't try to create /run/sudo.
|
||||||
(("\\$\\(DESTDIR\\)\\$\\(rundir\\)")
|
(("\\$\\(DESTDIR\\)\\$\\(rundir\\)")
|
||||||
|
@ -2125,11 +2127,10 @@ (define-public sudo
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list groff))
|
(list groff))
|
||||||
(inputs
|
(inputs
|
||||||
`(("coreutils" ,coreutils)
|
(append (list coreutils zlib)
|
||||||
,@(if (target-hurd?)
|
(if (target-hurd?)
|
||||||
'()
|
'()
|
||||||
`(("linux-pam" ,linux-pam)))
|
(list linux-pam))))
|
||||||
("zlib" ,zlib)))
|
|
||||||
(home-page "https://www.sudo.ws/")
|
(home-page "https://www.sudo.ws/")
|
||||||
(synopsis "Run commands as root")
|
(synopsis "Run commands as root")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue