[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: Depend on 'gettext-minimal' rather than 'gettext' when appro
From: |
guix-commits |
Subject: |
01/02: gnu: Depend on 'gettext-minimal' rather than 'gettext' when appropriate. |
Date: |
Tue, 3 Nov 2020 17:48:31 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit fccc01275dff5be0f9e5efc7cb87e21f6663fb55
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Tue Nov 3 20:41:24 2020 +0100
gnu: Depend on 'gettext-minimal' rather than 'gettext' when appropriate.
* gnu/packages/backup.scm (duplicity)[native-inputs]: Use
GETTEXT-MINIMAL instead of GNU-GETTEXT.
* gnu/packages/mpd.scm (mpdris2)[native-inputs]: Likewise.
* gnu/packages/guile-xyz.scm (nomad)[native-inputs]: Likewise.
(guile-mkdir-p)[native-inputs]: Likewise.
(guile-avahi)[native-inputs]: Remove GNU-GETTEXT, now unneeded.
---
gnu/packages/backup.scm | 2 +-
gnu/packages/guile-xyz.scm | 5 ++---
gnu/packages/mpd.scm | 2 +-
3 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm
index 00abacd..2f8a0da 100644
--- a/gnu/packages/backup.scm
+++ b/gnu/packages/backup.scm
@@ -94,7 +94,7 @@
(base32 "1kg467mxg5a97v1rlv4shk32krgv8ys4nczq4b11av4bp1lgysdc"))))
(build-system python-build-system)
(native-inputs
- `(("gettext" ,gnu-gettext) ; for msgfmt
+ `(("gettext" ,gettext-minimal) ; for msgfmt
("util-linux" ,util-linux) ; setsid command, for the tests
("par2cmdline" ,par2cmdline)
("python-fasteners" ,python-fasteners)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index a8ef627..0b7f3b9 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -3170,7 +3170,7 @@ perform geometrical transforms on JPEG images.")
("guile" ,guile-2.2)
("glib:bin" ,glib "bin")
("texinfo" ,texinfo)
- ("gettext" ,gnu-gettext)
+ ("gettext" ,gettext-minimal)
("perl" ,perl)))
(inputs
`(;; Guile
@@ -4095,7 +4095,6 @@ errors.")
`(("autoconf" ,autoconf)
("automake" ,automake)
("libtool" ,libtool)
- ("gettext" ,gnu-gettext)
("pkg-config" ,pkg-config)
("texinfo" ,texinfo)))
(synopsis "Guile bindings to Avahi")
@@ -4134,7 +4133,7 @@ Discovery (DNS-SD).")
("autoconf-archive" ,autoconf-archive)
("automake" ,automake)
("pkg-config" ,pkg-config)
- ("gettext" ,gnu-gettext)))
+ ("gettext" ,gettext-minimal)))
(inputs `(("guile" ,guile-3.0)))
(synopsis "Implementation of a recursive @code{mkdir} for Guile")
(description
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index 77666de..752eb36 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -408,7 +408,7 @@ other MPD frontends.")
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)
- ("gettext" ,gnu-gettext)
+ ("gettext" ,gettext-minimal)
("which" ,which)
("intltool" ,intltool)))
(synopsis "MPRIS V2.1 support for MPD")