Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/promise/
Date: Tue, 31 Jul 2018 08:01:04
Message-Id: 1533024046.dc4692a46d953bcb94e7988fd23636432ff94103.monsieurp@gentoo
1 commit: dc4692a46d953bcb94e7988fd23636432ff94103
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 31 07:58:59 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 31 08:00:46 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc4692a4
7
8 dev-python/promise: version bump.
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-python/promise/Manifest | 1 +
13 dev-python/promise/promise-2.1.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/promise/Manifest b/dev-python/promise/Manifest
17 index e0cb7609c29..760c730bbfa 100644
18 --- a/dev-python/promise/Manifest
19 +++ b/dev-python/promise/Manifest
20 @@ -1 +1,2 @@
21 DIST promise-0.4.2.tar.gz 7309 BLAKE2B 8d08c3985c6410d2b684bc27e300f4e5df620d3e035e127010a15ce2d774365f621eb4c3525b4422295d38cd62b5fcef2135758dd331d5769a86eca26ee378f7 SHA512 e3f0bd3dddfe3a304cb51d857418c8b8993f6e97c1a9e64622438869952174275ef4631259d5e6f090bfb39d4a2fd6bca8fe50ada5bb8ccea19ff726adcde7fd
22 +DIST promise-2.1.tar.gz 17974 BLAKE2B 5e1fc9bbed3af51812c43b1c13006037ada44404564a3064cb2e39657f6bb5dc0fec6d052ae9038439c60339fd4f4b5fa97330571398bf84243805b25ead94e8 SHA512 d4d5628c9b75f81fdb5d654a76e788df5296472cd73bcb8fd9a27979b8aadeb1d40a4d52cfed173341a5a97920132b00cee44d915ef640167127a249b5c0cac0
23
24 diff --git a/dev-python/promise/promise-2.1.ebuild b/dev-python/promise/promise-2.1.ebuild
25 new file mode 100644
26 index 00000000000..e9a2866b834
27 --- /dev/null
28 +++ b/dev-python/promise/promise-2.1.ebuild
29 @@ -0,0 +1,26 @@
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=( python{3_4,3_5} )
36 +
37 +DISTUTILS_SINGLE_IMPL=1
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Bytecode optimisation using staticness assertions"
42 +HOMEPAGE="https://github.com/rfk/promise/ https://pypi.org/project/promise/"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="test"
49 +
50 +DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"
51 +RDEPEND="${PYTHON_DEPS}"
52 +
53 +python_test() {
54 + nosetests -v || die
55 +}