Gentoo Archives: gentoo-commits

From: Ian Delaney <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/backports-functools-lru-cache/
Date: Tue, 29 Dec 2015 23:36:54
Message-Id: 1451403160.c517ae70f013dfc01107e68bd5e8b78a5db4d33c.idella4@gentoo
1 commit: c517ae70f013dfc01107e68bd5e8b78a5db4d33c
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Tue Dec 29 15:32:40 2015 +0000
4 Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 29 15:32:40 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c517ae70
7
8 dev-python/backports-functools-lru-cache: needed as a new dep to dev-python/irc
9
10 Package-Manager: portage-2.2.26
11
12 dev-python/backports-functools-lru-cache/Manifest | 1 +
13 .../backports-functools-lru-cache-1.2.ebuild | 41 ++++++++++++++++++++++
14 .../backports-functools-lru-cache/metadata.xml | 14 ++++++++
15 3 files changed, 56 insertions(+)
16
17 diff --git a/dev-python/backports-functools-lru-cache/Manifest b/dev-python/backports-functools-lru-cache/Manifest
18 new file mode 100644
19 index 0000000..6fb6571
20 --- /dev/null
21 +++ b/dev-python/backports-functools-lru-cache/Manifest
22 @@ -0,0 +1 @@
23 +DIST backports.functools_lru_cache-1.2.tar.gz 5325 SHA256 c2dab0234ef7b0cddfebc46a4c61e9fdbd87d824f356c24a355f6b4446068da4 SHA512 4f537fa2c61b9e2e77148fa0eb1c4ce49c4238a032d6009c66e71d1a41a2ec0cf187902ff448d3fc4603e03c35fed52513546fac08184ad5a806e518a98d58ac WHIRLPOOL af26a7edc20bc7ea8d38fbcabe7b418cff4ac1b7f33607513e0db9f0537a26f5ebac7521eda50481b964f2cae9f4e53bc57e51d76f633f0806e95c1a72d9dc76
24
25 diff --git a/dev-python/backports-functools-lru-cache/backports-functools-lru-cache-1.2.ebuild b/dev-python/backports-functools-lru-cache/backports-functools-lru-cache-1.2.ebuild
26 new file mode 100644
27 index 0000000..edcd64a
28 --- /dev/null
29 +++ b/dev-python/backports-functools-lru-cache/backports-functools-lru-cache-1.2.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +PYTHON_COMPAT=( python2_7 )
38 +
39 +inherit distutils-r1
40 +
41 +MY_PN="${PN/-/.}"
42 +MY_PN="${MY_PN//-/_}"
43 +DESCRIPTION="Backport of functools.lru_cache from Python 3.3"
44 +HOMEPAGE="https://github.com/jaraco/backports.functools_lru_cache"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +IUSE="test"
51 +
52 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
53 + >=dev-python/setuptools_scm-1.9[${PYTHON_USEDEP}]
54 + test? (
55 + >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
56 + dev-python/pytest-runner[${PYTHON_USEDEP}]
57 + )
58 +"
59 +
60 +S="${WORKDIR}/${MY_PN}-${PV}"
61 +
62 +python_prepare_all() {
63 + if use test && has_version "${CATEGORY}/${PN}"; then
64 + die "Ensure $PN is not already installed or the test suite will fail"
65 + fi
66 + distutils-r1_python_prepare_all
67 +}
68 +
69 +python_test() {
70 + PYTHONPATH=. py.test || die "tests failed with ${EPYTHON}"
71 +}
72
73 diff --git a/dev-python/backports-functools-lru-cache/metadata.xml b/dev-python/backports-functools-lru-cache/metadata.xml
74 new file mode 100644
75 index 0000000..1b0a4e9
76 --- /dev/null
77 +++ b/dev-python/backports-functools-lru-cache/metadata.xml
78 @@ -0,0 +1,14 @@
79 +<?xml version="1.0" encoding="UTF-8"?>
80 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
81 +<pkgmetadata>
82 + <herd>proxy-maintainers</herd>
83 + <maintainer>
84 + <email>sautier.louis@×××××.com</email>
85 + <name>Louis Sautier</name>
86 + <description>Proxied maintainer; set to assignee in all bugs</description>
87 + </maintainer>
88 + <upstream>
89 + <remote-id type="pypi">backports.functools_lru_cache</remote-id>
90 + <remote-id type="github">jaraco/backports.functools_lru_cache</remote-id>
91 + </upstream>
92 +</pkgmetadata>