public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Patrick Lauer" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/chameleon/
Date: Sat,  1 Oct 2016 21:12:53 +0000 (UTC)	[thread overview]
Message-ID: <1475356366.87b29765400f62fb1c08e69be64c76d5d11593dd.patrick@gentoo> (raw)

commit:     87b29765400f62fb1c08e69be64c76d5d11593dd
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  1 20:36:50 2016 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Sat Oct  1 21:12:46 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87b29765

dev-python/chameleon: Bump

Package-Manager: portage-2.3.0

 dev-python/chameleon/Manifest              |  1 +
 dev-python/chameleon/chameleon-2.25.ebuild | 41 ++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/chameleon/Manifest b/dev-python/chameleon/Manifest
index 0979215..b865dd9 100644
--- a/dev-python/chameleon/Manifest
+++ b/dev-python/chameleon/Manifest
@@ -3,3 +3,4 @@ DIST Chameleon-2.19.tar.gz 202197 SHA256 744070535f8e85a277aef07b0a98256aec5bf6a
 DIST Chameleon-2.20.tar.gz 202396 SHA256 557deb604cc2fb235441f449f44feb3942258fcf233c7e75fcae6adeb886ced4 SHA512 805189e49c6b326f82ffaefdb1d734e3959167a0e3523531f9c9c554fc8412ab4ae401aacae023a3ba43d18019a6fccebafae87f2c6bed6c1c2f5b1aff080153 WHIRLPOOL 1c84afca8e7eb6231f9caea4934351d347bfc6cb52025754b197595eac368fb9e5a6ae9888809aca99f80ca8f0544e54426bc284a2314033b07771156011e597
 DIST Chameleon-2.22.tar.gz 201994 SHA256 6eef8c58d1c58b94f6502d4213c92b2037f5ab66386b3da5b117213faa0bf7f7 SHA512 f81b52a8463d1f4619580b2d51bb9e2f67bb752b95382d7ffd0357b9e2d05854ce6539a3e518ed32e6df4d35ee3d247771ff47d8039e2bdfc4c0a732fb7885c2 WHIRLPOOL 66a289cf0ae33fc9b5d935623ce7de3227582518918e420078436669c52660e0053a7ffb0f65dccde95203591ce4626e52c6d4a030650c83c6f48efaf9f5be69
 DIST Chameleon-2.24.tar.gz 193359 SHA256 452e9580040ed8541062b16e21eaef4231dd5ed8da3ad9548246b9eef5c9787a SHA512 78b8d1d67745d335d733feecb3779dd73cd79ec0cab1f6c6ddf2b830ea798765c43e1cd93e685d0e7096435a364a125b35a7db77782e290d125c8e37824290a1 WHIRLPOOL b6b4a1443e1976e2d5b4749a898b9618e9bf0ef582afa41840e90c6e7c49f4a7a9db8702c9f6aa39c48c21264fe79d2b20272a5063b0c797f3767dc48f62a4bd
+DIST Chameleon-2.25.tar.gz 193965 SHA256 6b2740e077626306c10a659bb9fe80d2eb8b6ceb89b521dfbed2f1432b2b496d SHA512 b2ffc05c6ab5268757ae6a93a0579d8031dfe7e09882f0f3f0b9a25677ecf896af99a8e7cf6bec98648e9c8526365e7e517bc174d36137734968d80f3f14a05d WHIRLPOOL a5c043c92d7a4f2da79a49d82507d92613427edae10b044bd90154a614384ed7c2d97606332be5ec937121c244dfa1e04bc685d8dd27b1a2c3adb8b3e7e69d4a

diff --git a/dev-python/chameleon/chameleon-2.25.ebuild b/dev-python/chameleon/chameleon-2.25.ebuild
new file mode 100644
index 00000000..e0455b5
--- /dev/null
+++ b/dev-python/chameleon/chameleon-2.25.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
+
+inherit distutils-r1
+
+MY_PN="Chameleon"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Fast HTML/XML template compiler for Python"
+HOMEPAGE="http://chameleon.repoze.org https://pypi.python.org/pypi/Chameleon"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="repoze"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
+RDEPEND=""
+
+S="${WORKDIR}/${MY_P}"
+
+python_compile_all() {
+	use doc && emake html
+}
+
+python_test() {
+	esetup.py test
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( _build/html/{[a-z]*,_static} )
+
+	distutils-r1_python_install_all
+}


             reply	other threads:[~2016-10-01 21:12 UTC|newest]

