2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
|
2014-10-24 02:51:54 +02:00
|
|
|
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
2017-06-29 22:27:55 +02:00
|
|
|
|
;;; Copyright © 2015, 2017 Ricardo Wurmus <rekado@elephly.net>
|
2019-01-05 20:48:37 +01:00
|
|
|
|
;;; Copyright © 2016, 2019 Efraim Flashner <efraim@flashner.co.il>
|
2016-09-25 09:43:17 +02:00
|
|
|
|
;;; Copyright © 2016 Alex Kost <alezost@gmail.com>
|
2017-03-26 11:00:46 +02:00
|
|
|
|
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
2017-04-12 21:17:24 +02:00
|
|
|
|
;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
|
2017-10-30 17:23:46 +01:00
|
|
|
|
;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org>
|
2018-08-10 19:31:43 +02:00
|
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2012-11-24 00:31:26 +01:00
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; This file is part of GNU Guix.
|
2012-11-24 00:31:26 +01:00
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-11-24 00:31:26 +01:00
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-11-24 00:31:26 +01:00
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-11-24 00:31:26 +01:00
|
|
|
|
|
2013-01-18 01:06:24 +01:00
|
|
|
|
(define-module (gnu packages gettext)
|
2015-08-31 08:46:12 +02:00
|
|
|
|
#:use-module ((guix licenses) #:select (gpl2+ gpl3+))
|
2013-01-18 01:06:47 +01:00
|
|
|
|
#:use-module (gnu packages)
|
2012-11-24 00:31:26 +01:00
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix download)
|
2013-11-18 21:11:49 +01:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2015-08-31 08:46:12 +02:00
|
|
|
|
#:use-module (guix build-system perl)
|
|
|
|
|
#:use-module (gnu packages docbook)
|
2016-09-25 09:43:17 +02:00
|
|
|
|
#:use-module (gnu packages emacs)
|
2015-08-31 08:46:12 +02:00
|
|
|
|
#:use-module (gnu packages perl)
|
2016-05-24 21:18:53 +02:00
|
|
|
|
#:use-module (gnu packages tex)
|
2016-09-25 09:43:17 +02:00
|
|
|
|
#:use-module (gnu packages xml)
|
|
|
|
|
#:use-module (guix utils))
|
2012-11-24 00:31:26 +01:00
|
|
|
|
|
2016-09-25 09:33:02 +02:00
|
|
|
|
(define-public gettext-minimal
|
2012-11-24 00:31:26 +01:00
|
|
|
|
(package
|
2016-09-25 09:33:02 +02:00
|
|
|
|
(name "gettext-minimal")
|
2016-08-14 08:54:53 +02:00
|
|
|
|
(version "0.19.8.1")
|
2013-07-08 00:13:15 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://gnu/gettext/gettext-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2017-04-12 21:17:24 +02:00
|
|
|
|
"0hsw28f9q9xaggjlsdp2qmbp2rbd1mp0njzan2ld9kiqwkq2m57z"))
|
2017-10-30 17:23:46 +01:00
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
'(begin
|
|
|
|
|
;; The gnulib test-lock test is prone to writer starvation
|
|
|
|
|
;; with our glibc@2.25, which prefers readers, so disable it.
|
|
|
|
|
;; The gnulib commit b20e8afb0b2 should fix this once
|
|
|
|
|
;; incorporated here.
|
|
|
|
|
(substitute* "gettext-runtime/tests/Makefile.in"
|
|
|
|
|
(("TESTS = test-lock\\$\\(EXEEXT\\)") "TESTS ="))
|
|
|
|
|
(substitute* "gettext-tools/gnulib-tests/Makefile.in"
|
|
|
|
|
(("test-lock\\$\\(EXEEXT\\) ") ""))
|
|
|
|
|
#t))))
|
2012-11-24 00:31:26 +01:00
|
|
|
|
(build-system gnu-build-system)
|
2015-12-15 23:12:20 +01:00
|
|
|
|
(outputs '("out"
|
|
|
|
|
"doc")) ;8 MiB of HTML
|
2013-11-18 21:11:49 +01:00
|
|
|
|
(inputs
|
|
|
|
|
`(("expat" ,expat)))
|
2012-11-24 00:31:26 +01:00
|
|
|
|
(arguments
|
2016-01-05 20:13:57 +01:00
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'check 'patch-tests
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let* ((bash (which "sh")))
|
|
|
|
|
;; Some of the files we're patching are
|
|
|
|
|
;; ISO-8859-1-encoded, so choose it as the default
|
|
|
|
|
;; encoding so the byte encoding is preserved.
|
|
|
|
|
(with-fluids ((%default-port-encoding #f))
|
|
|
|
|
(substitute*
|
|
|
|
|
(find-files "gettext-tools/tests"
|
|
|
|
|
"^(lang-sh|msg(exec|filter)-[0-9])")
|
|
|
|
|
(("#![[:blank:]]/bin/sh")
|
|
|
|
|
(format #f "#!~a" bash)))
|
2014-06-07 00:35:34 +02:00
|
|
|
|
|
2016-01-05 20:13:57 +01:00
|
|
|
|
(substitute* (cons "gettext-tools/src/msginit.c"
|
|
|
|
|
(find-files "gettext-tools/gnulib-tests"
|
|
|
|
|
"posix_spawn"))
|
|
|
|
|
(("/bin/sh")
|
|
|
|
|
bash))
|
2014-06-07 00:35:34 +02:00
|
|
|
|
|
2016-01-05 20:13:57 +01:00
|
|
|
|
(substitute* "gettext-tools/src/project-id"
|
|
|
|
|
(("/bin/pwd")
|
2018-03-23 07:23:16 +01:00
|
|
|
|
"pwd"))
|
|
|
|
|
|
|
|
|
|
#t))))
|
2016-01-05 20:13:57 +01:00
|
|
|
|
(add-before 'configure 'link-expat
|
|
|
|
|
(lambda _
|
|
|
|
|
;; Gettext defaults to opening expat via dlopen on
|
|
|
|
|
;; "Linux". Change to link directly.
|
|
|
|
|
(substitute* "gettext-tools/configure"
|
|
|
|
|
(("LIBEXPAT=\"-ldl\"") "LIBEXPAT=\"-ldl -lexpat\"")
|
2018-03-23 07:23:16 +01:00
|
|
|
|
(("LTLIBEXPAT=\"-ldl\"") "LTLIBEXPAT=\"-ldl -lexpat\""))
|
|
|
|
|
#t)))
|
2014-06-07 00:35:34 +02:00
|
|
|
|
|
|
|
|
|
;; When tests fail, we want to know the details.
|
|
|
|
|
#:make-flags '("VERBOSE=yes")))
|
2017-03-30 00:48:16 +02:00
|
|
|
|
(home-page "https://www.gnu.org/software/gettext/")
|
2016-09-25 09:33:02 +02:00
|
|
|
|
(synopsis
|
|
|
|
|
"Tools and documentation for translation (used to build other packages)")
|
2012-11-24 00:31:26 +01:00
|
|
|
|
(description
|
2013-12-01 22:33:23 +01:00
|
|
|
|
"GNU Gettext is a package providing a framework for translating the
|
|
|
|
|
textual output of programs into multiple languages. It provides translators
|
2016-09-25 09:33:02 +02:00
|
|
|
|
with the means to create message catalogs, and a runtime library to load
|
|
|
|
|
translated messages from the catalogs. Nearly all GNU packages use Gettext.")
|
2015-02-10 11:05:21 +01:00
|
|
|
|
(license gpl3+))) ;some files are under GPLv2+
|
2015-08-31 08:46:12 +02:00
|
|
|
|
|
2016-09-25 09:33:02 +02:00
|
|
|
|
;; 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
|
|
|
|
|
(inherit gettext-minimal)
|
|
|
|
|
(name "gettext")
|
2016-09-25 09:43:17 +02:00
|
|
|
|
(arguments
|
|
|
|
|
(substitute-keyword-arguments (package-arguments gettext-minimal)
|
|
|
|
|
((#:phases phases)
|
|
|
|
|
`(modify-phases ,phases
|
|
|
|
|
(add-after 'install 'add-emacs-autoloads
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
;; Make 'po-mode' and other things available by default.
|
|
|
|
|
(with-directory-excursion
|
|
|
|
|
(string-append (assoc-ref outputs "out")
|
|
|
|
|
"/share/emacs/site-lisp")
|
|
|
|
|
(symlink "start-po.el" "gettext-autoloads.el")
|
|
|
|
|
#t)))))))
|
|
|
|
|
(native-inputs `(("emacs" ,emacs-minimal))) ; for Emacs tools
|
2016-09-25 09:33:02 +02:00
|
|
|
|
(synopsis "Tools and documentation for translation")))
|
|
|
|
|
|
2015-08-31 08:46:12 +02:00
|
|
|
|
(define-public po4a
|
|
|
|
|
(package
|
|
|
|
|
(name "po4a")
|
2019-01-05 20:48:37 +01:00
|
|
|
|
(version "0.55")
|
2015-08-31 08:46:12 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2018-06-09 23:07:04 +02:00
|
|
|
|
(uri (string-append "https://github.com/mquinson/po4a/releases/download/v"
|
|
|
|
|
version "/po4a-" version ".tar.gz"))
|
2015-08-31 08:46:12 +02:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2019-01-05 20:48:37 +01:00
|
|
|
|
"1qss4q5df3nsydsbggb7gg50bn0kdxq5wn8riqm9zwkiq6a4bifg"))))
|
2015-08-31 08:46:12 +02:00
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'install 'wrap-programs
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
;; Make sure all executables in "bin" find the Perl modules
|
|
|
|
|
;; provided by this package at runtime.
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(bin (string-append out "/bin/"))
|
|
|
|
|
(path (string-append out "/lib/perl5/site_perl")))
|
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
(wrap-program file
|
|
|
|
|
`("PERL5LIB" ":" prefix (,path))))
|
|
|
|
|
(find-files bin "\\.*$"))
|
2017-03-26 11:00:46 +02:00
|
|
|
|
#t)))
|
|
|
|
|
(add-before 'reset-gzip-timestamps 'make-compressed-files-writable
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(for-each make-file-writable
|
|
|
|
|
(find-files (string-append (assoc-ref outputs "out")
|
|
|
|
|
"/share/man")
|
|
|
|
|
".*\\.gz$"))
|
2018-08-10 19:31:43 +02:00
|
|
|
|
#t))
|
2019-01-05 20:48:37 +01:00
|
|
|
|
(add-after 'unpack 'patch-docbook-xml
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(substitute* (find-files "." ".*\\.xml(-good)?")
|
|
|
|
|
(("http://www.oasis-open.org/docbook/xml/4.1.2/")
|
|
|
|
|
(string-append (assoc-ref inputs "docbook-xml")
|
|
|
|
|
"/xml/dtd/docbook/")))
|
|
|
|
|
#t))
|
2018-08-10 19:31:43 +02:00
|
|
|
|
(add-before 'check 'disable-failing-tests
|
|
|
|
|
(lambda _
|
|
|
|
|
;; FIXME: ‘Files ../t-03-asciidoc/Titles.po and Titles.po differ’.
|
|
|
|
|
(delete-file "t/03-asciidoc.t")
|
|
|
|
|
|
2019-01-05 20:48:37 +01:00
|
|
|
|
;; FIXME: these tests require SGMLS.pm.
|
|
|
|
|
(delete-file "t/01-classes.t")
|
2018-08-10 19:31:43 +02:00
|
|
|
|
(delete-file "t/16-sgml.t")
|
|
|
|
|
|
2017-03-26 11:00:46 +02:00
|
|
|
|
#t)))))
|
2015-08-31 08:46:12 +02:00
|
|
|
|
(native-inputs
|
2016-09-25 09:33:02 +02:00
|
|
|
|
`(("gettext" ,gettext-minimal)
|
2015-08-31 08:46:12 +02:00
|
|
|
|
("perl-module-build" ,perl-module-build)
|
|
|
|
|
("docbook-xsl" ,docbook-xsl)
|
|
|
|
|
("libxml2" ,libxml2)
|
2018-08-10 19:31:43 +02:00
|
|
|
|
("xsltproc" ,libxslt)
|
|
|
|
|
|
|
|
|
|
;; For tests.
|
2019-01-05 20:48:37 +01:00
|
|
|
|
("docbook-xml" ,docbook-xml-4.1.2)
|
2018-08-10 19:31:43 +02:00
|
|
|
|
("perl-yaml-tiny" ,perl-yaml-tiny)
|
|
|
|
|
("texlive" ,texlive-tiny)))
|
2018-02-22 16:01:25 +01:00
|
|
|
|
(home-page "https://po4a.org/")
|
2015-08-31 08:46:12 +02:00
|
|
|
|
(synopsis "Scripts to ease maintenance of translations")
|
|
|
|
|
(description
|
|
|
|
|
"The po4a (PO for anything) project goal is to ease translations (and
|
|
|
|
|
more interestingly, the maintenance of translations) using gettext tools on
|
|
|
|
|
areas where they were not expected like documentation.")
|
|
|
|
|
(license gpl2+)))
|