* gnu/packages/algebra.scm (fftwf, fftw-openmpi), gnu/packages/audio.scm (ztoolkit-rsvg), gnu/packages/bioinformatics.scm (python2-dendropy), gnu/packages/boost.scm (boost-with-python2), gnu/packages/check.scm (python2-mock, python2-pytest-mock), gnu/packages/cups.scm (hplip-minimal), gnu/packages/freedesktop.scm (libinput-minimal), gnu/packages/gettext.scm (gnu-gettext), gnu/packages/glib.scm (python2-pygobject), gnu/packages/gnome.scm (gdl-minimal, libsoup-minimal, python2-pyatspi), gnu/packages/groff.scm (groff-minimal), gnu/packages/jami.scm (ffmpeg-jami), gnu/packages/libcanberra.scm (libcanberra/gtk+-2), gnu/packages/lirc.scm (python2-lirc), gnu/packages/llvm.scm (clang-runtime-3.5), gnu/packages/mpi.scm (java-openmpi, openmpi-thread-multiple), gnu/packages/node.scm (libnode), gnu/packages/onc-rpc.scm (libtirpc/hurd), gnu/packages/python-compression.scm (bitshuffle-for-snappy), gnu/packages/python-crypto.scm (python2-pycrypto, python2-cryptography) (python2-cryptography, python2-m2crypto), gnu/packages/python-web.scm (python2-html2text, python2-tornado) (python2-terminado, python2-ndg-httpsclient, python2-websocket-client) (python2-rauth, python2-url, python2-s3transfer), gnu/packages/python-xyz.scm (python2-psutil, python2-serpent) (python2-humanfriendly, python2-empy, python2-parse-type, python2-polib) (python2-jsonschema, python2-pystache, python2-cython, python2-numpydoc) (python2-ipyparallel, python2-traitlets, python2-dbus) (python2-beautifulsoup4, python2-pep517, python2-flake8, python2-llfuse) (python2-tlsh, python-file, python2-notebook, python-jupyter-console-minimal) (python2-contextlib2, python2-promise, python2-anyjson, python2-amqp) (python2-kombu, python2-billiard, python2-celery, python2-whoosh) (python2-jellyfish, python-rope, ptpython-2, python2-binaryornot) (python2-setproctitle, python2-argcomplete, python2-xopen, python2-isort) (python2-radon, python2-rfc6555, python2-activepapers, python2-send2trash) (python2-cloudpickle, python2-reparser), gnu/packages/python.scm (python2-called-python), gnu/packages/qt.scm (python2-sip, python-pyqt-without-qtwebkit, python2-pyqt) (python-qscintilla, python-pyqt+qscintilla), gnu/packages/scanner.scm (sane-backends), gnu/packages/sdl.scm (guile3.0-sdl2), gnu/packages/selinux.scm (checkpolicy, libselinux, libsemanage, secilc) (python-sepolgen, policycoreutils), gnu/packages/serialization.scm (lua5.1-libmpack, lua5.2-libmpack), gnu/packages/simulation.scm (fenics), gnu/packages/statistics.scm (python2-statsmodels), gnu/packages/texinfo.scm (info-reader), gnu/packages/wxwidgets.scm (wxwidgets-gtk2, wxwidgets-gtk2-3.1), gnu/packages/xml.scm (xmlsec-nss), gnu/packages/xorg.scm (uim-gtk, uim-qt), guix/build-system/python.scm (package-with-explicit-python) (strip-python2-variant): Use PACKAGE/INHERIT.
		
			
				
	
	
		
			295 lines
		
	
	
	
		
			12 KiB
		
	
	
	
		
			Scheme
		
	
	
	
	
	
			
		
		
	
	
			295 lines
		
	
	
	
		
			12 KiB
		
	
	
	
		
			Scheme
		
	
	
	
	
	
;;; GNU Guix --- Functional package management for GNU
 | 
						|
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
 | 
						|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
 | 
						|
;;; Copyright © 2015, 2017 Ricardo Wurmus <rekado@elephly.net>
 | 
						|
;;; Copyright © 2016, 2019 Efraim Flashner <efraim@flashner.co.il>
 | 
						|
