guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: util-linux: Rename udev variant.


From: guix-commits
Subject: branch master updated: gnu: util-linux: Rename udev variant.
Date: Wed, 08 Jan 2020 18:14:12 -0500

This is an automated email from the git hooks/post-receive script.

mbakke pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 60a366e  gnu: util-linux: Rename udev variant.
60a366e is described below

commit 60a366ec7aa777d61cd349fad5f9f32cbdb642dc
Author: Marius Bakke <address@hidden>
AuthorDate: Thu Jan 9 00:13:50 2020 +0100

    gnu: util-linux: Rename udev variant.
    
    Some packages propagate util-linux, so make sure that that manifests and
    similar choose the same version to avoid conflicts.
    
    * gnu/packages/linux.scm (util-linux)[properties]: Remove.
    (util-linux+udev)[name]: Set to "util-linux-with-udev".
    [properties]: Remove.
---
 gnu/packages/linux.scm | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 3c720f3..ee571f1 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1182,9 +1182,6 @@ providing the system administrator with some help in 
common tasks.")
 utilities.  It provides dmesg and includes tools for working with file systems,
 block devices, UUIDs, TTYs, and many other tools.")
 
-    ;; Hide the package so that end users get the udev-enabled variant below.
-    (properties '((hidden? . #t)))
-
     ;; Note that util-linux doesn't use the same license for all the
     ;; code.  GPLv2+ is the default license for a code without an
     ;; explicitly defined license.
@@ -1197,10 +1194,10 @@ block devices, UUIDs, TTYs, and many other tools.")
 (define-public util-linux+udev
   (package/inherit
    util-linux
+   (name "util-linux-with-udev")
    (inputs
     `(("udev" ,eudev)
-      ,@(package-inputs util-linux)))
-   (properties (alist-delete 'hidden? (package-properties util-linux)))))
+      ,@(package-inputs util-linux)))))
 
 (define-public ddate
   (package



reply via email to

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