Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/weakrefmethod/
Date: Mon, 27 Feb 2017 05:46:11
Message-Id: 1488174336.ecd9d6d1d8df2b8fc11f95c0e25bfd27833afa19.prometheanfire@gentoo
1 commit: ecd9d6d1d8df2b8fc11f95c0e25bfd27833afa19
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 27 05:13:58 2017 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 05:45:36 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecd9d6d1
7
8 dev-python/weakrefmethod: initial add
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/weakrefmethod/Manifest | 1 +
13 dev-python/weakrefmethod/metadata.xml | 19 ++++++++++++++++++
14 .../weakrefmethod/weakrefmethod-1.0.3.ebuild | 23 ++++++++++++++++++++++
15 3 files changed, 43 insertions(+)
16
17 diff --git a/dev-python/weakrefmethod/Manifest b/dev-python/weakrefmethod/Manifest
18 new file mode 100644
19 index 0000000000..f259b288b3
20 --- /dev/null
21 +++ b/dev-python/weakrefmethod/Manifest
22 @@ -0,0 +1 @@
23 +DIST weakrefmethod-1.0.3.tar.gz 7472 SHA256 37bc1fbb5575acf82172d4eb7b6fc4412d77d5a1d70dff2c1f8a4574301cda66 SHA512 c68dc806904eb954319984003506eb9b552005ce04722c6a3eb123ecde8f4413f9f9d114f0923c6f6ae2e25b4dbaf8c225c070a1720a6563cf1517f2411a60d5 WHIRLPOOL f34fd902a17cc134952ec51fb1025a78e288349d7f36cea9ab24f5155dd2112ee83416563c8f4cf60daf5129c6531dbec512e4bb5b56e52950b6a10317c2f35c
24
25 diff --git a/dev-python/weakrefmethod/metadata.xml b/dev-python/weakrefmethod/metadata.xml
26 new file mode 100644
27 index 0000000000..a40778af57
28 --- /dev/null
29 +++ b/dev-python/weakrefmethod/metadata.xml
30 @@ -0,0 +1,19 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>prometheanfire@g.o</email>
36 + <name>Matthew Thode</name>
37 + </maintainer>
38 + <maintainer type="project">
39 + <email>openstack@g.o</email>
40 + <name>Openstack</name>
41 + </maintainer>
42 + <longdescription lang="en">
43 + Backport of WeakMethod from Python 3.4 to Python 2.6+
44 + </longdescription>
45 + <upstream>
46 + <remote-id type="pypi">weakrefmethod</remote-id>
47 + <remote-id type="github">twang817/weakrefmethod</remote-id>
48 + </upstream>
49 +</pkgmetadata>
50
51 diff --git a/dev-python/weakrefmethod/weakrefmethod-1.0.3.ebuild b/dev-python/weakrefmethod/weakrefmethod-1.0.3.ebuild
52 new file mode 100644
53 index 0000000000..3de8b7a72b
54 --- /dev/null
55 +++ b/dev-python/weakrefmethod/weakrefmethod-1.0.3.ebuild
56 @@ -0,0 +1,23 @@
57 +# Copyright 1999-2017 Gentoo Foundation
58 +# Distributed under the terms of the GNU General Public License v2
59 +# $Id$
60 +
61 +EAPI=6
62 +
63 +PYTHON_COMPAT=( python2_7 pypy )
64 +
65 +inherit distutils-r1
66 +
67 +DESCRIPTION="Backport of WeakMethod from Python 3.4 to Python 2.6+"
68 +HOMEPAGE="https://github.com/rholder/retrying"
69 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
70 +
71 +LICENSE="Apache-2.0"
72 +SLOT="0"
73 +KEYWORDS="~amd64 ~arm64 ~x86"
74 +IUSE=""
75 +
76 +DEPEND="
77 + dev-python/setuptools[${PYTHON_USEDEP}]
78 +"
79 +RDEPEND=""