Github messages for voidlinux
 help / color / mirror / Atom feed
From: TheEgghead27 <TheEgghead27@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: [PR PATCH] New package: jbig2enc-0.29
Date: Wed, 21 Feb 2024 01:08:12 +0100	[thread overview]
Message-ID: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-48860@inbox.vuxu.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 1139 bytes --]

There is a new pull request by TheEgghead27 against master on the void-packages repository

https://github.com/TheEgghead27/void-packages jbig2enc
https://github.com/void-linux/void-packages/pull/48860

New package: jbig2enc-0.29
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

jbig2enc upstream has been sparsely maintained for a few years, only commits have been bug fixes without a new release tag, with the most recent two patches being necessary for libleptonia linkage.

I personally use this package alongside `ocrmypdf` (via pipx), though `jbig2enc` might not offer much of value to most users.

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl
  - i686
  - aarch64 (cross)


A patch file from https://github.com/void-linux/void-packages/pull/48860.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-jbig2enc-48860.patch --]
[-- Type: text/x-diff, Size: 5450 bytes --]

From 43371975775694805baf9111d895f1bbb6e9ce41 Mon Sep 17 00:00:00 2001
From: David Chen <dchen07@protonmail.com>
Date: Tue, 20 Feb 2024 18:50:26 -0500
Subject: [PATCH] New package: jbig2enc-0.29

Signed-off-by: David Chen <dchen07@protonmail.com>
---
 .../patches/libleptonica-update.patch         | 70 +++++++++++++++++++
 .../patches/rename-liblept-libleptonica.patch | 24 +++++++
 srcpkgs/jbig2enc/template                     | 27 +++++++
 3 files changed, 121 insertions(+)
 create mode 100644 srcpkgs/jbig2enc/patches/libleptonica-update.patch
 create mode 100644 srcpkgs/jbig2enc/patches/rename-liblept-libleptonica.patch
 create mode 100644 srcpkgs/jbig2enc/template

