diff options
author | Mark H Weaver <mhw@netris.org> | 2015-07-10 14:23:59 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-07-10 23:47:07 -0400 |
commit | 79e09ef2fd6892f7cf8d5af28a7f085f86146819 (patch) | |
tree | f08e0cd05aa722e9bfda92358d331d34640d4c38 /gnu/packages/gettext.scm | |
parent | c2ba49ef8ee1bb72513ecda8f22e29680ab208ef (diff) | |
download | guix-79e09ef2fd6892f7cf8d5af28a7f085f86146819.tar guix-79e09ef2fd6892f7cf8d5af28a7f085f86146819.tar.gz |
gnu: gettext: Update to 0.19.5.
* gnu/packages/patches/gettext-msgunfmt.patch: Remove file.
* gnu-system.am (dist_patch_DATA): Remove it.
* gnu/packages/gettext.scm (gnu-gettext): Update to 0.19.5. Remove patch.
Diffstat (limited to 'gnu/packages/gettext.scm')
-rw-r--r-- | gnu/packages/gettext.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/gettext.scm b/gnu/packages/gettext.scm index 9289946178..6be3093bd6 100644 --- a/gnu/packages/gettext.scm +++ b/gnu/packages/gettext.scm @@ -35,15 +35,14 @@ (define-public gnu-gettext (package (name "gettext") - (version "0.19.4") + (version "0.19.5") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/gettext/gettext-" version ".tar.gz")) (sha256 (base32 - "0gvz86m4cs8bdf3mwmwsyx6lrq4ydfxgadrgd9jlx32z3bnz3jca")) - (patches (list (search-patch "gettext-msgunfmt.patch"))))) + "0fppvj4l9maa9q1swvhnv96hsqxx90vcjbdyjhqpir3ll55q2n0j")))) (build-system gnu-build-system) (inputs `(("expat" ,expat))) |