unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#61533] [PATCH 0/2] gnu: leptonica: Update to 1.83.1.
@ 2023-02-15 16:42 Simon South
  2023-02-15 16:44 ` [bug#61533] [PATCH 1/2] gnu: leptonica: Use new package style Simon South
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Simon South @ 2023-02-15 16:42 UTC (permalink / raw)
  To: 61533

Here's a short patch series that updates Leptonica to 1.83.1, after first
updating its package definition to the modern style.

Tested on x864-64 and AArch64 and all seems well: Of Leptonica's 11 dependent
packages, only "ccextractor" fails to build and this is an existing failure on
both systems.

--
Simon South
simon@simonsouth.net


Simon South (2):
  gnu: leptonica: Use new package style.
  gnu: leptonica: Update to 1.83.1.

 gnu/packages/image.scm | 54 ++++++++++++++++++++----------------------
 1 file changed, 26 insertions(+), 28 deletions(-)


base-commit: b4d2670771b8c2b9c4aedbef0371f1d23197d209
-- 
2.39.1





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#61533] [PATCH 1/2] gnu: leptonica: Use new package style.
  2023-02-15 16:42 [bug#61533] [PATCH 0/2] gnu: leptonica: Update to 1.83.1 Simon South
@ 2023-02-15 16:44 ` Simon South
  2023-02-15 16:44 ` [bug#61533] [PATCH 2/2] gnu: leptonica: Update to 1.83.1 Simon South
  2023-02-27 22:36 ` bug#61533: [PATCH 0/2] " Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Simon South @ 2023-02-15 16:44 UTC (permalink / raw)
  To: 61533

* gnu/packages/image.scm (leptonica)[inputs]: Remove labels.
[arguments]<#:phases>: Use gexps; use "this-package-input" to locate package
input; do not explicitly return #t from phases.
---
 gnu/packages/image.scm | 50 ++++++++++++++++++++----------------------
 1 file changed, 24 insertions(+), 26 deletions(-)

diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 42b7ee055e..af7f2e411b 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -619,33 +619,31 @@ (define-public leptonica
            libtool
            pkg-config))
     (inputs
-     `(("giflib" ,giflib)
-       ("libjpeg" ,libjpeg-turbo)
-       ("libpng" ,libpng)
-       ("libtiff" ,libtiff)
-       ("libwebp" ,libwebp)
-       ("openjpeg" ,openjpeg)
-       ("zlib" ,zlib)))
+     (list giflib
+           libjpeg-turbo
+           libpng
+           libtiff
+           libwebp
+           openjpeg
+           zlib))
     (arguments
-     '(#:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'patch-reg-wrapper
-           (lambda _
-             (substitute* "prog/reg_wrapper.sh"
-               ((" /bin/sh ")
-                (string-append " " (which "sh") " "))
-               (("which gnuplot")
-                "true"))
-             #t))
-         (add-after 'install 'provide-absolute-giflib-reference
-           (lambda* (#:key inputs outputs #:allow-other-keys)
-             (let ((out (assoc-ref outputs "out"))
-                   (giflib (assoc-ref inputs "giflib")))
-               ;; Add an absolute reference to giflib to avoid propagation.
-               (with-directory-excursion (string-append out "/lib")
-                 (substitute* '("liblept.la" "pkgconfig/lept.pc")
-                   (("-lgif") (string-append "-L" giflib "/lib -lgif"))))
-               #t))))))
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'patch-reg-wrapper
+            (lambda _
+              (substitute* "prog/reg_wrapper.sh"
+                ((" /bin/sh ")
+                 (string-append " " (which "sh") " "))
+                (("which gnuplot")
+                 "true"))))
+          (add-after 'install 'provide-absolute-giflib-reference
+            (lambda _
+              (let ((giflib #$(this-package-input "giflib")))
+                ;; Add an absolute reference to giflib to avoid propagation.
+                (with-directory-excursion (string-append #$output "/lib")
+                  (substitute* '("liblept.la" "pkgconfig/lept.pc")
+                    (("-lgif") (string-append "-L" giflib "/lib -lgif"))))))))))
     (home-page "http://www.leptonica.com/")
     (synopsis "Library and tools for image processing and analysis")
     (description
-- 
2.39.1





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#61533] [PATCH 2/2] gnu: leptonica: Update to 1.83.1.
  2023-02-15 16:42 [bug#61533] [PATCH 0/2] gnu: leptonica: Update to 1.83.1 Simon South
  2023-02-15 16:44 ` [bug#61533] [PATCH 1/2] gnu: leptonica: Use new package style Simon South
@ 2023-02-15 16:44 ` Simon South
  2023-02-27 22:36 ` bug#61533: [PATCH 0/2] " Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Simon South @ 2023-02-15 16:44 UTC (permalink / raw)
  To: 61533

* gnu/packages/image.scm (leptonica): Update to 1.83.1.
[arguments]<#:phases>: Update file name in "provide-absolute-giflib-reference"
phase.
---
 gnu/packages/image.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index af7f2e411b..d458d8faf2 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -601,7 +601,7 @@ (define-public libtiff
 (define-public leptonica
   (package
     (name "leptonica")
-    (version "1.80.0")
+    (version "1.83.1")
     (source
      (origin
        (method git-fetch)
@@ -610,7 +610,7 @@ (define-public leptonica
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "12ddln72z5l3icz0i9rpsfkg5xik8fcwcn8lb0cp3jigjxi8gvkg"))))
+        (base32 "1j7qf9flb48q0aymf0yx9rypy3bs6hfjcln08zmy8qn2qcjzrmvi"))))
     (build-system gnu-build-system)
     (native-inputs
      (list gnuplot ;needed for test suite
@@ -642,7 +642,7 @@ (define-public leptonica
               (let ((giflib #$(this-package-input "giflib")))
                 ;; Add an absolute reference to giflib to avoid propagation.
                 (with-directory-excursion (string-append #$output "/lib")
-                  (substitute* '("liblept.la" "pkgconfig/lept.pc")
+                  (substitute* '("libleptonica.la" "pkgconfig/lept.pc")
                     (("-lgif") (string-append "-L" giflib "/lib -lgif"))))))))))
     (home-page "http://www.leptonica.com/")
     (synopsis "Library and tools for image processing and analysis")
-- 
2.39.1





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#61533: [PATCH 0/2] gnu: leptonica: Update to 1.83.1.
  2023-02-15 16:42 [bug#61533] [PATCH 0/2] gnu: leptonica: Update to 1.83.1 Simon South
  2023-02-15 16:44 ` [bug#61533] [PATCH 1/2] gnu: leptonica: Use new package style Simon South
  2023-02-15 16:44 ` [bug#61533] [PATCH 2/2] gnu: leptonica: Update to 1.83.1 Simon South
@ 2023-02-27 22:36 ` Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2023-02-27 22:36 UTC (permalink / raw)
  To: Simon South; +Cc: 61533-done

Simon South <simon@simonsouth.net> skribis:

> Here's a short patch series that updates Leptonica to 1.83.1, after first
> updating its package definition to the modern style.
>
> Tested on x864-64 and AArch64 and all seems well: Of Leptonica's 11 dependent
> packages, only "ccextractor" fails to build and this is an existing failure on
> both systems.

It’s not fully done yet, but qa.guix concurs:
<https://qa.guix.gnu.org/issue/61533>.  :-)

> Simon South (2):
>   gnu: leptonica: Use new package style.
>   gnu: leptonica: Update to 1.83.1.

Perfect.

Applied, thanks!

Ludo’.




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-02-27 22:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-15 16:42 [bug#61533] [PATCH 0/2] gnu: leptonica: Update to 1.83.1 Simon South
2023-02-15 16:44 ` [bug#61533] [PATCH 1/2] gnu: leptonica: Use new package style Simon South
2023-02-15 16:44 ` [bug#61533] [PATCH 2/2] gnu: leptonica: Update to 1.83.1 Simon South
2023-02-27 22:36 ` bug#61533: [PATCH 0/2] " Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).