From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mako/
Date: Wed, 28 Oct 2015 10:53:04 +0000 (UTC) [thread overview]
Message-ID: <1446025292.5f93a9013dda494c3bfa33d42b8510dd3bff41b2.jlec@gentoo> (raw)
commit: 5f93a9013dda494c3bfa33d42b8510dd3bff41b2
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 28 09:41:32 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Oct 28 09:41:32 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f93a901
dev-python/mako: Version Bump
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=545060
Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/mako/Manifest | 1 +
dev-python/mako/mako-1.0.3.ebuild | 56 +++++++++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/dev-python/mako/Manifest b/dev-python/mako/Manifest
index 5fb58e0..6752676 100644
--- a/dev-python/mako/Manifest
+++ b/dev-python/mako/Manifest
@@ -1,2 +1,3 @@
DIST Mako-1.0.0.tar.gz 470006 SHA256 a3cd72cfef507204b50f74ffcbfcfde7e856437891d3f6cfe780866986d006fe SHA512 81a6b7637e26d561350a591e3490e7140db218ae7f6b43fec8fca5b767fc6e57d0e8cc901d28fecb9863b2170c824a35c578a94579f991359fa0873f62ec578a WHIRLPOOL aa27b63e3832f03120312fbfec939b05606081e67a5cb4c9a056c27259631c2e159cf7506292d44e2c17c5950d7e4255d19f4beba78502bdbb52fbf11e1a872c
DIST Mako-1.0.2.tar.gz 564592 SHA256 2550c2e4528820db68cbcbe668add5c71ab7fa332b7eada7919044bf8697679e SHA512 d297f9050049ac37612b10d61d3f1bb2cb7f6e238e7afdce092ba95d6117e064b4dfebaa3219093d88f75c6ef691fe3a0aaebd4188a5ba571867d3a3dfe986bc WHIRLPOOL 63f1b0a094dcbd5ab9fb86ba56764ad517b60c24d58b7e51b5220d2df4426e47d0c65d0409f9f7c499c7eaa0747b5bac06326718574038c2276b4b52147274fe
+DIST Mako-1.0.3.tar.gz 565224 SHA256 7644bc0ee35965d2e146dde31827b8982ed70a58281085fac42869a09764d38c SHA512 1652cb3f7ea6484975c16f914ce9c070e503ff532564f76a048dd316e5eb12ff2b2445f272be55147d4d62b45906d5e14b3799c9136622ed0867a00875a0e52d WHIRLPOOL 4ac07778b58d8b4c95853a07dcb8755e560cb7225f68b606582ef9883fe632caead44d4a56ae1662b42f0ecdee2117942b3c500385558aa8f9763a3ce755b583
diff --git a/dev-python/mako/mako-1.0.3.ebuild b/dev-python/mako/mako-1.0.3.ebuild
new file mode 100644
index 0000000..1bdcc80
--- /dev/null
+++ b/dev-python/mako/mako-1.0.3.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+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 ~hppa ~ia64 ~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}"
+
+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
+}
next reply other threads:[~2015-10-28 10:53 UTC|newest]
Thread overview: 113+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-28 10:53 Justin Lecher [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-05-26 18:50 [gentoo-commits] repo/gentoo:master commit in: dev-python/mako/ Michał Górny
2025-04-26 13:00 Michał Górny
2025-04-11 4:53 Michał Górny
2025-02-22 9:20 Michał Górny
2025-02-22 8:53 Arthur Zamarin
2025-02-05 8:06 Michał Górny
2024-12-28 10:47 Michał Górny
2024-12-28 9:24 Arthur Zamarin
2024-12-21 11:34 Michał Górny
2024-12-21 11:31 Michał Górny
2024-12-08 3:16 Michał Górny
2024-12-04 7:46 Michał Górny
2024-11-09 9:55 Michał Górny
2024-11-09 9:02 Arthur Zamarin
2024-10-22 3:10 Michał Górny
2024-06-01 7:22 Michał Górny
2024-06-01 7:17 Arthur Zamarin
2024-05-15 2:08 Michał Górny
2024-05-14 6:16 Michał Górny
2024-04-27 8:26 Michał Górny
2024-04-27 6:53 Michał Górny
2024-04-11 4:25 Michał Górny
2024-02-14 12:36 Michał Górny
2024-02-14 12:26 Michał Górny
2024-01-30 14:19 Michał Górny
2024-01-23 4:39 Michał Górny
2023-11-29 10:30 Michał Górny
2023-11-29 10:26 Michał Górny
2023-11-09 4:15 Michał Górny
2023-05-28 16:25 Michał Górny
2022-12-25 17:33 Michał Górny
2022-11-17 6:15 Michał Górny
2022-10-24 19:42 Arthur Zamarin
2022-10-24 19:33 Arthur Zamarin
2022-09-23 20:06 Arthur Zamarin
2022-09-08 5:42 Michał Górny
2022-09-07 20:37 Sam James
2022-08-30 5:45 Michał Górny
2022-08-02 19:05 Michał Górny
2022-08-02 17:31 Arthur Zamarin
2022-06-30 17:09 Arthur Zamarin
2022-05-13 9:08 Michał Górny
2022-05-13 9:08 Michał Górny
2022-05-08 7:34 WANG Xuerui
2022-04-15 17:19 Arthur Zamarin
2022-03-15 13:23 Michał Górny
2022-01-01 10:49 Arthur Zamarin
2021-12-18 15:36 Michał Górny
2021-12-18 13:38 Arthur Zamarin
2021-11-17 20:46 Michał Górny
2021-09-25 22:00 Michał Górny
2021-09-25 19:53 Sam James
2021-08-21 7:56 Michał Górny
2021-05-06 11:38 Michał Górny
2021-03-02 8:25 Michał Górny
2021-03-02 1:34 Sam James
2021-01-15 7:35 Michał Górny
2020-09-20 8:35 Michał Górny
2020-07-09 12:20 Michał Górny
2020-05-30 7:12 Michał Górny
2020-05-25 19:48 Michał Górny
2020-05-11 17:33 Michał Górny
2020-05-11 6:23 Mart Raudsepp
2020-05-11 6:23 Mart Raudsepp
2020-05-08 9:36 Sergei Trofimovich
2020-05-06 6:28 Agostino Sarubbo
2020-05-04 16:51 Agostino Sarubbo
2020-05-03 15:05 Agostino Sarubbo
2020-05-03 13:00 Agostino Sarubbo
2020-03-27 21:06 Michał Górny
2020-03-27 21:06 Michał Górny
2020-03-27 21:06 Michał Górny
2020-03-04 5:01 Michał Górny
2020-03-02 11:49 Sergei Trofimovich
2020-03-02 6:41 Michał Górny
2020-02-24 12:53 Agostino Sarubbo
2020-02-24 12:49 Agostino Sarubbo
2020-02-24 11:43 Agostino Sarubbo
2020-02-24 11:31 Agostino Sarubbo
2020-02-24 11:28 Agostino Sarubbo
2020-02-24 10:07 Agostino Sarubbo
2020-02-24 10:04 Agostino Sarubbo
2020-02-24 9:02 Agostino Sarubbo
2020-02-21 18:09 Michał Górny
2020-02-21 18:09 Michał Górny
2019-12-27 19:41 Sebastian Pipping
2019-12-27 19:41 Sebastian Pipping
2019-12-27 19:41 Sebastian Pipping
2019-12-27 16:47 Sebastian Pipping
2019-12-04 6:48 Aaron Bauman
2018-07-14 23:20 Louis Sautier
2018-07-14 23:20 Louis Sautier
2018-06-08 8:10 Mikle Kolyada
2018-05-17 21:18 Sergei Trofimovich
2018-05-14 12:38 Tobias Klausmann
2018-05-03 5:49 Mart Raudsepp
2018-04-21 12:46 Mikle Kolyada
2018-04-16 18:36 Sergei Trofimovich
2018-04-15 18:58 Thomas Deutschmann
2018-04-15 18:24 Sergei Trofimovich
2018-04-15 9:20 Sergei Trofimovich
2018-04-14 16:39 Aaron Bauman
2018-02-18 0:03 Patrice Clement
2018-01-13 6:51 Mike Frysinger
2018-01-05 9:36 Michał Górny
2017-03-16 12:23 Michael Weber
2017-01-23 5:56 Jeroen Roovers
2017-01-15 20:35 Jeroen Roovers
2016-02-05 19:45 Justin Lecher
2015-11-20 1:23 Mike Frysinger
2015-09-12 7:30 Justin Lecher
2015-09-11 7:53 Justin Lecher
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1446025292.5f93a9013dda494c3bfa33d42b8510dd3bff41b2.jlec@gentoo \
--to=jlec@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox