mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: gettext: Rename binding to 'gnu-gettext'.
* gnu/packages/gettext.scm (gettext): Rename to...
(gnu-gettext): ... this. This is used to work around the circular
dependency introduced in commit c42a4b7
, which users with a #:renamer
cannot cope with.
* gnu/packages/acl.scm, gnu/packages/attr.scm, gnu/packages/cdrom.scm,
gnu/packages/fdisk.scm, gnu/packages/gkrellm.scm, gnu/packages/glib.scm,
gnu/packages/gnunet.scm, gnu/packages/grub.scm, gnu/packages/linux.scm,
gnu/packages/maths.scm, gnu/packages/nano.scm, gnu/packages/parted.scm,
gnu/packages/system.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/w3m.scm, gnu/packages/wget.scm:
Adjust accordingly.
This commit is contained in:
parent
953ab5030f
commit
1dba64079c
19 changed files with 48 additions and 57 deletions
|
@ -24,7 +24,14 @@
|
|||
#:use-module (guix build-system gnu)
|
||||
#:use-module (gnu packages xml))
|
||||
|
||||
(define-public gettext
|
||||
;; Use that name to avoid clashes with Guile's 'gettext' procedure.
|
||||
;;
|
||||
;; We used to resort to #:renamer on the user side, but that prevented
|
||||
;; circular dependencies involving (gnu packages gettext). This is because
|
||||
;; 'resolve-interface' (as of Guile 2.0.9) iterates eagerly over the used
|
||||
;; module when there's a #:renamer, and that module may be empty at that point
|
||||
;; in case or circular dependencies.
|
||||
(define-public gnu-gettext
|
||||
(package
|
||||
(name "gettext")
|
||||
(version "0.18.3.1")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue