From: "Patrice Clement" <monsieurp@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/backports-functools-lru-cache/
Date: Tue, 6 Jun 2017 21:38:51 +0000 (UTC) [thread overview]
Message-ID: <1496785125.e819efd10e7ef9b8db0e4a56a4f34d152bea1d77.monsieurp@gentoo> (raw)
commit: e819efd10e7ef9b8db0e4a56a4f34d152bea1d77
Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
AuthorDate: Tue Jun 6 00:01:45 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Jun 6 21:38:45 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e819efd1
dev-python/backports-functools-lru-cache: version bump to 1.4 and fix doc build.
Gentoo-Bug: https://bugs.gentoo.org/619028
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4864
dev-python/backports-functools-lru-cache/Manifest | 1 +
.../backports-functools-lru-cache-1.4.ebuild | 54 ++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/dev-python/backports-functools-lru-cache/Manifest b/dev-python/backports-functools-lru-cache/Manifest
index 74da02cff12..81ac1051ba7 100644
--- a/dev-python/backports-functools-lru-cache/Manifest
+++ b/dev-python/backports-functools-lru-cache/Manifest
@@ -1,2 +1,3 @@
DIST backports.functools_lru_cache-1.2.1.tar.gz 5763 SHA256 1c20e07f1a8a36a19d5d258b6b076e588d78d8fc7c2c4487ffe3a280f55a7bd1 SHA512 e15e6bbddf252ed48f787a26c9ef693ccceb8ec5b3463f0926d58a1d2720b988cd86b869ec72afc66369a7968316b9eb3ae0b628f1c63a116c2360900df85691 WHIRLPOOL 4d604f38e659117230e58180c6996e1f7b0f1d7c580ffcb5dde947e0d11078989b695fbd50672e65baac6f0bb4fb7612f506084d7589adf4f37720e70fded367
DIST backports.functools_lru_cache-1.3.tar.gz 6685 SHA256 444a21bcec4ae177da554321f81a78dc879eaa8f6ea9920cb904830585d31e95 SHA512 946156266d4b1bccb3eb444d1cceff6568b8c2a62e09bc9197281bdafe912069efa4c857089a7e6ea0247ab9407256a7a7c92485599692e0c0159c428137a342 WHIRLPOOL a4cccbfd49acc640c1e15949919e10343c00f966e22bac7a2dc82af776f35cadce825a7757c5dca32b189797303abedc93aecf3000203819ee869bbb37ac4a03
+DIST backports.functools_lru_cache-1.4.tar.gz 6927 SHA256 31f235852f88edc1558d428d890663c49eb4514ffec9f3650e7f3c9e4a12e36f SHA512 78dcd12f392bc110d1556f567a9f8fe977fa4ddc98a2121ceaf43606687171866832b8d32220dfb4ca335f53e89acecabda9e48ad48571f1741b21ab2d3b8a21 WHIRLPOOL a223576df439818a247784e49d1d401807955a64eee4fdae9b937daaa96afc42e535819b4f6bbd0aaf04a0764a241809a79909ecda359ede60891dfb33305414
diff --git a/dev-python/backports-functools-lru-cache/backports-functools-lru-cache-1.4.ebuild b/dev-python/backports-functools-lru-cache/backports-functools-lru-cache-1.4.ebuild
new file mode 100644
index 00000000000..a91b8b0f4d9
--- /dev/null
+++ b/dev-python/backports-functools-lru-cache/backports-functools-lru-cache-1.4.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 pypy )
+
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+MY_PN="${MY_PN//-/_}"
+DESCRIPTION="Backport of functools.lru_cache from Python 3.3"
+HOMEPAGE="https://github.com/jaraco/backports.functools_lru_cache"
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+RDEPEND="dev-python/backports[${PYTHON_USEDEP}]"
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
+ doc? (
+ >=dev-python/jaraco-packaging-3.2[${PYTHON_USEDEP}]
+ dev-python/sphinx[${PYTHON_USEDEP}]
+ dev-python/rst-linker[${PYTHON_USEDEP}]
+ )
+ test? (
+ >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+ )
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+python_compile_all() {
+ if use doc; then
+ cd docs || die
+ sphinx-build . _build/html || die
+ HTML_DOCS=( docs/_build/html/. )
+ fi
+}
+
+python_test() {
+ PYTHONPATH=. py.test || die "tests failed with ${EPYTHON}"
+}
+
+python_install_all() {
+ distutils-r1_python_install_all
+
+ # avoid a collision with dev-python/backports
+ find "${D}" -path '*/backports/__init__.py' -delete || die
+}
next reply other threads:[~2017-06-06 21:38 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-06 21:38 Patrice Clement [this message]
-- strict thread matches above, loose matches on Subject: below --
2020-05-04 10:23 [gentoo-commits] repo/gentoo:master commit in: dev-python/backports-functools-lru-cache/ Michał Górny
2020-04-18 9:52 Sergei Trofimovich
2020-04-09 18:40 Sergei Trofimovich
2020-03-29 17:33 Sergei Trofimovich
2020-03-29 14:45 Sergei Trofimovich
2020-03-29 9:40 Sergei Trofimovich
2020-03-29 9:34 Sergei Trofimovich
2020-03-27 16:31 Agostino Sarubbo
2020-03-27 13:29 Agostino Sarubbo
2020-03-26 18:01 Sergei Trofimovich
2020-03-26 13:49 Michał Górny
2020-03-26 13:49 Michał Górny
2019-11-07 13:03 Louis Sautier
2018-06-24 14:44 Louis Sautier
2018-02-05 18:37 Michał Górny
2018-02-05 18:37 Michał Górny
2017-12-27 19:02 Fabian Groffen
2017-11-28 20:48 Sergei Trofimovich
2017-11-25 18:51 Sergei Trofimovich
2017-11-25 18:51 Sergei Trofimovich
2017-11-25 18:51 Sergei Trofimovich
2017-11-23 22:31 Matt Turner
2017-11-10 1:08 Matt Turner
2017-08-06 12:45 Sergei Trofimovich
2017-08-05 19:25 Sergei Trofimovich
2017-07-26 9:40 Fabian Groffen
2017-07-10 13:15 Alexis Ballier
2017-06-17 17:24 Agostino Sarubbo
2017-06-17 15:36 Agostino Sarubbo
2017-06-16 7:57 Sergei Trofimovich
2017-06-15 20:52 Sergei Trofimovich
2017-06-14 19:49 Markus Meier
2017-06-10 17:17 Mike Gilbert
2017-06-06 21:38 Patrice Clement
2017-05-26 14:59 Agostino Sarubbo
2017-05-24 13:46 Agostino Sarubbo
2017-05-18 16:54 Michael Weber
2017-05-16 21:05 Michał Górny
2017-05-09 16:30 Markus Meier
2017-05-09 15:35 Michał Górny
2017-04-29 12:20 Jeroen Roovers
2017-04-24 12:44 Tobias Klausmann
2017-04-23 12:40 Agostino Sarubbo
2017-02-19 8:16 Markus Meier
2017-01-26 15:18 Tobias Klausmann
2016-10-05 7:35 Patrice Clement
2016-01-14 12:30 Ian Delaney
2015-12-29 23:36 Ian Delaney
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=1496785125.e819efd10e7ef9b8db0e4a56a4f34d152bea1d77.monsieurp@gentoo \
--to=monsieurp@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