pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/graphics/jbig2enc
Module Name: pkgsrc
Committed By: adam
Date: Sat Dec 28 09:09:47 UTC 2024
Modified Files:
pkgsrc/graphics/jbig2enc: Makefile PLIST buildlink3.mk distinfo
Removed Files:
pkgsrc/graphics/jbig2enc/patches: patch-Makefile.am patch-configure.ac
patch-src_jbig2.cc patch-src_jbig2enc.cc patch-src_jbig2sym.cc
Log Message:
jbig2enc: updated to 0.30
0.30: (2024-12-24)
* Reject odd input depths that pixThresholdToBinary doesn't support.
* Fix build with Leptonica >=1.83
* Replace vs2008 solution with CMake
* Fix `Error heap-use-after-free`
* Fix typos in code
* Support python 3, drop support for python2
* Rename pdf.py to jbig2topdf.py
* Add a A switch to set dpi for images w/o dpi information
* Add support for standalone .jb2
* Suppress a chatty informational message unless requested
* Neat symbolic threshold 0.92
* Fix Endian issue on ARM
* Neat symbolic threshold 0.92
* Make the weight parameter adjustable
* Add lobal BW threshold on 8 bpp images
* Replace obsolete macro `AC_PROG_LIBTOOL'
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/graphics/jbig2enc/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/graphics/jbig2enc/PLIST \
pkgsrc/graphics/jbig2enc/buildlink3.mk
cvs rdiff -u -r1.4 -r1.5 pkgsrc/graphics/jbig2enc/distinfo
cvs rdiff -u -r1.2 -r0 pkgsrc/graphics/jbig2enc/patches/patch-Makefile.am
cvs rdiff -u -r1.1 -r0 pkgsrc/graphics/jbig2enc/patches/patch-configure.ac \
pkgsrc/graphics/jbig2enc/patches/patch-src_jbig2.cc \
pkgsrc/graphics/jbig2enc/patches/patch-src_jbig2enc.cc \
pkgsrc/graphics/jbig2enc/patches/patch-src_jbig2sym.cc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/graphics/jbig2enc/Makefile
diff -u pkgsrc/graphics/jbig2enc/Makefile:1.5 pkgsrc/graphics/jbig2enc/Makefile:1.6
--- pkgsrc/graphics/jbig2enc/Makefile:1.5 Sat Oct 21 17:10:32 2023
+++ pkgsrc/graphics/jbig2enc/Makefile Sat Dec 28 09:09:47 2024
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2023/10/21 17:10:32 gdt Exp $
+# $NetBSD: Makefile,v 1.6 2024/12/28 09:09:47 adam Exp $
-DISTNAME= jbig2enc-0.29
-PKGREVISION= 1
+DISTNAME= jbig2enc-0.30
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_GITHUB:=agl/}
GITHUB_TAG= ${PKGVERSION_NOREV}
@@ -17,6 +16,8 @@ USE_TOOLS+= aclocal autoconf autoheader
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --libdir=${PREFIX}/lib
+REPLACE_PYTHON= jbig2topdf.py
+
pre-configure:
cd ${WRKSRC} && ./autogen.sh
@@ -26,4 +27,5 @@ pre-configure:
.include "../../graphics/libwebp/buildlink3.mk"
.include "../../graphics/png/buildlink3.mk"
.include "../../graphics/tiff/buildlink3.mk"
+.include "../../lang/python/application.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/graphics/jbig2enc/PLIST
diff -u pkgsrc/graphics/jbig2enc/PLIST:1.2 pkgsrc/graphics/jbig2enc/PLIST:1.3
--- pkgsrc/graphics/jbig2enc/PLIST:1.2 Mon Jan 30 07:55:18 2023
+++ pkgsrc/graphics/jbig2enc/PLIST Sat Dec 28 09:09:47 2024
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.2 2023/01/30 07:55:18 adam Exp $
+@comment $NetBSD: PLIST,v 1.3 2024/12/28 09:09:47 adam Exp $
bin/jbig2
+bin/jbig2topdf.py
include/jbig2arith.h
include/jbig2comparator.h
include/jbig2enc.h
@@ -7,12 +8,11 @@ include/jbig2segments.h
include/jbig2structs.h
include/jbig2sym.h
lib/libjbig2enc.la
-share/doc/jbig2enc-0.28/AUTHORS
-share/doc/jbig2enc-0.28/COPYING
-share/doc/jbig2enc-0.28/ChangeLog
-share/doc/jbig2enc-0.28/INSTALL
-share/doc/jbig2enc-0.28/NEWS
-share/doc/jbig2enc-0.28/PATENTS
-share/doc/jbig2enc-0.28/README.md
-share/doc/jbig2enc-0.28/jbig2enc.html
-share/doc/jbig2enc-0.28/pdf.py
+share/doc/jbig2enc-${PKGVERSION}/AUTHORS
+share/doc/jbig2enc-${PKGVERSION}/COPYING
+share/doc/jbig2enc-${PKGVERSION}/ChangeLog
+share/doc/jbig2enc-${PKGVERSION}/INSTALL
+share/doc/jbig2enc-${PKGVERSION}/NEWS
+share/doc/jbig2enc-${PKGVERSION}/PATENTS
+share/doc/jbig2enc-${PKGVERSION}/README.md
+share/doc/jbig2enc-${PKGVERSION}/jbig2enc.html
Index: pkgsrc/graphics/jbig2enc/buildlink3.mk
diff -u pkgsrc/graphics/jbig2enc/buildlink3.mk:1.2 pkgsrc/graphics/jbig2enc/buildlink3.mk:1.3
--- pkgsrc/graphics/jbig2enc/buildlink3.mk:1.2 Sat Oct 21 17:10:32 2023
+++ pkgsrc/graphics/jbig2enc/buildlink3.mk Sat Dec 28 09:09:47 2024
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.2 2023/10/21 17:10:32 gdt Exp $
+# $NetBSD: buildlink3.mk,v 1.3 2024/12/28 09:09:47 adam Exp $
BUILDLINK_TREE+= jbig2enc
@@ -6,8 +6,8 @@ BUILDLINK_TREE+= jbig2enc
JBIG2ENC_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.jbig2enc+= jbig2enc>=0.29
-BUILDLINK_ABI_DEPENDS.jbig2enc?= jbig2enc>=0.29nb1
-BUILDLINK_PKGSRCDIR.jbig2enc?= ../../graphics/jbig2enc
+BUILDLINK_ABI_DEPENDS.jbig2enc+= jbig2enc>=0.29nb1
+BUILDLINK_PKGSRCDIR.jbig2enc?= ../../graphics/jbig2enc
.include "../../graphics/leptonica/buildlink3.mk"
.endif # JBIG2ENC_BUILDLINK3_MK
Index: pkgsrc/graphics/jbig2enc/distinfo
diff -u pkgsrc/graphics/jbig2enc/distinfo:1.4 pkgsrc/graphics/jbig2enc/distinfo:1.5
--- pkgsrc/graphics/jbig2enc/distinfo:1.4 Mon Jan 30 07:55:18 2023
+++ pkgsrc/graphics/jbig2enc/distinfo Sat Dec 28 09:09:47 2024
@@ -1,11 +1,6 @@
-$NetBSD: distinfo,v 1.4 2023/01/30 07:55:18 adam Exp $
+$NetBSD: distinfo,v 1.5 2024/12/28 09:09:47 adam Exp $
-BLAKE2s (jbig2enc-0.29.tar.gz) = 0ea2701ec813d8021ebd39459de7c3f4bec511aa504a83c6a11cb2ccdecbe408
-SHA512 (jbig2enc-0.29.tar.gz) = aa50cdaf61ef0ae473c8139d8da2a4c374450f8d0d31e2260031e8086dab9201c303c86d50cd51427135bef500718cbc3a53baabf2bf505f8908c22a3d361c51
-Size (jbig2enc-0.29.tar.gz) = 1108212 bytes
-SHA1 (patch-Makefile.am) = 506af56b0a3f7fe0629789053b015ff1af77c3eb
-SHA1 (patch-configure.ac) = 9777591b91e951b26d60e96a8590db71cadfa140
+BLAKE2s (jbig2enc-0.30.tar.gz) = 7eaf9cb95be4302f0a87a552c9d56393ed58bfd400da01c2a8875fbce746d007
+SHA512 (jbig2enc-0.30.tar.gz) = d20f7d3b9e8f633bd1d72af426ba5dba2104903072fdcd6b998550b5abee92fa02fea5542bfb4366cf6d9bdea3d747b64e9de5eccd7ef4653549780a2d3f26c6
+Size (jbig2enc-0.30.tar.gz) = 1214245 bytes
SHA1 (patch-src_Makefile.am) = 4a757a78c15c2a979e168d3052a857632b61e21b
-SHA1 (patch-src_jbig2.cc) = 52b6f052c1055d4cf9224ffecfba12f1c97f7dbf
-SHA1 (patch-src_jbig2enc.cc) = e2750d7a2909d36fa2f89f87833aa0a543dd1620
-SHA1 (patch-src_jbig2sym.cc) = 4e2addeee78c3cc59ae584c5e3daa119abc28560
Home |
Main Index |
Thread Index |
Old Index