Thread overview: 75+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-01 21:12 Patrick Lauer [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-05-27 12:08 [gentoo-commits] repo/gentoo:master commit in: dev-python/chameleon/ Michał Górny
2025-02-27 20:50 Michał Górny
2025-01-18 10:03 Michał Górny
2025-01-18  9:09 Arthur Zamarin
2025-01-01  6:18 Michał Górny
2024-06-18 16:57 Michał Górny
2024-05-17 17:03 Michał Górny
2024-04-24 17:15 Michał Górny
2024-04-24 15:31 Sam James
2024-04-20 11:23 Michał Górny
2024-04-20 10:49 Michał Górny
2024-04-09  6:01 Michał Górny
2024-04-05 19:45 Michał Górny
2024-02-14 12:36 Michał Górny
2024-02-14 12:26 Michał Górny
2024-01-30  4:07 Michał Górny
2024-01-29  5:58 Michał Górny
2024-01-27 12:10 Michał Górny
2024-01-18 18:49 Michał Górny
2024-01-18 18:37 Arthur Zamarin
2024-01-18 17:15 Arthur Zamarin
2023-12-31  7:17 Michał Górny
2023-12-20 16:48 Michał Górny
2023-12-20 16:26 Michał Górny
2023-12-19  6:11 Michał Górny
2023-12-13  4:38 Michał Górny
2023-12-04 13:45 Michał Górny
2023-11-24 14:46 Michał Górny
2023-10-28 15:23 Michał Górny
2023-09-30  5:44 Michał Górny
2023-09-30  5:28 Arthur Zamarin
2023-09-26  4:42 Michał Górny
2023-07-24 11:09 Michał Górny
2023-07-24 11:03 Jakov Smolić
2023-06-20  5:48 Michał Górny
2023-06-07  9:27 Sam James
2023-04-08 12:29 Michał Górny
2023-04-08 10:57 Arthur Zamarin
2023-03-07  7:08 Michał Górny
2022-12-16 19:00 Arthur Zamarin
2022-06-22  7:57 Michał Górny
2022-06-22  6:53 Agostino Sarubbo
2022-05-18  5:58 Michał Górny
2022-05-15 10:41 Michał Górny
2022-05-15 10:41 Michał Górny
2022-05-15  8:19 Jakov Smolić
2022-04-06 17:04 Michał Górny
2021-06-15  5:40 Michał Górny
2021-06-15  4:06 Sam James
2021-05-14  8:14 Michał Górny
2021-03-30 19:05 Michał Górny
2021-03-30 15:46 Sam James
2021-02-26 14:35 Michał Górny
2020-08-21 15:36 Agostino Sarubbo
2020-07-30 20:41 Michał Górny
2020-07-30 20:03 Sam James
2020-07-30 19:39 Sam James
2020-07-08 13:08 Michał Górny
2020-07-08 13:08 Michał Górny
2020-07-07  6:35 Michał Górny
2020-06-26 10:10 Michał Górny
2020-06-18 10:26 Michał Górny
2020-06-01  5:56 Michał Górny
2020-05-13  7:08 Michał Górny
2020-05-11 16:48 Michał Górny
2020-05-11  9:44 Agostino Sarubbo
2020-05-04 10:29 Michał Górny
2020-04-02  7:32 Michał Górny
2020-03-11 14:28 Michał Górny
2020-02-04 15:40 Michał Górny
2017-08-05  9:05 Michael Palimaka
2017-07-15 17:18 Tobias Klausmann
2017-04-22 16:41 Michał Górny
2016-02-18 12:38 Patrick Lauer

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=1475356366.87b29765400f62fb1c08e69be64c76d5d11593dd.patrick@gentoo \
    --to=patrick@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