Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Mar 2020 12:45:53 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r529344 - in head/graphics/jbig2dec: . files
Message-ID:  <202003281245.02SCjrDk090087@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Mar 28 12:45:53 2020
New Revision: 529344
URL: https://svnweb.freebsd.org/changeset/ports/529344

Log:
  Update to 0.18
  
  Changes:	https://github.com/ArtifexSoftware/jbig2dec/blob/master/CHANGES

Modified:
  head/graphics/jbig2dec/Makefile
  head/graphics/jbig2dec/distinfo
  head/graphics/jbig2dec/files/patch-Makefile.am
  head/graphics/jbig2dec/files/patch-autogen.sh
  head/graphics/jbig2dec/files/patch-jbig2dec.c

Modified: head/graphics/jbig2dec/Makefile
==============================================================================
--- head/graphics/jbig2dec/Makefile	Sat Mar 28 12:45:47 2020	(r529343)
+++ head/graphics/jbig2dec/Makefile	Sat Mar 28 12:45:53 2020	(r529344)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	jbig2dec
-PORTVERSION=	0.17
+PORTVERSION=	0.18
 CATEGORIES=	graphics devel
 MASTER_SITES=	LOCAL/sunpoet:tests
 

Modified: head/graphics/jbig2dec/distinfo
==============================================================================
--- head/graphics/jbig2dec/distinfo	Sat Mar 28 12:45:47 2020	(r529343)
+++ head/graphics/jbig2dec/distinfo	Sat Mar 28 12:45:53 2020	(r529344)
@@ -1,5 +1,3 @@
-TIMESTAMP = 1572806072
-SHA256 (jb2streams.tar.gz) = 1b070a15468d186010047b5525b2eb99cdcda655576600d2d8a0d008b80a5ba2
-SIZE (jb2streams.tar.gz) = 1000034
-SHA256 (ArtifexSoftware-jbig2dec-0.17_GH0.tar.gz) = e14c0a978332e0cad011b1aeb9aab7555c73b55e9907f08cb1c74bb6d78a7c59
-SIZE (ArtifexSoftware-jbig2dec-0.17_GH0.tar.gz) = 141195
+TIMESTAMP = 1585341220
+SHA256 (ArtifexSoftware-jbig2dec-0.18_GH0.tar.gz) = 3be6eb8105f6dcc8a7d29d6f2b4dc9205c164a412ad940294cedf0d7cc530487
+SIZE (ArtifexSoftware-jbig2dec-0.18_GH0.tar.gz) = 148563

Modified: head/graphics/jbig2dec/files/patch-Makefile.am
==============================================================================
--- head/graphics/jbig2dec/files/patch-Makefile.am	Sat Mar 28 12:45:47 2020	(r529343)
+++ head/graphics/jbig2dec/files/patch-Makefile.am	Sat Mar 28 12:45:53 2020	(r529344)
@@ -1,6 +1,6 @@
---- Makefile.am.orig	2018-09-03 16:39:20 UTC
+--- Makefile.am.orig	2020-02-11 16:28:00 UTC
 +++ Makefile.am
-@@ -26,10 +26,10 @@ libjbig2dec_la_SOURCES = jbig2.c \
+@@ -28,10 +28,10 @@ libjbig2dec_la_SOURCES = jbig2.c \
  bin_PROGRAMS = jbig2dec
  noinst_PROGRAMS = test_sha1 test_huffman test_arith
  
@@ -12,9 +12,9 @@
 -jbig2dec_LDADD = libjbig2dec.la @LIBOBJS@ $(PNG_LIBS)
 +jbig2dec_LDADD = libjbig2dec.la @LIBOBJS@ $(PNG_LIBS) -lmd
  
- dist_man_MANS = jbig2dec.1
- 
-@@ -39,8 +39,9 @@ MAINTAINERCLEANFILES = config_types.h.in
+ pkgconfigdir = $(libdir)/pkgconfig
+ pkgconfig_DATA = jbig2dec.pc
+@@ -44,8 +44,9 @@ MAINTAINERCLEANFILES = config_types.h.in
  
  TESTS = test_sha1 test_jbig2dec.py test_huffman test_arith
  

Modified: head/graphics/jbig2dec/files/patch-autogen.sh
==============================================================================
--- head/graphics/jbig2dec/files/patch-autogen.sh	Sat Mar 28 12:45:47 2020	(r529343)
+++ head/graphics/jbig2dec/files/patch-autogen.sh	Sat Mar 28 12:45:53 2020	(r529344)
@@ -1,14 +1,5 @@
 --- autogen.sh.orig	2019-10-02 12:52:19 UTC
 +++ autogen.sh
-@@ -22,7 +22,7 @@ VERSIONGREP="sed -e s/.*[^0-9\.]\([0-9][
- VERSIONMKMAJ="sed -e s/\([0-9][0-9]*\)[^0-9].*/\\1/"
- VERSIONMKMIN="sed -e s/.*[0-9][0-9]*\.//"
- 
--JBIG2VERSIONGREP="sed -e s/^.*(\([0-9]\+\)).*/\\1/"
-+JBIG2VERSIONGREP="sed -e s/^.*(\([0-9]*\)).*/\1/"
- JBIG2MAJOR=$(grep 'define JBIG2_VERSION_MAJOR' jbig2.h | $JBIG2VERSIONGREP)
- JBIG2MINOR=$(grep 'define JBIG2_VERSION_MINOR' jbig2.h | $JBIG2VERSIONGREP)
- sed -e "s/^\(AC_INIT[^,]*,\)[^,]*\(,.*\)$/\1 [$JBIG2MAJOR.$JBIG2MINOR]\2/" configure.ac.in > configure.ac
 @@ -169,12 +169,3 @@ $AUTOMAKE --add-missing --copy $AUTOMAKE
  
  echo "  autoconf"

Modified: head/graphics/jbig2dec/files/patch-jbig2dec.c
==============================================================================
--- head/graphics/jbig2dec/files/patch-jbig2dec.c	Sat Mar 28 12:45:47 2020	(r529343)
+++ head/graphics/jbig2dec/files/patch-jbig2dec.c	Sat Mar 28 12:45:53 2020	(r529344)
@@ -1,6 +1,6 @@
---- jbig2dec.c.orig	2018-09-03 16:39:20 UTC
+--- jbig2dec.c.orig	2020-02-11 16:28:00 UTC
 +++ jbig2dec.c
-@@ -40,7 +40,10 @@
+@@ -33,7 +33,10 @@
  #endif
  
  #include "os_types.h"
@@ -10,5 +10,5 @@
 +#	define SHA1_DIGEST_SIZE	20
 +#endif
  
- #include "jbig2.h"
- #include "jbig2_priv.h"
+ #ifdef JBIG_EXTERNAL_MEMENTO_H
+ #include JBIG_EXTERNAL_MEMENTO_H



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003281245.02SCjrDk090087>