Received: by mail.netbsd.org (Postfix, from userid 605) id B1A9A84DC8; Thu, 11 Jun 2020 10:30:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3AA4784D95 for ; Thu, 11 Jun 2020 10:30:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 4dsiOcFCCqK2 for ; Thu, 11 Jun 2020 10:30:41 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6B36184CDC for ; Thu, 11 Jun 2020 10:30:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5F42EFB27; Thu, 11 Jun 2020 10:30:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1591871441118020" MIME-Version: 1.0 Date: Thu, 11 Jun 2020 10:30:41 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-rst2pdf To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200611103041.5F42EFB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1591871441118020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Jun 11 10:30:41 UTC 2020 Modified Files: pkgsrc/textproc/py-rst2pdf: Makefile PLIST distinfo Log Message: py-rst2pdf: updated to 0.97 0.97 * Update dumpstyle.py * Inkscape_r2p: Fix imports for Python 2/3 * Add support for publishing rst2pdf as a snap * Fix PyPI links in README * Template and fonts fixes * Fix snapcraft link to be RST syntax * Fix unicode and basestring (required by Python3) * Switch to pytest * Post-pytest migration cleanup * Fix generation of source tarball * Update Pillow to 6.2.2 0.96 * Fix manual 0.95 * More cleanups! * Convert Code of Conduct to Markdown * Support docutils math directive instead of rst2pdf's * More cleanups 3 * Update version to 0.95.dev * Add missing parenthesis and made -e preprocess inline literal text * Improve findfonts.py * Fixed reportlab import * Fix internal links so that they work with latest ReportLab * Update LICENSE copyright to reference all contributors * Update dependencies * Fix image retrieval over urlretrieve + svg import errors * Replace deprecated BuildEnvironment.create_index() * Fix highlight's linenothreshold for Sphinx >=1.8+ & <2.0 * Fixed a syntax incompatibility with Python3 * Sphinx3 compatibility fixes * Remove Makefile, make.bat from sphinx tests * Remove unused file * Minor doc updates * Adding badges to README * Make it still work with Python 2 * Fix for fonts in Windows * Update CHANGES * Fix Preprocess extension for UTF-8 in Python 2 * Detail supported Python 3 versions * Bump pillow from 6.0.0 to 6.2.0 * Support Inkscape 1.x * Add svglib to requirements.txt * Allow code-block language to be optional To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/textproc/py-rst2pdf/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/py-rst2pdf/PLIST cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/py-rst2pdf/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1591871441118020 Content-Disposition: inline Content-Length: 3331 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-rst2pdf/Makefile diff -u pkgsrc/textproc/py-rst2pdf/Makefile:1.5 pkgsrc/textproc/py-rst2pdf/Makefile:1.6 --- pkgsrc/textproc/py-rst2pdf/Makefile:1.5 Mon Jun 10 15:39:44 2019 +++ pkgsrc/textproc/py-rst2pdf/Makefile Thu Jun 11 10:30:41 2020 @@ -1,12 +1,9 @@ -# $NetBSD: Makefile,v 1.5 2019/06/10 15:39:44 adam Exp $ +# $NetBSD: Makefile,v 1.6 2020/06/11 10:30:41 adam Exp $ -DISTNAME= rst2pdf-0.94.1 +DISTNAME= rst2pdf-0.97 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -CATEGORIES= python textproc -# PyPI distfile does not include images, styles, and templates -#MASTER_SITES= ${MASTER_SITE_PYPI:=r/rst2pdf/} -MASTER_SITES= ${MASTER_SITE_GITHUB:=rst2pdf/} -GITHUB_PROJECT= rst2pdf +CATEGORIES= textproc python +MASTER_SITES= ${MASTER_SITE_PYPI:=r/rst2pdf/} MAINTAINER= darcy@NetBSD.org HOMEPAGE= https://rst2pdf.org/ @@ -25,12 +22,6 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-PDF2-[0-9] USE_LANGUAGES= # none -PYTHON_VERSIONS_ACCEPTED= 27 - -# setup.cfg contains only 'tag_build = .dev', which we don't want. -pre-configure: - ${RM} ${WRKSRC}/setup.cfg - post-install: cd ${DESTDIR}${PREFIX}/bin && \ ${MV} rst2pdf rst2pdf-${PYVERSSUFFIX} || ${TRUE} Index: pkgsrc/textproc/py-rst2pdf/PLIST diff -u pkgsrc/textproc/py-rst2pdf/PLIST:1.3 pkgsrc/textproc/py-rst2pdf/PLIST:1.4 --- pkgsrc/textproc/py-rst2pdf/PLIST:1.3 Wed May 8 10:20:16 2019 +++ pkgsrc/textproc/py-rst2pdf/PLIST Thu Jun 11 10:30:41 2020 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2019/05/08 10:20:16 adam Exp $ +@comment $NetBSD: PLIST,v 1.4 2020/06/11 10:30:41 adam Exp $ bin/rst2pdf-${PYVERSSUFFIX} ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt @@ -77,9 +77,6 @@ ${PYSITELIB}/rst2pdf/languages.pyo ${PYSITELIB}/rst2pdf/log.py ${PYSITELIB}/rst2pdf/log.pyc ${PYSITELIB}/rst2pdf/log.pyo -${PYSITELIB}/rst2pdf/math_directive.py -${PYSITELIB}/rst2pdf/math_directive.pyc -${PYSITELIB}/rst2pdf/math_directive.pyo ${PYSITELIB}/rst2pdf/math_flowable.py ${PYSITELIB}/rst2pdf/math_flowable.pyc ${PYSITELIB}/rst2pdf/math_flowable.pyo Index: pkgsrc/textproc/py-rst2pdf/distinfo diff -u pkgsrc/textproc/py-rst2pdf/distinfo:1.4 pkgsrc/textproc/py-rst2pdf/distinfo:1.5 --- pkgsrc/textproc/py-rst2pdf/distinfo:1.4 Mon Jun 10 15:39:44 2019 +++ pkgsrc/textproc/py-rst2pdf/distinfo Thu Jun 11 10:30:41 2020 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.4 2019/06/10 15:39:44 adam Exp $ +$NetBSD: distinfo,v 1.5 2020/06/11 10:30:41 adam Exp $ -SHA1 (rst2pdf-0.94.1.tar.gz) = bb8474cd42b623fcc4acab5ac67626e2c1d82fa9 -RMD160 (rst2pdf-0.94.1.tar.gz) = fc363dd184aae47fdfcc497ae9c154d609c53a7b -SHA512 (rst2pdf-0.94.1.tar.gz) = a9b7c4d9fac429bb8e61ea727ccb8cd8a157f28de9266aab597396fd56e00b8d9ca12c16a5985f2db0371e15551ced3ff7090b3a7b3a2829eec316ae5a11e7dd -Size (rst2pdf-0.94.1.tar.gz) = 10313993 bytes +SHA1 (rst2pdf-0.97.tar.gz) = 75da7c01e6e82971a60b77c73cd395004b9caef1 +RMD160 (rst2pdf-0.97.tar.gz) = d97cfc611c59060fbb0db91b55d9dacf11ad7fa9 +SHA512 (rst2pdf-0.97.tar.gz) = cb5c219895791e68bd025f00adc00babb30d2b37e0e48ad69e05c264e96d7e0ec9f272fa87f9d0fccc0160f737b374e35add6eb650fe7e59333149ba413fa193 +Size (rst2pdf-0.97.tar.gz) = 140033 bytes SHA1 (patch-rst2pdf_createpdf.py) = dae3e14b3e35f5cc8bf3292ec5dc4cd13724447c SHA1 (patch-rst2pdf_flowables.py) = 13c639110fd34bcecfc6a79f0c1c6002af301201 --_----------=_1591871441118020--