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/decorator/
Date: Thu, 22 Feb 2018 19:59:21
Message-Id: 1519329531.af1e35c79f70d55b2ab9a174bfbb0afbb85227f3.prometheanfire@gentoo
1 commit: af1e35c79f70d55b2ab9a174bfbb0afbb85227f3
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 22 18:54:46 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 22 19:58:51 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af1e35c7
7
8 dev-python/decorator: 4.2.1 bup
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-python/decorator/Manifest | 1 +
13 dev-python/decorator/decorator-4.2.1.ebuild | 29 +++++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/dev-python/decorator/Manifest b/dev-python/decorator/Manifest
17 index 51741f81069..c3683cd8a91 100644
18 --- a/dev-python/decorator/Manifest
19 +++ b/dev-python/decorator/Manifest
20 @@ -1 +1,2 @@
21 DIST decorator-4.1.2.tar.gz 32325 BLAKE2B 19754506bf18f03748d61fe3cf85e13e91f5a7b4b3550cf087b1c9506fa2d10a4fb6c32914f7c2078a74ac34f5ffaf0edf8b15aa1f46d2eafa91926c40430dba SHA512 4a4b9dc39de9b3f00eae9b6829136f5d836355d3d719371440f69c33fdddf73636e9faaa8fc35829c64d5c5a61d968ea427267da944c524c22ad08b69fb6f0ff
22 +DIST decorator-4.2.1.tar.gz 33376 BLAKE2B 29a03fb4af1de8c60c5ba4a4b30f59f8b1aa8bbde107b9d5719cc0a084c45b58f7e14ff2046d7247c43d57717db57aea0db52dc068d73a73188a0e022c058cbb SHA512 8a6fc53f830470fe15d4bf9dfe8cea434019aa2e1734e55f873dc617138a6ba75d63ddf50a3fcd21a8f67d9d1b19c35c75149d8cee157e909aff4873093c4e0e
23
24 diff --git a/dev-python/decorator/decorator-4.2.1.ebuild b/dev-python/decorator/decorator-4.2.1.ebuild
25 new file mode 100644
26 index 00000000000..cabace0b36c
27 --- /dev/null
28 +++ b/dev-python/decorator/decorator-4.2.1.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Simplifies the usage of decorators for the average programmer"
40 +HOMEPAGE="https://github.com/micheles/decorator https://pypi.python.org/pypi/decorator"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
46 +IUSE="doc"
47 +
48 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
49 +
50 +DOCS=( docs/README.rst )
51 +
52 +python_test() {
53 + "${PYTHON}" src/tests/test.py || die "Tests fail with ${EPYTHON}"
54 +}
55 +
56 +python_install_all() {
57 + distutils-r1_python_install_all
58 +}