mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: util-linux: Move libraries to separate output.
Fixes <https://bugs.gnu.org/37732>. Reported by Diego Nicola Barbato <dnbarbato@posteo.de>. * gnu/packages/linux.scm (util-linux)[outputs]: Add "lib". [arguments]: Update #:configure-flags and the "move-static-libraries" phase accordingly. Add phases "patch-build-scripts" and "adjust-pkg-config-files". (e2fsprogs, psm, mtd-utils, f2fs-tools, f2fs-tools-1.7, eudev, xfsprogs)[inputs]: Change to the "lib" output of UTIL-LINUX. (btrfs-progs)[inputs]: Remove duplicate UTIL-LINUX inputs and change to use the "lib" output. * gnu/packages/admin.scm (pam-mount)[inputs]: Add UTIL-LINUX:LIB. (testdisk)[inputs]: Change to the "lib" output of UTIL-LINUX. * gnu/packages/android.scm (abootimg)[inputs]: Likewise. * gnu/packages/audio.scm (jack-1)[propagated-inputs]: Likewise. * gnu/packages/bootloaders.scm (syslinux, vboot-utils)[inputs]: Likewise. * gnu/packages/chez.scm (chez-scheme)[inputs]: Likewise. * gnu/packages/cryptsetup.scm (cryptsetup, cryptsetup-static)[inputs]: Likewise. * gnu/packages/databases.scm (postgresql, 4store)[inputs]: Likewise. * gnu/packages/disk.scm (ndctl, gptfdisk, fdisk, gparted, rmlint, volume-key)[inputs]: Likewise. (parted)[inputs]: Likewise. [native-inputs]: Add UTIL-LINUX. * gnu/packages/efi.scm (sbsigntools)[inputs]: Add UTIL-LINUX:LIB. * gnu/packages/engineering.scm (lib3mf)[inputs]: Change to the "lib" output of UTIL-LINUX. * gnu/packages/enlightenment.scm (efl)[propagated-inputs]: Likewise. * gnu/packages/file-systems.scm (glusterfs, jfsutils, zfs)[inputs]: Likewise. * gnu/packages/firmware.scm (ovmf)[inputs]: Likewise. * gnu/packages/fontutils.scm (fontconfig)[propagated-inputs]: Likewise. * gnu/packages/freedesktop.scm (localed)[inputs]: Likewise. * gnu/packages/glib.scm (glib, appstream-glib)[propagated-inputs]: Likewise. * gnu/packages/gnome.scm (tracker, gnome-terminal)[inputs]: Likewise. * gnu/packages/jupyter.scm (xeus)[inputs]: Likewise. * gnu/packages/kde.scm (kpmcore)[inputs]: Likewise. * gnu/packages/kodi.scm (crossguid)[inputs]: Likewise. * gnu/packages/lighting.scm (ola)[inputs]: Likewise. * gnu/packages/music.scm (libgig)[inputs]: Likewise. * gnu/packages/nfs.scm (nfs-utils)[inputs]: Likewise. * gnu/packages/opencog.scm (opencog)[inputs]: Likewise. * gnu/packages/package-management.scm (msitools)[inputs]: Change to the "lib" output of UTIL-LINUX. * gnu/packages/password-utils.scm (pwsafe)[inputs]: Likewise. * gnu/packages/telephony.scm (pjproject)[propagated-inputs]: Likewise. * gnu/packages/rdf.scm (rasqal)[inputs]: Likewise. * gnu/packages/search.scm (xapian)[inputs]: Likewise. * gnu/packages/sssd.scm (sssd)[native-inputs]: Likewise. * gnu/packages/storage.scm (ceph)[inputs]: Add UTIL-LINUX:LIB. * gnu/packages/task-management.scm (taskwarrior)[inputs]: Change to the "lib" output of UTIL-LINUX. * gnu/packages/virtualization.scm (libvirt, xen)[inputs]: Likewise. * gnu/packages/xorg.scm (libsm)[inputs]: Likewise.
This commit is contained in:
parent
3cfe76bec0
commit
bb93042c8b
35 changed files with 91 additions and 63 deletions
|
@ -1717,7 +1717,7 @@ (define-public testdisk
|
|||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("ntfs-3g" ,ntfs-3g)
|
||||
("util-linux" ,util-linux)
|
||||
("util-linux" ,util-linux "lib")
|
||||
("openssl" ,openssl)
|
||||
;; FIXME: add reiserfs.
|
||||
("zlib" ,zlib)
|
||||
|
@ -3561,6 +3561,7 @@ (define-public pam-mount
|
|||
("lvm2" ,lvm2)
|
||||
("openssl" ,openssl)
|
||||
("pcre" ,pcre)
|
||||
("libmount" ,util-linux "lib")
|
||||
("util-linux" ,util-linux)))
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
|
|
|
@ -835,7 +835,7 @@ (define-public abootimg
|
|||
(install-file "abootimg" bin)
|
||||
#t))))))
|
||||
(inputs
|
||||
`(("libblkid" ,util-linux)))
|
||||
`(("libblkid" ,util-linux "lib")))
|
||||
(home-page "https://ac100.grandou.net/abootimg")
|
||||
(synopsis "Tool for manipulating Android Boot Images")
|
||||
(description "This package provides a tool for manipulating old Android
|
||||
|
|
|
@ -1584,7 +1584,7 @@ (define-public jack-1
|
|||
;; uuid.h is included in the JACK type headers
|
||||
;; db.h is included in the libjack metadata headers
|
||||
(propagated-inputs
|
||||
`(("libuuid" ,util-linux)
|
||||
`(("libuuid" ,util-linux "lib")
|
||||
("bdb" ,bdb)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
|
|
|
@ -306,7 +306,7 @@ (define-public syslinux
|
|||
("perl" ,perl)
|
||||
("python-2" ,python-2)))
|
||||
(inputs
|
||||
`(("libuuid" ,util-linux)
|
||||
`(("libuuid" ,util-linux "lib")
|
||||
("mtools" ,mtools)))
|
||||
(arguments
|
||||
`(#:parallel-build? #f
|
||||
|
@ -887,7 +887,7 @@ (define-public vboot-utils
|
|||
("libyaml" ,libyaml)
|
||||
("openssl" ,openssl)
|
||||
("openssl:static" ,openssl "static")
|
||||
("util-linux" ,util-linux)))
|
||||
("util-linux" ,util-linux "lib")))
|
||||
(home-page
|
||||
"https://dev.chromium.org/chromium-os/chromiumos-design-docs/verified-boot")
|
||||
(synopsis "ChromiumOS verified boot utilities")
|
||||
|
|
|
@ -77,7 +77,7 @@ (define-public chez-scheme
|
|||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("ncurses" ,ncurses)
|
||||
("libuuid" ,util-linux)
|
||||
("libuuid" ,util-linux "lib")
|
||||
("libx11" ,libx11)
|
||||
("xorg-rgb" ,xorg-rgb)
|
||||
("nanopass" ,nanopass)
|
||||
|
|
|
@ -62,7 +62,7 @@ (define-public cryptsetup
|
|||
("libgcrypt" ,libgcrypt)
|
||||
("lvm2" ,lvm2) ; device-mapper
|
||||
("popt" ,popt)
|
||||
("util-linux" ,util-linux))) ; libuuid
|
||||
("util-linux" ,util-linux "lib"))) ;libuuid
|
||||
(synopsis "Hard disk encryption tool")
|
||||
(description
|
||||
"LUKS (Linux Unified Key Setup)/Cryptsetup provides a standard on-disk
|
||||
|
@ -142,6 +142,6 @@ (define-public cryptsetup-static
|
|||
("libgcrypt" ,libgcrypt-static)
|
||||
("lvm2" ,lvm2-static)
|
||||
("util-linux" ,util-linux "static")
|
||||
("util-linux" ,util-linux)
|
||||
("util-linux" ,util-linux "lib")
|
||||
("popt" ,popt))))
|
||||
(synopsis "Hard disk encryption tool (statically linked)")))
|
||||
|
|
|
@ -165,7 +165,7 @@ (define-public 4store
|
|||
("avahi" ,avahi)
|
||||
("cyrus-sasl" ,cyrus-sasl)
|
||||
("openssl" ,openssl)
|
||||
("util-linux" ,util-linux)))
|
||||
("util-linux" ,util-linux "lib")))
|
||||
;; http://www.4store.org has been down for a while now.
|
||||
(home-page "https://github.com/4store/4store")
|
||||
(synopsis "Clustered RDF storage and query engine")
|
||||
|
@ -974,7 +974,7 @@ (define-public postgresql
|
|||
(invoke "make" "-C" "contrib" "install"))))))
|
||||
(inputs
|
||||
`(("readline" ,readline)
|
||||
("libuuid" ,util-linux)
|
||||
("libuuid" ,util-linux "lib")
|
||||
("openssl" ,openssl)
|
||||
("zlib" ,zlib)))
|
||||
(home-page "https://www.postgresql.org/")
|
||||
|
|
|
@ -100,13 +100,15 @@ (define-public parted
|
|||
(inputs
|
||||
`(("lvm2" ,lvm2)
|
||||
("readline" ,readline)
|
||||
("util-linux" ,util-linux)))
|
||||
("util-linux" ,util-linux "lib")))
|
||||
(native-inputs
|
||||
`(("gettext" ,gettext-minimal)
|
||||
|
||||
;; For the tests.
|
||||
("e2fsprogs" ,e2fsprogs)
|
||||
("perl" ,perl)
|
||||
("python" ,python-2)))
|
||||
("python" ,python-2)
|
||||
("util-linux" ,util-linux)))
|
||||
(home-page "https://www.gnu.org/software/parted/")
|
||||
(synopsis "Disk partition editor")
|
||||
(description
|
||||
|
@ -130,7 +132,7 @@ (define-public fdisk
|
|||
(inputs
|
||||
`(("gettext" ,gettext-minimal)
|
||||
("guile" ,guile-1.8)
|
||||
("util-linux" ,util-linux)
|
||||
("util-linux" ,util-linux "lib")
|
||||
("parted" ,parted)))
|
||||
;; The build neglects to look for its own headers in its own tree. A next
|
||||
;; release should fix this, but may never come: GNU fdisk looks abandoned.
|
||||
|
@ -171,7 +173,7 @@ (define-public gptfdisk
|
|||
`(("gettext" ,gettext-minimal)
|
||||
("ncurses" ,ncurses)
|
||||
("popt" ,popt)
|
||||
("util-linux" ,util-linux))) ; libuuid
|
||||
("util-linux" ,util-linux "lib"))) ;libuuid
|
||||
(arguments
|
||||
`(#:test-target "test"
|
||||
#:phases
|
||||
|
@ -359,7 +361,7 @@ (define-public gparted
|
|||
;; as '/dev/disk/by-id'
|
||||
`(#:tests? #f))
|
||||
(inputs
|
||||
`(("util-linux" ,util-linux)
|
||||
`(("util-linux" ,util-linux "lib")
|
||||
("parted" ,parted)
|
||||
("glib" ,glib)
|
||||
("gtkmm" ,gtkmm)
|
||||
|
@ -587,7 +589,7 @@ (define-public volume-key
|
|||
(inputs
|
||||
`(("cryptsetup" ,cryptsetup)
|
||||
("nss" ,nss)
|
||||
("libblkid" ,util-linux)
|
||||
("libblkid" ,util-linux "lib")
|
||||
("lvm2" ,lvm2) ; for "-ldevmapper"
|
||||
("glib" ,glib)
|
||||
("gpgme" ,gpgme)))
|
||||
|
@ -640,7 +642,7 @@ (define-public ndctl
|
|||
("json-c" ,json-c)
|
||||
("keyutils" ,keyutils)
|
||||
("kmod" ,kmod)
|
||||
("util-linux" ,util-linux)))
|
||||
("util-linux" ,util-linux "lib")))
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list "--disable-asciidoctor" ; use docbook-xsl instead
|
||||
|
@ -809,7 +811,7 @@ (define-public rmlint
|
|||
("libelf" ,libelf)
|
||||
("elfutils" ,elfutils)
|
||||
("json-glib" ,json-glib)
|
||||
("libblkid" ,util-linux)))
|
||||
("libblkid" ,util-linux "lib")))
|
||||
(home-page "https://rmlint.rtfd.org")
|
||||
(synopsis "Remove duplicates and other lint from the file system")
|
||||
(description "@command{rmlint} finds space waste and other broken things
|
||||
|
|
|
@ -113,6 +113,7 @@ (define-public sbsigntools
|
|||
("util-linux" ,util-linux))) ; getopt
|
||||
(inputs
|
||||
`(("gnu-efi" ,gnu-efi)
|
||||
("libuuid" ,util-linux "lib")
|
||||
("openssl" ,openssl)))
|
||||
(synopsis "EFI signing tools")
|
||||
(description "This package provides tools for signing EFI binaries.")
|
||||
|
|
|
@ -2149,7 +2149,7 @@ (define-public lib3mf
|
|||
(native-inputs
|
||||
`(("googletest-source" ,(package-source googletest))))
|
||||
(inputs
|
||||
`(("libuuid" ,util-linux)))
|
||||
`(("libuuid" ,util-linux "lib")))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
|
|
@ -134,7 +134,7 @@ (define-public efl
|
|||
("lz4" ,lz4)
|
||||
("openssl" ,openssl)
|
||||
("pulseaudio" ,pulseaudio)
|
||||
("util-linux" ,util-linux)
|
||||
("util-linux" ,util-linux "lib")
|
||||
("wayland" ,wayland)
|
||||
("zlib" ,zlib)))
|
||||
(arguments
|
||||
|
|
|
@ -127,7 +127,7 @@ (define-public jfsutils
|
|||
"jfsutils-include-systypes.patch"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("util-linux" ,util-linux)))
|
||||
`(("util-linux" ,util-linux "lib")))
|
||||
(home-page "http://jfs.sourceforge.net/home.html")
|
||||
(synopsis "Utilities for managing JFS file systems")
|
||||
(description
|
||||
|
@ -271,7 +271,7 @@ (define-public glusterfs
|
|||
("fuse", fuse)
|
||||
("openssl" ,openssl)
|
||||
("liburcu" ,liburcu)
|
||||
("libuuid" ,util-linux)
|
||||
("libuuid" ,util-linux "lib")
|
||||
("libxml2" ,libxml2)
|
||||
("readline" ,readline)
|
||||
("zlib" ,zlib)
|
||||
|
@ -503,7 +503,7 @@ (define-public zfs
|
|||
("openssl" ,openssl)
|
||||
("python" ,python)
|
||||
("python-cffi" ,python-cffi)
|
||||
("util-linux" ,util-linux)
|
||||
("util-linux" ,util-linux "lib")
|
||||
("zlib" ,zlib)))
|
||||
(home-page "https://zfsonlinux.org/")
|
||||
(synopsis "Native ZFS on Linux")
|
||||
|
|
|
@ -253,7 +253,7 @@ (define-public ovmf
|
|||
("gcc" ,gcc-5)
|
||||
("nasm" ,nasm)
|
||||
("python-2" ,python-2)
|
||||
("util-linux" ,util-linux)))
|
||||
("util-linux" ,util-linux "lib")))
|
||||
(arguments
|
||||
`(#:tests? #f ; No check target.
|
||||
#:phases
|
||||
|
|
|
@ -308,7 +308,7 @@ (define-public fontconfig
|
|||
;; In Requires or Requires.private of fontconfig.pc.
|
||||
(propagated-inputs `(("expat" ,expat)
|
||||
("freetype" ,freetype)
|
||||
("libuuid" ,util-linux)))
|
||||
("libuuid" ,util-linux "lib")))
|
||||
(inputs `(("gs-fonts" ,gs-fonts)))
|
||||
(native-inputs
|
||||
`(("gperf" ,gperf)
|
||||
|
|
|
@ -476,7 +476,7 @@ (define (source-file regexp)
|
|||
(find-files ".." "^(kbd-model-map|language-fallback-map)$"))
|
||||
#t)))))))
|
||||
(native-inputs (package-native-inputs elogind))
|
||||
(inputs `(("libmount" ,util-linux)
|
||||
(inputs `(("libmount" ,util-linux "lib")
|
||||
("xkeyboard-config" ,xkeyboard-config)
|
||||
("kbd" ,kbd)
|
||||
,@(package-inputs elogind)))
|
||||
|
|
|
@ -188,7 +188,7 @@ (define glib
|
|||
`(("pcre" ,pcre) ; in the Requires.private field of glib-2.0.pc
|
||||
("libffi" ,libffi) ; in the Requires.private field of gobject-2.0.pc
|
||||
;; These are in the Requires.private field of gio-2.0.pc
|
||||
("util-linux" ,util-linux) ; for libmount
|
||||
("util-linux" ,util-linux "lib") ;for libmount
|
||||
("libselinux" ,libselinux)
|
||||
("zlib" ,zlib)))
|
||||
(inputs
|
||||
|
@ -931,7 +931,7 @@ (define-public appstream-glib
|
|||
(propagated-inputs
|
||||
`(("gcab" ,gcab) ; for .pc file
|
||||
("gdk-pixbuf" ,gdk-pixbuf) ; for .pc file
|
||||
("util-linux" ,util-linux))) ; for .pc file
|
||||
("libuuid" ,util-linux "lib"))) ; for .pc file
|
||||
(inputs
|
||||
`(("glib" ,glib)
|
||||
("gperf" ,gperf)
|
||||
|
|
|
@ -3832,7 +3832,7 @@ (define-public gnome-terminal
|
|||
("vte" ,vte)
|
||||
("gnutls" ,gnutls)
|
||||
("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
|
||||
("util-linux" ,util-linux)
|
||||
("util-linux" ,util-linux "lib")
|
||||
("vala" ,vala)))
|
||||
(home-page "https://wiki.gnome.org/Apps/Terminal")
|
||||
(synopsis "Terminal emulator")
|
||||
|
@ -7291,7 +7291,7 @@ (define-public tracker
|
|||
("openjpeg" ,openjpeg-1)
|
||||
("libseccomp" ,libseccomp)
|
||||
("libsoup" ,libsoup)
|
||||
("libuuid" ,util-linux)
|
||||
("libuuid" ,util-linux "lib")
|
||||
("network-manager" ,network-manager)))
|
||||
(synopsis "Metadata database, indexer and search tool")
|
||||
(home-page "https://wiki.gnome.org/Projects/Tracker")
|
||||
|
|
|
@ -171,7 +171,7 @@ (define-public xeus
|
|||
("cppzmq" ,cppzmq)
|
||||
("zeromq" ,zeromq)
|
||||
("openssl" ,openssl)
|
||||
("util-linux" ,util-linux))) ;libuuid
|
||||
("util-linux" ,util-linux "lib"))) ;libuuid
|
||||
(home-page "https://quantstack.net/xeus")
|
||||
(synopsis "C++ implementation of the Jupyter Kernel protocol")
|
||||
(description
|
||||
|
|
|
@ -472,7 +472,7 @@ (define-public kpmcore
|
|||
("kwidgetsaddons" ,kwidgetsaddons)
|
||||
("qtbase" ,qtbase)
|
||||
("qca" ,qca)
|
||||
("util-linux" ,util-linux)))
|
||||
("util-linux" ,util-linux "lib")))
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
(synopsis "Library for managing partitions")
|
||||
(description "Library for managing partitions.")
|
||||
|
|
|
@ -121,7 +121,7 @@ (define-public crossguid
|
|||
(string-append out "/lib"))
|
||||
#t))))))
|
||||
(inputs
|
||||
`(("util-linux" ,util-linux)))
|
||||
`(("libuuid" ,util-linux "lib")))
|
||||
(synopsis "Lightweight universal identifier library")
|
||||
(description "CrossGuid is a minimal GUID/UUID
|
||||
generator library for C++.")
|
||||
|
|
|
@ -57,7 +57,7 @@ (define-public ola
|
|||
`(("libftdi" ,libftdi)
|
||||
("libmicrohttpd" ,libmicrohttpd)
|
||||
("libusb" ,libusb)
|
||||
("libuuid" ,util-linux)
|
||||
("libuuid" ,util-linux "lib")
|
||||
("zlib" ,zlib)))
|
||||
(propagated-inputs
|
||||
;; Ola 0.10.5 only supports protobuf 2.x, and building it with 3.x breaks.
|
||||
|
|
|
@ -1118,19 +1118,33 @@ (define-public util-linux
|
|||
(("build_kill=yes") "build_kill=no"))
|
||||
#t))))
|
||||
(build-system gnu-build-system)
|
||||
(outputs '("out"
|
||||
"static")) ;>2 MiB of static .a libraries
|
||||
(outputs '("out" ;6.4 MiB executables and documentation
|
||||
"lib" ;8.8 MiB shared libraries, headers and locales
|
||||
"static")) ;2.9 MiB static .a libraries
|
||||
(arguments
|
||||
`(#:configure-flags (list "--disable-use-tty-group"
|
||||
"--enable-fs-paths-default=/run/current-system/profile/sbin"
|
||||
;; Don't try to chown root:root mount and umount
|
||||
"--disable-makeinstall-chown"
|
||||
"--localstatedir=/var"
|
||||
(string-append "--localedir="
|
||||
(assoc-ref %outputs "lib")
|
||||
"/share/locale")
|
||||
;; Install completions where our
|
||||
;; bash-completion package expects them.
|
||||
(string-append "--with-bashcompletiondir="
|
||||
(assoc-ref %outputs "out")
|
||||
"/etc/bash_completion.d"))
|
||||
#:phases (modify-phases %standard-phases
|
||||
(add-before 'configure 'patch-build-scripts
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(substitute* "configure"
|
||||
;; The build system assumes that we want to install
|
||||
;; libraries below $exec_prefix when $libdir does not
|
||||
;; match any of the "usual" locations. Fix that.
|
||||
(("usrlib_execdir='\\$\\{exec_prefix\\}'\\$libdir")
|
||||
"usrlib_execdir=$libdir"))
|
||||
#t))
|
||||
(add-before 'build 'set-umount-file-name
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
;; Tell 'eject' the right file name of 'umount'.
|
||||
|
@ -1150,10 +1164,12 @@ (define-public util-linux
|
|||
#t)))
|
||||
(add-after 'install 'move-static-libraries
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out"))
|
||||
(let ((lib (assoc-ref outputs "lib"))
|
||||
(static (assoc-ref outputs "static")))
|
||||
|
||||
;; Move static libraries to the "static" output.
|
||||
(mkdir-p (string-append static "/lib"))
|
||||
(with-directory-excursion out
|
||||
(with-directory-excursion lib
|
||||
(for-each (lambda (file)
|
||||
(rename-file file
|
||||
(string-append static "/"
|
||||
|
@ -1166,7 +1182,16 @@ (define-public util-linux
|
|||
(substitute* (find-files "lib" "\\.la$")
|
||||
(("old_library=.*") "old_library=''\n")))
|
||||
|
||||
#t))))))
|
||||
#t)))
|
||||
(add-after 'install 'adjust-pkg-config-files
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((lib (assoc-ref outputs "lib")))
|
||||
;; Drop the unused "prefix=" and "exec_prefix=" variables from
|
||||
;; the pkg-config files to avoid a cyclic reference on "out".
|
||||
(substitute* (find-files (string-append lib "/lib/pkgconfig")
|
||||
"\\.pc$")
|
||||
(("^(exec_)?prefix=.*") "")))
|
||||
#t)))))
|
||||
(inputs `(("zlib" ,zlib)
|
||||
("ncurses" ,ncurses)
|
||||
|
||||
|
@ -1333,7 +1358,7 @@ (define-public e2fsprogs
|
|||
(base32
|
||||
"00nwl1ppjalxbnx40dsm895r3q793p8nni6n81saj7faj2szdyk5"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs `(("util-linux" ,util-linux)))
|
||||
(inputs `(("util-linux" ,util-linux "lib")))
|
||||
(native-inputs `(("pkg-config" ,pkg-config)
|
||||
("texinfo" ,texinfo) ;for the libext2fs Info manual
|
||||
|
||||
|
@ -2746,7 +2771,7 @@ (define-public eudev
|
|||
;; When linked against libblkid, eudev can populate /dev/disk/by-label
|
||||
;; and similar; it also installs the '60-persistent-storage.rules' file,
|
||||
;; which contains the rules to do that.
|
||||
`(("util-linux" ,util-linux) ;for blkid
|
||||
`(("util-linux" ,util-linux "lib") ;for blkid
|
||||
("kmod" ,kmod)))
|
||||
(home-page "https://wiki.gentoo.org/wiki/Project:Eudev")
|
||||
(synopsis "Userspace device management")
|
||||
|
@ -4048,11 +4073,9 @@ (define-public btrfs-progs
|
|||
#:test-target "test"
|
||||
#:parallel-tests? #f)) ; tests fail when run in parallel
|
||||
(inputs `(("e2fsprogs" ,e2fsprogs)
|
||||
("libblkid" ,util-linux)
|
||||
("libblkid:static" ,util-linux "static")
|
||||
("libuuid" ,util-linux)
|
||||
("libuuid:static" ,util-linux "static")
|
||||
("lzo" ,lzo)
|
||||
("util-linux:lib" ,util-linux "lib") ;for libblkid and libuuid
|
||||
("util-linux:static" ,util-linux "static") ;ditto
|
||||
("zlib" ,zlib)
|
||||
("zlib:static" ,zlib "static")
|
||||
("zstd" ,zstd "lib")
|
||||
|
@ -4182,7 +4205,7 @@ (define-public f2fs-tools-1.7
|
|||
("libtool" ,libtool)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("libuuid" ,util-linux)
|
||||
`(("libuuid" ,util-linux "lib")
|
||||
("libselinux" ,libselinux)))
|
||||
(home-page "https://f2fs.wiki.kernel.org/")
|
||||
(synopsis "Userland tools for f2fs")
|
||||
|
@ -4208,7 +4231,7 @@ (define-public f2fs-tools
|
|||
(base32
|
||||
"0z9c0y3qq75iyqknl5k0v7v46l8c3pcifpqb0yqalrs24blkm7dk"))))
|
||||
(inputs
|
||||
`(("libuuid" ,util-linux)))))
|
||||
`(("libuuid" ,util-linux "lib")))))
|
||||
|
||||
(define-public freefall
|
||||
(package
|
||||
|
@ -4877,7 +4900,7 @@ (define-public mtd-utils
|
|||
("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("acl" ,acl) ; extended attributes (xattr)
|
||||
("libuuid" ,util-linux)
|
||||
("libuuid" ,util-linux "lib")
|
||||
("lzo" ,lzo)
|
||||
("openssl" ,openssl) ; optional crypto support
|
||||
("zlib" ,zlib)
|
||||
|
@ -5655,7 +5678,7 @@ (define-public psm
|
|||
"psm-disable-memory-stats.patch"))))
|
||||
(build-system gnu-build-system)
|
||||
(outputs '("out" "debug"))
|
||||
(inputs `(("libuuid" ,util-linux)))
|
||||
(inputs `(("libuuid" ,util-linux "lib")))
|
||||
(arguments
|
||||
'(#:make-flags `("PSM_USE_SYS_UUID=1" "CC=gcc" "WERROR="
|
||||
,(string-append "INSTALL_PREFIX=" %output)
|
||||
|
@ -6032,7 +6055,7 @@ (define-public xfsprogs
|
|||
(native-inputs
|
||||
`(("gettext" ,gettext-minimal)))
|
||||
(inputs
|
||||
`(("libuuid" ,util-linux)
|
||||
`(("libuuid" ,util-linux "lib")
|
||||
("python" ,python-wrapper)))
|
||||
(home-page "https://xfs.wiki.kernel.org/")
|
||||
(synopsis "XFS file system tools")
|
||||
|
|
|
@ -2252,7 +2252,7 @@ (define-public libgig
|
|||
"1zs5yy124bymfyapsnljr6rv2lnn5inwchm0xnwiw44b2d39l8hn"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("libuuid" ,util-linux)
|
||||
`(("libuuid" ,util-linux "lib")
|
||||
("libsndfile" ,libsndfile)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
|
|
|
@ -113,7 +113,7 @@ (define-public nfs-utils
|
|||
("rpcsvc-proto" ,rpcsvc-proto) ;for 'rpcgen'
|
||||
("sqlite" ,sqlite)
|
||||
("lvm2" ,lvm2)
|
||||
("util-linux" ,util-linux)
|
||||
("util-linux" ,util-linux "lib")
|
||||
("mit-krb5" ,mit-krb5)
|
||||
("libtirpc" ,libtirpc)))
|
||||
(native-inputs
|
||||
|
|
|
@ -235,7 +235,7 @@ (define-public opencog
|
|||
("cogutil" ,cogutil)
|
||||
("gmp" ,gmp)
|
||||
("guile" ,guile-2.2)
|
||||
("libuuid" ,util-linux)
|
||||
("libuuid" ,util-linux "lib")
|
||||
("link-grammar" ,link-grammar)))
|
||||
(native-inputs
|
||||
`(("cxxtest" ,cxxtest)
|
||||
|
|
|
@ -939,7 +939,7 @@ (define-public msitools
|
|||
("glib" ,glib)
|
||||
("libgsf" ,libgsf)
|
||||
("libxml2" ,libxml2)
|
||||
("uuid" ,util-linux)))
|
||||
("uuid" ,util-linux "lib")))
|
||||
(home-page "https://wiki.gnome.org/msitools")
|
||||
(synopsis "Windows Installer file manipulation tool")
|
||||
(description
|
||||
|
|
|
@ -209,7 +209,7 @@ (define-public pwsafe
|
|||
("zip" ,zip)))
|
||||
(inputs `(("curl" ,curl)
|
||||
("file" ,file)
|
||||
("libuuid" ,util-linux)
|
||||
("libuuid" ,util-linux "lib")
|
||||
("libxt" ,libxt)
|
||||
("libxtst" ,libxtst)
|
||||
("openssl" ,openssl)
|
||||
|
|
|
@ -217,7 +217,7 @@ (define-public rasqal
|
|||
("libxml2" ,libxml2)
|
||||
("mpfr" ,mpfr)
|
||||
("pcre" ,pcre)
|
||||
("util-linux" ,util-linux)))
|
||||
("util-linux" ,util-linux "lib")))
|
||||
(propagated-inputs
|
||||
`(("raptor2" ,raptor2))) ; stipulated by rasqal.pc
|
||||
(arguments
|
||||
|
|
|
@ -59,7 +59,7 @@ (define-public xapian
|
|||
(base32 "0ja95vn0lkf6qkjhg2blkx306i10hg4fr8wlrhalmly93307lnlp"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs `(("zlib" ,zlib)
|
||||
("util-linux" ,util-linux)))
|
||||
("util-linux" ,util-linux "lib")))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
|
|
@ -164,7 +164,7 @@ (define-public sssd
|
|||
("libxml2" ,libxml2) ; for xmllint
|
||||
("libxslt" ,libxslt)
|
||||
("pkg-config" ,pkg-config)
|
||||
("util-linux" ,util-linux))) ; for uuid.h, reqired for KCM
|
||||
("util-linux" ,util-linux "lib"))) ;for uuid.h, reqired for KCM
|
||||
(home-page "https://pagure.io/SSSD/sssd/")
|
||||
(synopsis "System security services daemon")
|
||||
(description "SSSD is a system daemon. Its primary function is to provide
|
||||
|
|
|
@ -231,6 +231,7 @@ (define-public ceph
|
|||
("snappy" ,snappy)
|
||||
("udev" ,eudev)
|
||||
("util-linux" ,util-linux)
|
||||
("util-linux:lib" ,util-linux "lib")
|
||||
("xfsprogs" ,xfsprogs)
|
||||
("zlib" ,zlib)))
|
||||
(home-page "https://ceph.com/")
|
||||
|
|
|
@ -40,7 +40,7 @@ (define-public taskwarrior
|
|||
(inputs
|
||||
`(("gnutls" ,gnutls)
|
||||
("lua" ,lua)
|
||||
("util-linux" ,util-linux)))
|
||||
("util-linux" ,util-linux "lib")))
|
||||
(arguments
|
||||
`(#:tests? #f ; No tests implemented.
|
||||
#:phases
|
||||
|
|
|
@ -624,7 +624,7 @@ (define-public pjproject
|
|||
("libsrtp" ,libsrtp)
|
||||
("gnutls" ,gnutls)
|
||||
("resample", resample)
|
||||
("util-linux" ,util-linux)))
|
||||
("util-linux" ,util-linux "lib")))
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
|
|
|
@ -480,7 +480,7 @@ (define-public libvirt
|
|||
("libpcap" ,libpcap)
|
||||
("libnl" ,libnl)
|
||||
("libtirpc" ,libtirpc) ;for <rpc/rpc.h>
|
||||
("libuuid" ,util-linux)
|
||||
("libuuid" ,util-linux "lib")
|
||||
("lvm2" ,lvm2) ;for libdevmapper
|
||||
("curl" ,curl)
|
||||
("openssl" ,openssl)
|
||||
|
@ -1336,7 +1336,7 @@ (define (filter-environment! filter-predicate
|
|||
("pixman" ,pixman)
|
||||
("qemu" ,qemu-minimal)
|
||||
("seabios" ,seabios)
|
||||
("util-linux" ,util-linux) ; uuid
|
||||
("util-linux" ,util-linux "lib") ; uuid
|
||||
; TODO: ocaml-findlib, ocaml-nox.
|
||||
("xz" ,xz) ; for liblzma
|
||||
("zlib" ,zlib)))
|
||||
|
|
|
@ -1233,7 +1233,7 @@ (define-public libsm
|
|||
`(("libice" ,libice))) ; SMlib.h includes ICElib.h
|
||||
(inputs
|
||||
`(("xtrans" ,xtrans)
|
||||
("util-linux" ,util-linux)))
|
||||
("libuuid" ,util-linux "lib")))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(home-page "https://www.x.org/wiki/")
|
||||
|
|
Loading…
Reference in a new issue