dev-python/mako: Version bump
authorAaron W. Swenson <titanofold@gentoo.org>
Sat, 3 Jun 2017 21:04:51 +0000 (17:04 -0400)
committerAaron W. Swenson <titanofold@gentoo.org>
Sat, 3 Jun 2017 21:05:50 +0000 (17:05 -0400)
Bump version to 1.0.6. Add patch to correct test failure regarding
Pygment (Bug 577128).

Bug: https://bugs.gentoo.org/577128

Package-Manager: Portage-2.3.5, Repoman-2.3.1

dev-python/mako/Manifest
dev-python/mako/files/pygments-exception.patch [new file with mode: 0644]
dev-python/mako/mako-1.0.6.ebuild [new file with mode: 0644]

index b2c11b175f5dace7909d759f17bc5afbce4d7195..0afe01bbc9ab4f6dfb3cd6af6ae5d8e8b6ff8e2e 100644 (file)
@@ -1,2 +1,3 @@
 DIST Mako-1.0.0.tar.gz 470006 SHA256 a3cd72cfef507204b50f74ffcbfcfde7e856437891d3f6cfe780866986d006fe SHA512 81a6b7637e26d561350a591e3490e7140db218ae7f6b43fec8fca5b767fc6e57d0e8cc901d28fecb9863b2170c824a35c578a94579f991359fa0873f62ec578a WHIRLPOOL aa27b63e3832f03120312fbfec939b05606081e67a5cb4c9a056c27259631c2e159cf7506292d44e2c17c5950d7e4255d19f4beba78502bdbb52fbf11e1a872c
 DIST Mako-1.0.3.tar.gz 565224 SHA256 7644bc0ee35965d2e146dde31827b8982ed70a58281085fac42869a09764d38c SHA512 1652cb3f7ea6484975c16f914ce9c070e503ff532564f76a048dd316e5eb12ff2b2445f272be55147d4d62b45906d5e14b3799c9136622ed0867a00875a0e52d WHIRLPOOL 4ac07778b58d8b4c95853a07dcb8755e560cb7225f68b606582ef9883fe632caead44d4a56ae1662b42f0ecdee2117942b3c500385558aa8f9763a3ce755b583
+DIST Mako-1.0.6.tar.gz 575112 SHA256 48559ebd872a8e77f92005884b3d88ffae552812cdf17db6768e5c3be5ebbe0d SHA512 15608f2487783ea3a48faf743ee1b8e811adc34281c613e56f1a4548f3c614d1d5dbc943911943a7f8f6d34a962a27387d8fc17862038c1abee2e6c3328a79cf WHIRLPOOL dd0c12f2b8fe6f65907df662de73117eb11afee015f3acd2c70c8522456a7c52761a1bfe8247ce9e88a4ca704008a120be95893f3c3b1b0e410c1a244af011ba
diff --git a/dev-python/mako/files/pygments-exception.patch b/dev-python/mako/files/pygments-exception.patch
new file mode 100644 (file)
index 0000000..0d2faca
--- /dev/null
@@ -0,0 +1,32 @@
+From 8eaf6b7ea92018202a886e1d919e2c6b0d307c99 Mon Sep 17 00:00:00 2001
+From: Mike Bayer <mike_mp@zzzcomputing.com>
+Date: Mon, 22 May 2017 22:30:54 -0400
+Subject: [PATCH] - exception test fixes for more recent pygments
+
+Change-Id: Ibdfe5b2f2f3d1426921bcadf6740ae065ed0833b
+---
+ test/test_exceptions.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/test/test_exceptions.py b/test/test_exceptions.py
+index 8321b25..bcaae3b 100644
+--- a/test/test_exceptions.py
++++ b/test/test_exceptions.py
+@@ -91,7 +91,7 @@ def test_utf8_html_error_template_pygments(self):
+                 assert "".encode(sys.getdefaultencoding(),
+                                         'htmlentityreplace') in html_error
+             else:
+-                assert 'u&#39;'\
++                assert '&#39;'\
+                         '&#x43F;&#x440;&#x438;&#x432;&#x435;&#x442;'\
+                         '&#39;</span><span class="cp">}</span>'.encode(
+                                 sys.getdefaultencoding(),
+@@ -220,7 +220,7 @@ def test_utf8_format_exceptions_pygments(self):
+             assert '&#39;привет&#39;</span>' in \
+                 l.get_template("foo.html").render().decode('utf-8')
+         else:
+-            assert 'u&#39;&#x43F;&#x440;&#x438;&#x432;'\
++            assert '&#39;&#x43F;&#x440;&#x438;&#x432;'\
+                     '&#x435;&#x442;&#39;</span>' in \
+                 l.get_template("foo.html").render().decode('utf-8')
+ 
diff --git a/dev-python/mako/mako-1.0.6.ebuild b/dev-python/mako/mako-1.0.6.ebuild
new file mode 100644 (file)
index 0000000..2cc45b6
--- /dev/null
@@ -0,0 +1,56 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
+
+inherit distutils-r1 eutils versionator
+
+MY_PN="Mako"
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="A Python templating language"
+HOMEPAGE="http://www.makotemplates.org/ https://pypi.python.org/pypi/Mako"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+IUSE="doc test"
+
+RDEPEND="
+       >=dev-python/markupsafe-0.9.2[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       test? (
+               dev-python/nose[${PYTHON_USEDEP}]
+               $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7)
+       )"
+
+S="${WORKDIR}/${MY_P}"
+PATCHES=( "${FILESDIR}/pygments-exception.patch" )
+
+python_test() {
+       nosetests "${S}"/test || die "Tests fail with ${EPYTHON}"
+}
+
+python_install_all() {
+       rm -rf doc/build || die
+
+       use doc && local HTML_DOCS=( doc/. )
+       distutils-r1_python_install_all
+}
+
+pkg_postinst() {
+       optfeature "Caching support" dev-python/beaker
+       for v in ${REPLACING_VERSIONS}; do
+               if ! version_is_at_least 0.7.3-r2 $v; then
+                       ewarn "dev-python/beaker is no longer hard dependency of ${P}"
+                       ewarn "If you rely on it, you should add beaker to your world"
+                       ewarn "file:"
+                       ewarn "# emerge --noreplace beaker"
+                       break
+               fi
+       done
+}