diff options
author | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-22 13:07:39 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-22 13:07:39 +0900 |
commit | 66e28d9db1f5176cf3b8c00d451909c5902d52e8 (patch) | |
tree | 55b5b0295f6ec3605fd90a5bd2ccc7382a6f4551 | |
parent | 80bd0f9c4048bee3f50713e12d4d714791835994 (diff) |
gnu: Remove leptonica-1.80.
* gnu/packages/image.scm (leptonica-1.80): Delete variable.
Change-Id: Id96625556ec3c4a3c10bbe8f534548d7d2aad892
-rw-r--r-- | gnu/packages/image.scm | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index da105c1b17..1598d33046 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -890,39 +890,6 @@ scale and pixel depth, and pixelwise masking, blending, enhancement, and arithmetic ops.") (license license:bsd-2))) -(define-public leptonica-1.80 - (package - (inherit leptonica) - (name "leptonica") - (version "1.80.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/DanBloomberg/leptonica") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "12ddln72z5l3icz0i9rpsfkg5xik8fcwcn8lb0cp3jigjxi8gvkg")))) - (arguments - (substitute-keyword-arguments (package-arguments leptonica) - ((#:tests? _ #t) - ;; The pngio_reg test fails, probably because the libpng used is - ;; newer. - #f) - ((#:phases phases '%standard-phases) - #~(modify-phases #$phases - (replace 'provide-absolute-giflib-reference - (lambda _ - (let ((giflib #$(this-package-input "giflib"))) - ;; Add an absolute reference to giflib to avoid propagation. - ;; This is the same as for the parent package, but at that - ;; time the file name was 'liblept.la, not libleptonica.la. - (with-directory-excursion (string-append #$output "/lib") - (substitute* '("liblept.la" "pkgconfig/lept.pc") - (("-lgif") - (string-append "-L" giflib "/lib -lgif"))))))))))))) - (define-public jbig2dec (package (name "jbig2dec") |