From: "Manuel Rüger" <mrueg@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jinja/
Date: Wed, 18 Jan 2017 16:22:55 +0000 (UTC) [thread overview]
Message-ID: <1484756559.42e9f097b1d1fbb099176b6097bdbbeb8c14c3ec.mrueg@gentoo> (raw)
commit: 42e9f097b1d1fbb099176b6097bdbbeb8c14c3ec
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 18 16:22:39 2017 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Jan 18 16:22:39 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42e9f097
dev-python/jinja:
Package-Manager: Portage-2.3.3, Repoman-2.3.1
dev-python/jinja/Manifest | 1 +
dev-python/jinja/jinja-2.9.4.ebuild | 73 +++++++++++++++++++++++++++++++++++++
2 files changed, 74 insertions(+)
diff --git a/dev-python/jinja/Manifest b/dev-python/jinja/Manifest
index 24d72c1..9be0c27 100644
--- a/dev-python/jinja/Manifest
+++ b/dev-python/jinja/Manifest
@@ -2,3 +2,4 @@ DIST Jinja2-2.7.3.tar.gz 378470 SHA256 2e24ac5d004db5714976a04ac0e80c6df6e47e98c
DIST Jinja2-2.8.1.tar.gz 358129 SHA256 35341f3a97b46327b3ef1eb624aadea87a535b8f50863036e085e7c426ac5891 SHA512 0a2e2aa94f5c2f04f79d59d34d5324d2a440385b71192e85e960c761b4a073400e4ab0458e57305650f696a474593d6fbf398fb1d9518be261bb2a5cb866e163 WHIRLPOOL 380636268f903d05afda9c41296986d1c83949dead6c78d3e3cb880137a6c6ec06f0e2297169fc0ea8fd1348c9928f5841d37f951dd941fe89a8ccc96080e191
DIST Jinja2-2.8.tar.gz 357055 SHA256 bc1ff2ff88dbfacefde4ddde471d1417d3b304e8df103a7a9437d47269201bf4 SHA512 2e80d6d9ad10dafcce1e6dd24493f5dffc43a17f71a30a650415638e12d3a3891738ebacc569701129214026d062d91a2b10e4f7a2c7b85d801dde26ded1bebb WHIRLPOOL 31adc38738848aa224cceb0d0afb2b85eb080d166ed84f145eb0576eeedfb91cf8d99d7c98b6a6cc6ab4fedf33fdbe3171c80fd559df48036a7441232702e749
DIST jinja-2.9.3.tar.gz 415502 SHA256 1ddce1c6a45de023692aa56c2b68232dbeac6ffd83741b3876ee36f1a1a4e704 SHA512 7f5fdfde6b8c64050a27c39460ec9907cab52afe49aff83ec38ac8ad92ef97c8e592efefc633cd2a95336b551fd6a1adfeb92446aa53c5a2a8765d03feab8311 WHIRLPOOL 6fccde87f7f3c77a619a0e005118abb4f59964610a314df932c60477b45e7a18a681c3103f55f150fd8a0b83938f845577c249e9cd5b16442f6044a505b27e73
+DIST jinja-2.9.4.tar.gz 416465 SHA256 7e7dc5aca0d4e39814a138e360284ad3d92647f480df4236e355acc542f5413b SHA512 60764e31878478c5b5adb60da8ddb8afd5d0982733728b87340f03abb5ad9092350ff8374d42cbd5be84d08904d06f0dbda2ef05f4dfbdc30110af9ab2472e5e WHIRLPOOL 8c0c34691f51373c64a158e043fd8ead01bd7454905ccf1a901901c52da80d35264023b7a65aa5878b87630b323d13d7cfae2470e472cb0204618ae9f607c99a
diff --git a/dev-python/jinja/jinja-2.9.4.ebuild b/dev-python/jinja/jinja-2.9.4.ebuild
new file mode 100644
index 00000000..59c208a
--- /dev/null
+++ b/dev-python/jinja/jinja-2.9.4.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{4,5} pypy pypy3 )
+PYTHON_REQ_USE="threads(+)"
+
+inherit eutils distutils-r1
+
+DESCRIPTION="A full-featured template engine for Python"
+HOMEPAGE="http://jinja.pocoo.org/ https://pypi.python.org/pypi/Jinja2"
+
+# pypi tarball is missing tests
+SRC_URI="https://github.com/pallets/jinja/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
+IUSE="doc examples test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-python/markupsafe[${PYTHON_USEDEP}]
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ !dev-python/jinja:compat"
+DEPEND="${RDEPEND}
+ doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+ test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+
+# XXX: handle Babel better?
+
+wrap_opts() {
+ local mydistutilsargs=()
+
+ if [[ ${EPYTHON} == python* ]]; then
+ mydistutilargs+=( --with-debugsupport )
+ fi
+
+ "${@}"
+}
+
+python_compile() {
+ wrap_opts distutils-r1_python_compile
+ if [[ ${EPYTHON} == python3.2 ]]; then
+ 2to3 --no-diffs -n -w -f unicode "${BUILD_DIR}/lib" || die
+ fi
+}
+
+python_compile_all() {
+ use doc && emake -C docs html
+}
+
+python_test() {
+ py.test || die
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( docs/_build/html/. )
+ use examples && local EXAMPLES=( examples/. )
+
+ distutils-r1_python_install_all
+
+ insinto /usr/share/vim/vimfiles/syntax
+ doins ext/Vim/*
+}
+
+pkg_postinst() {
+ if ! has_version dev-python/Babel; then
+ elog "For i18n support, please emerge dev-python/Babel."
+ fi
+}
next reply other threads:[~2017-01-18 16:22 UTC|newest]
Thread overview: 99+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-18 16:22 Manuel Rüger [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-06-01 8:09 [gentoo-commits] repo/gentoo:master commit in: dev-python/jinja/ Michał Górny
2024-06-01 7:25 Arthur Zamarin
2024-05-06 4:39 Michał Górny
2024-01-11 11:46 Michał Górny
2024-01-11 9:38 Sam James
2024-01-11 4:40 Michał Górny
2023-05-23 16:15 Michał Górny
2023-03-16 18:13 Michał Górny
2022-05-31 7:22 Michał Górny
2022-05-31 7:13 Sam James
2022-05-11 12:10 Michał Górny
2022-04-28 18:48 Michał Górny
2022-04-26 16:56 Michał Górny
2022-04-26 16:43 Arthur Zamarin
2022-03-27 16:32 Michał Górny
2022-03-25 23:21 Michał Górny
2022-03-25 0:02 Michał Górny
2022-02-04 18:45 Michał Górny
2021-12-10 17:39 Michał Górny
2021-12-10 11:27 Arthur Zamarin
2021-11-10 7:32 Michał Górny
2021-11-05 8:54 Michał Górny
2021-11-05 2:12 Sam James
2021-10-05 8:27 Michał Górny
2021-06-25 20:06 Michał Górny
2021-06-25 19:36 Sam James
2021-06-16 15:40 Sergei Trofimovich
2021-06-16 10:36 Sam James
2021-06-16 10:34 Sam James
2021-06-16 10:34 Sam James
2021-06-16 6:53 Agostino Sarubbo
2021-06-15 7:06 Agostino Sarubbo
2021-06-15 7:06 Agostino Sarubbo
2021-05-18 21:43 Michał Górny
2021-05-12 8:37 Michał Górny
2021-02-03 1:00 Michał Górny
2021-02-03 0:02 Sam James
2021-01-31 18:31 Michał Górny
2020-09-20 14:19 Michał Górny
2020-08-09 14:57 Mikle Kolyada
2020-07-27 20:06 Aaron Bauman
2020-07-09 10:39 Michał Górny
2020-07-09 8:41 Agostino Sarubbo
2020-07-09 8:27 Agostino Sarubbo
2020-05-26 10:35 Michał Górny
2020-05-11 19:33 Michał Górny
2020-04-14 5:33 Michał Górny
2020-03-27 19:09 Michał Górny
2020-03-27 19:09 Michał Górny
2020-03-27 19:09 Michał Górny
2020-03-04 12:33 Michał Górny
2020-03-04 5:01 Michał Górny
2020-03-02 11:49 Sergei Trofimovich
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-23 12:17 Mikle Kolyada
2020-02-21 17:28 Michał Górny
2020-02-21 17:28 Michał Górny
2020-02-11 11:42 Alexey Shvetsov
2019-11-16 18:55 Patrick McLean
2019-11-15 23:01 Patrick McLean
2019-06-06 11:55 Virgil Dupras
2019-06-06 6:46 Agostino Sarubbo
2019-06-04 18:51 Agostino Sarubbo
2019-05-26 7:04 Sergei Trofimovich
2019-05-22 7:36 Sergei Trofimovich
2019-05-16 23:56 Thomas Deutschmann
2019-05-15 15:05 Mikle Kolyada
2019-05-14 8:08 Sergei Trofimovich
2019-05-13 20:31 Aaron Bauman
2019-04-25 23:50 Patrick McLean
2018-12-08 17:41 Mikle Kolyada
2018-02-19 21:07 Michał Górny
2018-01-04 21:50 Michał Górny
2017-11-20 19:16 Manuel Rüger
2017-09-12 9:13 Fabian Groffen
2017-06-15 18:19 Markus Meier
2017-05-22 16:48 Tobias Klausmann
2017-05-22 11:40 Agostino Sarubbo
2017-05-19 21:44 Michael Weber
2017-05-06 11:13 Jeroen Roovers
2017-05-03 11:41 Michał Górny
2017-04-06 23:56 Manuel Rüger
2017-03-26 4:16 Matt Thode
2017-02-09 16:39 Lars Wendler
2017-02-09 16:39 Lars Wendler
2017-01-09 2:34 Mike Gilbert
2017-01-09 2:17 Mike Gilbert
2017-01-08 8:37 Dirkjan Ochtman
2016-12-29 20:26 Dirkjan Ochtman
2016-10-01 13:59 Jeroen Roovers
2016-06-01 10:00 Tobias Klausmann
2016-05-28 11:10 Markus Meier
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=1484756559.42e9f097b1d1fbb099176b6097bdbbeb8c14c3ec.mrueg@gentoo \
--to=mrueg@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