From owner-svn-ports-all@freebsd.org Sat Sep 19 15:35:09 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A914A3E4B22; Sat, 19 Sep 2020 15:35:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BtvsS2vMMz41vx; Sat, 19 Sep 2020 15:35:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AAF9EE2D3; Sat, 19 Sep 2020 15:35:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08JFZ78P082630; Sat, 19 Sep 2020 15:35:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08JFZ7Np082628; Sat, 19 Sep 2020 15:35:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202009191535.08JFZ7Np082628@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 19 Sep 2020 15:35:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r549000 - head/graphics/jbig2dec X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/graphics/jbig2dec X-SVN-Commit-Revision: 549000 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Sep 2020 15:35:10 -0000 Author: sunpoet Date: Sat Sep 19 15:35:06 2020 New Revision: 549000 URL: https://svnweb.freebsd.org/changeset/ports/549000 Log: Update to 0.19 Changes: https://github.com/ArtifexSoftware/jbig2dec/blob/master/CHANGES Modified: head/graphics/jbig2dec/Makefile head/graphics/jbig2dec/distinfo Modified: head/graphics/jbig2dec/Makefile ============================================================================== --- head/graphics/jbig2dec/Makefile Sat Sep 19 15:35:02 2020 (r548999) +++ head/graphics/jbig2dec/Makefile Sat Sep 19 15:35:06 2020 (r549000) @@ -1,10 +1,9 @@ # $FreeBSD$ PORTNAME= jbig2dec -PORTVERSION= 0.18 +PORTVERSION= 0.19 CATEGORIES= graphics devel -MASTER_SITES= https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs951/ \ - LOCAL/sunpoet:tests +MASTER_SITES= https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs9531/ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Decoder implementation of the JBIG2 image compression format @@ -12,10 +11,6 @@ COMMENT= Decoder implementation of the JBIG2 image com LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -OPTIONS_DEFINE= PNG TESTS -OPTIONS_DEFAULT=PNG -TESTS_DESC= Download and use test-images for post-build testing - USES= autoreconf libtool CONFIGURE_ENV= ac_cv_func_getopt_long=yes @@ -23,30 +18,18 @@ GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USE_LDCONFIG= yes -SHEBANG_FILES= test_jbig2dec.py -python_CMD= ${PYTHON_CMD} +OPTIONS_DEFINE= PNG +OPTIONS_DEFAULT=PNG PNG_CONFIGURE_OFF= --without-libpng PNG_CONFIGURE_ON= --with-libpng=${LOCALBASE} PNG_LIB_DEPENDS= libpng.so:graphics/png -TESTS_DISTFILES= jb2streams${EXTRACT_SUFX}:tests -TESTS_TEST_TARGET= check-TESTS -TESTS_USES= python:build shebangfix post-patch: @${RM} ${WRKSRC}/getopt* ${WRKSRC}/sha1.h @${REINPLACE_CMD} -E 's|SHA1_Final\( *([^,]+), *([^\)]+)\)|SHA1_Final(\2, \1)|' ${WRKSRC}/jbig2dec.c ${WRKSRC}/sha1.c -post-patch-TESTS-off: - @${REINPLACE_CMD} -e '/^TESTS = / s| test_jbig2dec.py||' ${WRKSRC}/Makefile.am - pre-configure: @cd ${WRKSRC}/ && ${SH} autogen.sh - -# maintainer section: - -.if defined(MAINTAINER_MODE) -DISTFILES+= jb2streams${EXTRACT_SUFX}:tests -.endif .include Modified: head/graphics/jbig2dec/distinfo ============================================================================== --- head/graphics/jbig2dec/distinfo Sat Sep 19 15:35:02 2020 (r548999) +++ head/graphics/jbig2dec/distinfo Sat Sep 19 15:35:06 2020 (r549000) @@ -1,3 +1,3 @@ -TIMESTAMP = 1598175210 -SHA256 (jbig2dec-0.18.tar.gz) = 9e19775237350e299c422b7b91b0c045e90ffa4ba66abf28c8fb5eb005772f5e -SIZE (jbig2dec-0.18.tar.gz) = 441543 +TIMESTAMP = 1600177152 +SHA256 (jbig2dec-0.19.tar.gz) = 279476695b38f04939aa59d041be56f6bade3422003a406a85e9792c27118a37 +SIZE (jbig2dec-0.19.tar.gz) = 572889