diff --git a/srcpkgs/jbig2enc/patches/libleptonica-update.patch b/srcpkgs/jbig2enc/patches/libleptonica-update.patch
new file mode 100644
index 0000000000000..aece0c2186138
--- /dev/null
+++ b/srcpkgs/jbig2enc/patches/libleptonica-update.patch
@@ -0,0 +1,70 @@
+From a614bdb580d65653dbfe5c9925940797a065deac Mon Sep 17 00:00:00 2001
+From: Federico <19206300+quaqo@users.noreply.github.com>
+Date: Sun, 8 Jan 2023 14:12:51 +0100
+Subject: [PATCH] Fix build with Leptonica >=1.83
+
+From leptonica 1.83 release notes:
+ * Use stdatomic.h to make cloning string safe. Remove all *GetRefcount() and *ChangeRefcount() accessors.
+ * Remove information about fields in many structs from the public interface allheaders.h, instead putting them in internal files pix_internal.h, array_internal.h and ccbord_internal.h.
+---
+ src/jbig2.cc    | 3 +++
+ src/jbig2enc.cc | 8 ++++++++
+ src/jbig2sym.cc | 4 ++++
+ 3 files changed, 15 insertions(+)
+
+diff --git a/src/jbig2.cc b/src/jbig2.cc
+index 0bddb90..baf62ea 100644
+--- a/src/jbig2.cc
++++ b/src/jbig2.cc
+@@ -29,6 +29,9 @@
+ #endif
+ 
+ #include <leptonica/allheaders.h>
++#if (LIBLEPT_MAJOR_VERSION == 1 && LIBLEPT_MINOR_VERSION >= 83) || LIBLEPT_MAJOR_VERSION > 1
++#include "leptonica/pix_internal.h"
++#endif
+ 
+ #include "jbig2enc.h"
+ 
+diff --git a/src/jbig2enc.cc b/src/jbig2enc.cc
+index 7603696..524b26f 100644
+--- a/src/jbig2enc.cc
++++ b/src/jbig2enc.cc
+@@ -24,6 +24,10 @@
+ #include <string.h>
+ 
+ #include <leptonica/allheaders.h>
++#if (LIBLEPT_MAJOR_VERSION == 1 && LIBLEPT_MINOR_VERSION >= 83) || LIBLEPT_MAJOR_VERSION > 1
++#include "leptonica/pix_internal.h"
++#include "leptonica/array_internal.h"
++#endif
+ 
+ #include <math.h>
+ #if defined(sun)
+@@ -206,7 +210,11 @@ unite_templates(struct jbig2ctx *ctx,
+         numaSetValue(ctx->classer->naclass, i, new_representant);
+       }
+     }
++#if (LIBLEPT_MAJOR_VERSION == 1 && LIBLEPT_MINOR_VERSION >= 83) || LIBLEPT_MAJOR_VERSION > 1
++    ctx->classer->pixat->pix[new_representant]->refcount += ctx->classer->pixat->pix[second_template]->refcount;
++#else
+     pixChangeRefcount(ctx->classer->pixat->pix[new_representant],pixGetRefcount(ctx->classer->pixat->pix[second_template]));
++#endif
+   }
+   return 0;
+ }
+diff --git a/src/jbig2sym.cc b/src/jbig2sym.cc
+index b419b71..43d2ff9 100644
+--- a/src/jbig2sym.cc
++++ b/src/jbig2sym.cc
+@@ -29,6 +29,10 @@
+ #include <stdio.h>
+ 
+ #include <leptonica/allheaders.h>
++#if (LIBLEPT_MAJOR_VERSION == 1 && LIBLEPT_MINOR_VERSION >= 83) || LIBLEPT_MAJOR_VERSION > 1
++#include "leptonica/pix_internal.h"
++#include "leptonica/array_internal.h"
++#endif
+ 
+ #include <math.h>
+ 
diff --git a/srcpkgs/jbig2enc/patches/rename-liblept-libleptonica.patch b/srcpkgs/jbig2enc/patches/rename-liblept-libleptonica.patch
new file mode 100644
index 0000000000000..b11518fdff41b
--- /dev/null
+++ b/srcpkgs/jbig2enc/patches/rename-liblept-libleptonica.patch
@@ -0,0 +1,24 @@
+From d211d8c9c65fbc103594580484a3b7fa0249e160 Mon Sep 17 00:00:00 2001
+From: Federico <19206300+quaqo@users.noreply.github.com>
+Date: Sun, 8 Jan 2023 20:15:45 +0100
+Subject: [PATCH] Fix autotools with leptonica >= 1.83
+
+From leptonica 1.83 release notes:
+* Rename the autotools generated libraries from liblept to libleptonica
+---
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 3b8404b..b38f11e 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -73,7 +73,7 @@ AC_CONFIG_COMMANDS([libtool-rpath-patch],
+ 	fi],
+ [libtool_patch_use_rpath=$enable_rpath])
+ 
+-AC_CHECK_LIB([lept], [findFileFormatStream], [], [
++AC_CHECK_LIB([leptonica], [findFileFormatStream], [], [
+ 			echo "Error! Leptonica not detected."
+ 			exit -1
+ 			])
diff --git a/srcpkgs/jbig2enc/template b/srcpkgs/jbig2enc/template
new file mode 100644
index 0000000000000..c2a0c4a10f125
--- /dev/null
+++ b/srcpkgs/jbig2enc/template
@@ -0,0 +1,27 @@
+# Template file for 'jbig2enc'
+pkgname=jbig2enc
+version=0.29
+revision=1
+#archs="i686 x86_64"
+#build_wrksrc=
+build_style=gnu-configure
+#configure_args=""
+#make_build_args=""
+#make_install_args=""
+#conf_files=""
+#make_dirs="/var/log/dir 0755 root root"
+hostmakedepends="autoconf automake pkg-config libtool"
+makedepends="leptonica-devel tiff-devel libpng-devel giflib-devel libwebp-devel"
+depends="leptonica tiff libpng giflib libwebp python3"
+short_desc="JBIG2 Encoder"
+maintainer="David Chen <dchen07@protonmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/agl/jbig2enc"
+#changelog=""
+distfiles="https://github.com/agl/jbig2enc/archive/refs/tags/${version}.tar.gz"
+checksum=bfcf0d0448ee36046af6c776c7271cd5a644855723f0a832d1c0db4de3c21280
+python_version="3"
+
+pre_configure() {
+	./autogen.sh
+}

             reply	other threads:[~2024-02-21  0:08 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-21  0:08 TheEgghead27 [this message]
2024-02-21  0:12 ` [PR REVIEW] " abenson
2024-02-21  0:12 ` abenson
2024-02-21  3:21 ` [PR PATCH] [Updated] " TheEgghead27
2024-02-21  3:21 ` [PR REVIEW] " TheEgghead27
2024-02-23  0:07 ` abenson
2024-02-23  0:32 ` [PR PATCH] [Updated] " TheEgghead27
2024-02-23  0:33 ` [PR REVIEW] " TheEgghead27
2024-03-21 21:55 ` arbitrarygit

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-48860@inbox.vuxu.org \
    --to=theegghead27@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 NNTP newsgroup(s).