guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

72/103: gnu: python-pathpy: Build documentation.


From: Hartmut Goebel
Subject: 72/103: gnu: python-pathpy: Build documentation.
Date: Tue, 25 Oct 2016 18:00:41 +0000 (UTC)

htgoebel pushed a commit to branch wip-python-build-system
in repository guix.

commit 214a1813d3e5245c2e49511ef2cd4e68567b9377
Author: Hartmut Goebel <address@hidden>
Date:   Sun Oct 16 21:48:40 2016 +0200

    gnu: python-pathpy: Build documentation.
    
    * gnu/packages/python.scm (python-pathpy, python2-pathpy)
      [output] Add output "doc".
      [native-inputs]: Add python-sphinx and python-rst.linker
      [build-doc], [install-doc]: New build phases.
---
 gnu/packages/python.scm |   20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index b4b5794..42d6f0f 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4148,13 +4148,33 @@ them as the version argument or in a SCM managed file.")
                            "path.py/path.py-" version ".tar.gz"))
        (sha256
         (base32 "1p8s1l2vfkqhqxdhqlj0g1jjw4f1as2frr35sjcpjjpd5a89y41f"))))
+    (outputs '("out" "doc"))
     (build-system python-build-system)
     (propagated-inputs
      `(("python-appdirs" ,python-appdirs)))
     (native-inputs
      `(("python-setuptools-scm" ,python-setuptools-scm)
+       ("python-sphinx" ,python-sphinx)
+       ("python-rst.linker" ,python-rst.linker)
        ("python-pytest" ,python-pytest)
        ("python-pytest-runner" ,python-pytest-runner)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'build 'build-doc
+           (lambda _
+             (setenv "LANG" "en_US.UTF-8")
+             (zero? (system* "python" "setup.py" "build_sphinx"))))
+         (add-after 'install 'install-doc
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((data (string-append (assoc-ref outputs "doc") "/share"))
+                    (doc (string-append data "/doc/" ,name "-" ,version))
+                    (html (string-append doc "/html")))
+               (mkdir-p html)
+               (for-each (lambda (file)
+                           (copy-file file (string-append doc "/" file)))
+                         '("README.rst" "CHANGES.rst"))
+               (copy-recursively "build/sphinx/html" html)))))))
     (home-page "http://github.com/jaraco/path.py";)
     (synopsis "Python module wrapper for built-in os.path")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]