From owner-svn-ports-branches@freebsd.org Wed Jun 17 08:40:46 2020 Return-Path: Delivered-To: svn-ports-branches@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 174EE348119; Wed, 17 Jun 2020 08:40:46 +0000 (UTC) (envelope-from kai@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 49mz6j6VFKz4V1f; Wed, 17 Jun 2020 08:40:45 +0000 (UTC) (envelope-from kai@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 DA1701DA95; Wed, 17 Jun 2020 08:40:45 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 05H8ejnn003476; Wed, 17 Jun 2020 08:40:45 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 05H8ejVo003474; Wed, 17 Jun 2020 08:40:45 GMT (envelope-from kai@FreeBSD.org) Message-Id: <202006170840.05H8ejVo003474@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Wed, 17 Jun 2020 08:40:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r539406 - in branches/2020Q2/textproc/py-pdfminer.six: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in branches/2020Q2/textproc/py-pdfminer.six: . files X-SVN-Commit-Revision: 539406 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2020 08:40:46 -0000 Author: kai Date: Wed Jun 17 08:40:45 2020 New Revision: 539406 URL: https://svnweb.freebsd.org/changeset/ports/539406 Log: MFH: r538664 textproc/py-pdfminer.six: Update to 20191110 * Use this release for a while as it's the last one that supports Python 2.7 which is still needed by textproc/scancode-toolkit. * Backport two patches to fix the runtime of CLI scripts. * Remove "dos2unix" and "shebangfix" macros as they're no longer required. Changelog since 20181108: https://github.com/pdfminer/pdfminer.six/blob/20191110/CHANGELOG.md Approved by: ports-secteam (joneum) Added: branches/2020Q2/textproc/py-pdfminer.six/files/ - copied from r538664, head/textproc/py-pdfminer.six/files/ Modified: branches/2020Q2/textproc/py-pdfminer.six/Makefile branches/2020Q2/textproc/py-pdfminer.six/distinfo (contents, props changed) Directory Properties: branches/2020Q2/ (props changed) Modified: branches/2020Q2/textproc/py-pdfminer.six/Makefile ============================================================================== --- branches/2020Q2/textproc/py-pdfminer.six/Makefile Wed Jun 17 08:11:25 2020 (r539405) +++ branches/2020Q2/textproc/py-pdfminer.six/Makefile Wed Jun 17 08:40:45 2020 (r539406) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pdfminer.six -PORTVERSION= 20181108 +PORTVERSION= 20191110 CATEGORIES= textproc python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,13 +16,11 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-si ${PYTHON_PKGNAMEPREFIX}pycryptodome>=0:security/py-pycryptodome@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR} -USES= python shebangfix dos2unix +USES= python USE_GITHUB= yes GH_ACCOUNT= pdfminer USE_PYTHON= distutils concurrent autoplist -SHEBANG_FILES= tools/dumppdf.py tools/pdf2txt.py tools/latin2ascii.py - CONFLICTS_INSTALL= py??-pdfminer-* py??-pdfminer3k-* NO_ARCH= yes @@ -32,9 +30,6 @@ NO_ARCH= yes RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}chardet>=0:textproc/py-chardet@${PY_FLAVOR} .endif -# Following tests always fail: -# - test_tools_dumppdf.TestDumpPDF.test_2 -# - test_tools_pdf2txt.TestDumpPDF.test_{1,2,4,5,8} do-test: @(cd ${WRKSRC} && ${PYTHON_CMD} -m nose -v --nologcapture) Modified: branches/2020Q2/textproc/py-pdfminer.six/distinfo ============================================================================== --- branches/2020Q2/textproc/py-pdfminer.six/distinfo Wed Jun 17 08:11:25 2020 (r539405) +++ branches/2020Q2/textproc/py-pdfminer.six/distinfo Wed Jun 17 08:40:45 2020 (r539406) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558443307 -SHA256 (pdfminer-pdfminer.six-20181108_GH0.tar.gz) = 99b2bf8e2154e617c88bba7ea4f3fd02fb7d5b7be6b441a9001ca29d54d255f4 -SIZE (pdfminer-pdfminer.six-20181108_GH0.tar.gz) = 10420358 +TIMESTAMP = 1591951205 +SHA256 (pdfminer-pdfminer.six-20191110_GH0.tar.gz) = 323b7bc6b9ca544fbf6dbc287b52c6cf21fcb1bdcb33faa0a85658e00de8b1a8 +SIZE (pdfminer-pdfminer.six-20191110_GH0.tar.gz) = 10045330