Received: by mail.netbsd.org (Postfix, from userid 605) id 006ED84D48; Mon, 4 Sep 2017 18:05:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 85DE384D36 for ; Mon, 4 Sep 2017 18:05:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id UBztvkvhgN_w for ; Mon, 4 Sep 2017 18:05:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E2AA384D23 for ; Mon, 4 Sep 2017 18:05:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DA1FCFA97; Mon, 4 Sep 2017 18:05:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150454835833690" MIME-Version: 1.0 Date: Mon, 4 Sep 2017 18:05:58 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-docutils To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170904180558.DA1FCFA97@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. --_----------=_150454835833690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Sep 4 18:05:58 UTC 2017 Modified Files: pkgsrc/textproc/py-docutils: Makefile PLIST distinfo Log Message: Release 0.14: As rc2. * docutils/docs/ref/docutils.dtd: - Enable validation of Docutils XML documents against the DTD: * docutils/parsers/rst/: - Added functionality: escaped whitespace in URI contexts. - Consistent handling of all whitespace characters in inline markup recognition. (May break documents that relied on some whitespace characters (NBSP, ...) *not* to be recognized as whitespace.) * docutils/utils/smartquotes.py: - Update quote definitions for et, fi, fr, ro, sv, tr, uk. - Add quote definitions for hr, hsb, hu, lv, sh, sl, sr. - Differentiate apostrophe from closing single quote (if possible). - Add command line interface for stand-alone use (requires 2.7). * docutils/writers/_html_base: - Provide default title in metadata. - The MathJax CDN shut down on April 30, 2017. For security reasons, we don't use a third party public installation as default but warn if `math-output` is set to MathJax without specifying a URL. See math-output_ for details. * docutils/writers/html4css1: - Respect automatic table column sizing. * docutils/writers/latex2e/__init__.py - Handle class arguments for block-level elements by wrapping them in a "DUclass" environment. This replaces the special handling for "epigraph" and "topic" elements. * docutils/writers/odf_odt: - Language option sets ODF document's default language - Image width, scale, ... set image size in generated ODF. * tools/ - New front-end ``rst2html4.py``. To generate a diff of this commit: cvs rdiff -u -r1.46 -r1.47 pkgsrc/textproc/py-docutils/Makefile cvs rdiff -u -r1.22 -r1.23 pkgsrc/textproc/py-docutils/PLIST cvs rdiff -u -r1.20 -r1.21 pkgsrc/textproc/py-docutils/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150454835833690 Content-Disposition: inline Content-Length: 2679 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-docutils/Makefile diff -u pkgsrc/textproc/py-docutils/Makefile:1.46 pkgsrc/textproc/py-docutils/Makefile:1.47 --- pkgsrc/textproc/py-docutils/Makefile:1.46 Tue Jan 3 13:23:04 2017 +++ pkgsrc/textproc/py-docutils/Makefile Mon Sep 4 18:05:58 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.46 2017/01/03 13:23:04 jperkin Exp $ +# $NetBSD: Makefile,v 1.47 2017/09/04 18:05:58 adam Exp $ -DISTNAME= docutils-0.13.1 +DISTNAME= docutils-0.14 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=docutils/} @@ -23,7 +23,7 @@ REPLACE_PYTHON+= docutils/utils/punctuat REPLACE_PYTHON+= docutils/utils/smartquotes.py REPLACE_PYTHON+= docutils/writers/xetex/__init__.py -CMDS= rst2html rst2html5 rst2latex rst2man rst2odt rst2odt_prepstyles +CMDS= rst2html rst2html4 rst2html5 rst2latex rst2man rst2odt rst2odt_prepstyles CMDS+= rst2pseudoxml rst2s5 rst2xetex rst2xml rstpep2html post-install: Index: pkgsrc/textproc/py-docutils/PLIST diff -u pkgsrc/textproc/py-docutils/PLIST:1.22 pkgsrc/textproc/py-docutils/PLIST:1.23 --- pkgsrc/textproc/py-docutils/PLIST:1.22 Thu Dec 15 10:42:30 2016 +++ pkgsrc/textproc/py-docutils/PLIST Mon Sep 4 18:05:58 2017 @@ -1,5 +1,6 @@ -@comment $NetBSD: PLIST,v 1.22 2016/12/15 10:42:30 adam Exp $ +@comment $NetBSD: PLIST,v 1.23 2017/09/04 18:05:58 adam Exp $ bin/rst2html-${PYVERSSUFFIX}.py +bin/rst2html4-${PYVERSSUFFIX}.py bin/rst2html5-${PYVERSSUFFIX}.py bin/rst2latex-${PYVERSSUFFIX}.py bin/rst2man-${PYVERSSUFFIX}.py Index: pkgsrc/textproc/py-docutils/distinfo diff -u pkgsrc/textproc/py-docutils/distinfo:1.20 pkgsrc/textproc/py-docutils/distinfo:1.21 --- pkgsrc/textproc/py-docutils/distinfo:1.20 Thu Dec 15 10:42:30 2016 +++ pkgsrc/textproc/py-docutils/distinfo Mon Sep 4 18:05:58 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.20 2016/12/15 10:42:30 adam Exp $ +$NetBSD: distinfo,v 1.21 2017/09/04 18:05:58 adam Exp $ -SHA1 (docutils-0.13.1.tar.gz) = c16e14ef18142fa248400cd174edb4fa40e51d5b -RMD160 (docutils-0.13.1.tar.gz) = 2b690d818b2451c81d276c41b417eec7d31d5415 -SHA512 (docutils-0.13.1.tar.gz) = 6a68b27dac3705ff532cb79d6b6808071206544a1c653e6a24d46971a5e10edffc7d275834eec4e80d948eb066bb099cae0195c0ab674e68747820e54f0ea64e -Size (docutils-0.13.1.tar.gz) = 1735216 bytes +SHA1 (docutils-0.14.tar.gz) = 32cefb69ac3dab5b04c4d150776f35419cc4c863 +RMD160 (docutils-0.14.tar.gz) = 3331c1b684d377a0a2cb5c1e7431b019b8793840 +SHA512 (docutils-0.14.tar.gz) = 1ed72c2ef7d2ca38d1c6f3154b7986ea46f599d9bd826405a5257fdd7740c8626957d6298aa95fb0edea8a24515de22f1ad9b2ecbd59341a1ab7a2bab30f500c +Size (docutils-0.14.tar.gz) = 1727105 bytes --_----------=_150454835833690--