;;; Copyright © 2016 Alex Kost <alezost@gmail.com>
 | 
						|
;;; Copyright © 2017, 2019 Marius Bakke <mbakke@fastmail.com>
 | 
						|
;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
 | 
						|
;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org>
 | 
						|
;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
 | 
						|
;;; Copyright © 2019 Miguel <rosen644835@gmail.com>
 | 
						|
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
 | 
						|
;;; Copyright © 2020 EuAndreh <eu@euandre.org>
 | 
						|
;;;
 | 
						|
;;; This file is part of GNU Guix.
 | 
						|
;;;
 | 
						|
;;; GNU Guix is free software; you can redistribute it and/or modify it
 | 
						|
;;; 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.
 | 
						|
;;;
 | 
						|
;;; GNU Guix is distributed in the hope that it will be useful, but
 | 
						|
;;; 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
 | 
						|
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 | 
						|
 | 
						|
(define-module (gnu packages gettext)
 | 
						|
  #:use-module ((guix licenses) #:select (gpl2+ gpl3+ bsd-3))
 | 
						|
  #:use-module (gnu packages)
 | 
						|
  #:use-module (guix packages)
 | 
						|
  #:use-module (guix download)
 | 
						|
  #:use-module (guix build-system gnu)
 | 
						|
  #:use-module (guix build-system perl)
 | 
						|
  #:use-module (guix build-system python)
 | 
						|
  #:use-module (gnu packages check)
 | 
						|
  #:use-module (gnu packages docbook)
 | 
						|
  #:use-module (gnu packages emacs)
 | 
						|
  #:use-module (gnu packages hurd)
 | 
						|
  #:use-module (gnu packages libunistring)
 | 
						|
  #:use-module (gnu packages ncurses)
 | 
						|
  #:use-module (gnu packages perl)
 | 
						|
  #:use-module (gnu packages perl-check)
 | 
						|
  #:use-module (gnu packages tex)
 | 
						|
  #:use-module (gnu packages xml)
 | 
						|
  #:use-module (gnu packages python-xyz)
 | 
						|
  #:use-module (gnu packages sphinx)
 | 
						|
  #:use-module (guix utils))
 | 
						|
 | 
						|
(define-public gettext-minimal
 | 
						|
  (package
 | 
						|
    (name "gettext-minimal")
 | 
						|
    (version "0.20.1")
 | 
						|
    (source (origin
 | 
						|
              (method url-fetch)
 | 
						|
              (uri (string-append "mirror://gnu/gettext/gettext-"
 | 
						|
                                  version ".tar.gz"))
 | 
						|
              (sha256
 | 
						|
               (base32
 | 
						|
                "0p3zwkk27wm2m2ccfqm57nj7vqkmfpn7ja1nf65zmhz8qqs5chb6"))))
 | 
						|
    (build-system gnu-build-system)
 | 
						|
    (outputs '("out"
 | 
						|
               "doc"))                            ;9 MiB of HTML
 | 
						|
    (inputs
 | 
						|
     `(("libunistring" ,libunistring)
 | 
						|
       ("libxml2" ,libxml2)
 | 
						|
 | 
						|
       ;; TODO: ncurses is only needed for the 'libtextstyle' library.
 | 
						|
       ;; The next version of gettext can use a separate libtextstyle,
 | 
						|
       ;; but for now we include it here in 'gettext-minimal'.
 | 
						|
       ("ncurses" ,ncurses)))
 | 
						|
    (arguments
 | 
						|
     `(#:configure-flags '("--with-included-libunistring=no"
 | 
						|
                           "--with-included-libxml=no")
 | 
						|
       #:phases
 | 
						|
       (modify-phases %standard-phases
 | 
						|
         (add-before 'patch-source-shebangs 'patch-fixed-paths
 | 
						|
           (lambda _
 | 
						|
             (substitute* '("gettext-tools/config.h.in"
 | 
						|
                            "gettext-tools/gnulib-tests/init.sh"
 | 
						|
                            "gettext-tools/tests/init.sh"
 | 
						|
                            "gettext-tools/system-tests/run-test")
 | 
						|
               (("/bin/sh") "sh"))
 | 
						|
             (substitute* '("gettext-tools/src/project-id"
 | 
						|
                            "gettext-tools/projects/KDE/trigger"
 | 
						|
                            "gettext-tools/projects/GNOME/trigger")
 | 
						|
               (("/bin/pwd") "pwd"))
 | 
						|
             #t))
 | 
						|
        (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)))
 | 
						|
 | 
						|
               (substitute* (cons "gettext-tools/src/msginit.c"
 | 
						|
                                  (find-files "gettext-tools/gnulib-tests"
 | 
						|
                                              "posix_spawn"))
 | 
						|
                 (("/bin/sh")
 | 
						|
                  bash))
 | 
						|
 | 
						|
               (substitute* "gettext-tools/src/project-id"
 | 
						|
                 (("/bin/pwd")
 | 
						|
                  "pwd"))
 | 
						|
 | 
						|
               #t)))))
 | 
						|
 | 
						|
       ;; When tests fail, we want to know the details.
 | 
						|
       #:make-flags '("VERBOSE=yes"
 | 
						|
                      ,@(if (hurd-target?)
 | 
						|
                            ;; Linking to libgettextlib.so makes test-raise fail
 | 
						|
                            '("XFAIL_TESTS=test-raise")
 | 
						|
                            '()))))
 | 
						|
    (home-page "https://www.gnu.org/software/gettext/")
 | 
						|
    (synopsis
 | 
						|
     "Tools and documentation for translation (used to build other packages)")
 | 
						|
    (description
 | 
						|
     "GNU Gettext is a package providing a framework for translating the
 | 
						|
textual output of programs into multiple languages.  It provides translators
 | 
						|
with the means to create message catalogs, and a runtime library to load
 | 
						|
translated messages from the catalogs.  Nearly all GNU packages use Gettext.")
 | 
						|
    (properties `((upstream-name . "gettext")
 | 
						|
                  (cpe-name . "gettext")))
 | 
						|
    (license gpl3+)))                             ;some files are under GPLv2+
 | 
						|
 | 
						|
;; 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")
 | 
						|
    (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
 | 
						|
    (synopsis "Tools and documentation for translation")))
 | 
						|
 | 
						|
(define-public libtextstyle
 | 
						|
  (package
 | 
						|
    (name "libtextstyle")
 | 
						|
    (version "0.21")
 | 
						|
    (source (origin
 | 
						|
              (inherit (package-source gnu-gettext))
 | 
						|
              (uri (string-append "mirror://gnu/gettext/gettext-"
 | 
						|
                                  version ".tar.gz"))
 | 
						|
              (sha256
 | 
						|
               (base32
 | 
						|
                "04kbg1sx0ncfrsbr85ggjslqkzzb243fcw9nyh3rrv1a22ihszf7"))))
 | 
						|
    (build-system gnu-build-system)
 | 
						|
    (arguments
 | 
						|
     '(#:configure-flags '("--disable-static")
 | 
						|
       #:phases (modify-phases %standard-phases
 | 
						|
                  (add-after 'unpack 'chdir
 | 
						|
                    (lambda _
 | 
						|
                      (chdir "libtextstyle")
 | 
						|
                      #t)))))
 | 
						|
    ;; libtextstyle bundles libxml2, glib (a small subset thereof), and
 | 
						|
    ;; libcroco, but it purposefully prevents users from using an external
 | 
						|
    ;; copy, to reduce the startup time of programs using libtextstyle.
 | 
						|
    (home-page "https://www.gnu.org/software/gettext/")
 | 
						|
    (synopsis "Text styling library")
 | 
						|
    (description
 | 
						|
     "GNU libtextstyle is a C library that provides an easy way to add styling
 | 
						|
to programs that produce output to a console or terminal emulator window.  It
 | 
						|
allows applications to emit text annotated with styling information, such as
 | 
						|
color, font attributes (weight, posture), or underlining.")
 | 
						|
    (license gpl3+)))
 | 
						|
 | 
						|
(define-public mdpo
 | 
						|
  (package
 | 
						|
    (name "mdpo")
 | 
						|
    (version "0.3.6")
 | 
						|
    (source
 | 
						|
     (origin
 | 
						|
       (method url-fetch)
 | 
						|
       (uri (pypi-uri "mdpo" version))
 | 
						|
       (sha256
 | 
						|
        (base32 "0kgbm0af7jwpfspa2xxiy9nc2l1r2s1rhbhz4r229zcqv49ak6sq"))))
 | 
						|
    (build-system python-build-system)
 | 
						|
    (native-inputs
 | 
						|
     `(("python-bump2version" ,python-bump2version)
 | 
						|
       ("python-flake8" ,python-flake8)
 | 
						|
       ("python-flake8-implicit-str-concat" ,python-flake8-implicit-str-concat)
 | 
						|
       ("python-flake8-print" ,python-flake8-print)
 | 
						|
       ("python-isort" ,python-isort)
 | 
						|
       ("python-pre-commit" ,python-pre-commit)
 | 
						|
       ("python-pytest" ,python-pytest)
 | 
						|
       ("python-pytest-cov" ,python-pytest-cov)
 | 
						|
       ("python-sphinx" ,python-sphinx)
 | 
						|
       ("python-sphinx-argparse" ,python-sphinx-argparse)
 | 
						|
       ("python-sphinx-rtd-theme" ,python-sphinx-rtd-theme)
 | 
						|
       ("python-twine" ,python-twine)
 | 
						|
       ("python-yamllint" ,python-yamllint)))
 | 
						|
    (propagated-inputs
 | 
						|
     `(("python-polib" ,python-polib)
 | 
						|
       ("python-pymd4c" ,python-pymd4c)))
 | 
						|
    (home-page "https://github.com/mondeja/mdpo")
 | 
						|
    (synopsis "Markdown file translation utilities using pofiles")
 | 
						|
    (description
 | 
						|
     "The mdpo utility creates pofiles, the format stabilished by GNU Gettext,
 | 
						|
from Markdown files.")
 | 
						|
    (license bsd-3)))
 | 
						|
 | 
						|
(define-public po4a
 | 
						|
  (package
 | 
						|
    (name "po4a")
 | 
						|
    (version "0.61")
 | 
						|
    (source (origin
 | 
						|
              (method url-fetch)
 | 
						|
              (uri (string-append "https://github.com/mquinson/po4a/releases/download/v"
 | 
						|
                                  version "/po4a-" version ".tar.gz"))
 | 
						|
              (sha256
 | 
						|
               (base32
 | 
						|
                "1nw61dj7ymrsjps79vvfdzp549drwd51kyj598937zvyafq4r5b2"))))
 | 
						|
    (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 "\\.*$"))
 | 
						|
              #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$"))
 | 
						|
             #t))
 | 
						|
         (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))
 | 
						|
         (add-before 'check 'disable-failing-tests
 | 
						|
           (lambda _
 | 
						|
             ;; FIXME: these tests require SGMLS.pm.
 | 
						|
             (delete-file "t/01-classes.t")
 | 
						|
 | 
						|
             (delete-file "t/add.t")
 | 
						|
             (delete-file "t/core-porefs.t")
 | 
						|
             (delete-file "t/fmt-asciidoc.t")
 | 
						|
             (delete-file "t/fmt-sgml.t")
 | 
						|
 | 
						|
             #t)))))
 | 
						|
    (native-inputs
 | 
						|
     `(("gettext" ,gettext-minimal)
 | 
						|
       ("perl-module-build" ,perl-module-build)
 | 
						|
       ("docbook-xsl" ,docbook-xsl)
 | 
						|
       ("libxml2" ,libxml2)
 | 
						|
       ("xsltproc" ,libxslt)
 | 
						|
 | 
						|
       ;; For tests.
 | 
						|
       ("docbook-xml" ,docbook-xml-4.1.2)
 | 
						|
       ("perl-test-pod" ,perl-test-pod)
 | 
						|
       ("perl-yaml-tiny" ,perl-yaml-tiny)
 | 
						|
       ("texlive" ,texlive-tiny)))
 | 
						|
    (home-page "https://po4a.org/")
 | 
						|
    (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+)))
 |