about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEfraim Flashner2019-07-14 02:21:26 -0500
committerEfraim Flashner2019-07-14 02:21:26 -0500
commitf89f08a06bd944de230920f4d9ca00bcb7c2f52d (patch)
tree1e67041dcd84a505fb65e92b827d21e0a3fa2dce
parent9a391451d7bf03125e2b9a607f108a51bc9f0ef3 (diff)
downloadguix-bioinformatics-f89f08a06bd944de230920f4d9ca00bcb7c2f52d.tar.gz
gn: python24-pil: Inherit from python2-pil1.
* gn/packages/python24.scm (python24-pil): Inherit from python2-pil1.
-rw-r--r--gn/packages/python24.scm67
1 files changed, 4 insertions, 63 deletions
diff --git a/gn/packages/python24.scm b/gn/packages/python24.scm
index b77d6ef..1751c0b 100644
--- a/gn/packages/python24.scm
+++ b/gn/packages/python24.scm
@@ -5,6 +5,7 @@
   #:use-module (guix download)
   #:use-module (guix git-download)
   #:use-module (guix build-system python)
+  #:use-module (gn packages python)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages fontutils)
   #:use-module (gnu packages ghostscript)
@@ -201,73 +202,13 @@ module version 1.01 to Python.  It allows writing of Excel compatible
 spreadsheets without the need for COM objects.")
     (license license:lgpl2.1+)))
 
-;; TKINTER and LITTLECMS are not found
 (define-public python24-pil
   (package
+    (inherit python2-pil1)
     (name "python24-pil")
-    (version "1.1.7")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "http://effbot.org/downloads/Imaging-"
-                            version ".tar.gz"))
-        (sha256
-         (base32
-          "04aj80jhfbmxqzvmq40zfi4z3cw6vi01m3wkk6diz3lc971cfnw9"))
-        (modules '((guix build utils)))
-        (snippet
-          ;; Adapt to newer freetype. As the package is unmaintained upstream,
-          ;; there is no use in creating a patch and reporting it.
-          '(substitute* "_imagingft.c"
-                        (("freetype/")
-                         "freetype2/freetype/")))))
-    (build-system python-build-system)
     (arguments
-     `(#:python ,python-2.4
-       #:use-setuptools? #f
-       #:tests? #f ; no tests
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'link-libraries
-           (lambda* (#:key inputs #:allow-other-keys)
-             (let ((freetype (assoc-ref inputs "freetype"))
-                   (jpeg (assoc-ref inputs "libjpeg"))
-                   (lcms (assoc-ref inputs "lcms"))
-                   (tcl (assoc-ref inputs "tcl"))
-                   (tiff (assoc-ref inputs "libtiff"))
-                   (zlib (assoc-ref inputs "zlib")))
-               (substitute* "setup.py"
-                 (("FREETYPE_ROOT .*")
-                  (string-append "FREETYPE_ROOT = libinclude(\"" freetype "\")\n"))
-                 (("JPEG_ROOT .*")
-                  (string-append "JPEG_ROOT = libinclude(\"" jpeg "\")\n"))
-                 (("LCMS_ROOT .*")
-                  (string-append "LCMS_ROOT = libinclude(\"" lcms "\")\n"))
-                 (("^TCL_ROOT .*")
-                  (string-append "TCL_ROOT = libinclude(\"" tcl "\")\n"))
-                 (("TIFF_ROOT .*")
-                  (string-append "TIFF_ROOT = libinclude(\"" tiff "\")\n"))
-                 (("ZLIB_ROOT .*")
-                  (string-append "ZLIB_ROOT = libinclude(\"" zlib "\")\n")))
-               (substitute* '("setup.py"
-                              "_imagingcms.c")
-                 (("lcms.h") "lcms2.h")))
-             #t)))))
-    (inputs
-     `(("freetype" ,freetype)
-       ("lcms" ,lcms)
-       ("libjpeg" ,libjpeg)
-       ("libtiff" ,libtiff)
-       ("tcl" ,tcl)
-       ("zlib" ,zlib)))
-    (home-page "http://www.pythonware.com/products/pil/")
-    (synopsis "Python Imaging Library")
-    (description "The @dfn{Python Imaging Library} (PIL) adds image processing
-capabilities to your Python interpreter.  This library supports many file
-formats, and provides powerful image processing and graphics capabilities.")
-    (license (license:x11-style
-               "file://README"
-               "See 'README' in the distribution."))))
+     (substitute-keyword-arguments (package-arguments python2-pil1)
+       ((#:python _) python-2.4)))))
 
 (define-public python24-piddle
   (package