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/semantic_version/
Date: Mon, 27 Feb 2017 02:51:38
Message-Id: 1488163481.366427976a501f4fbc2c7e3a48891b8cf4e10c28.prometheanfire@gentoo
1 commit: 366427976a501f4fbc2c7e3a48891b8cf4e10c28
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 27 02:44:41 2017 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 02:44:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36642797
7
8 dev-python/semantic_version: bup
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/semantic_version/Manifest | 1 +
13 .../semantic_version/semantic_version-2.6.0.ebuild | 23 ++++++++++++++++++++++
14 2 files changed, 24 insertions(+)
15
16 diff --git a/dev-python/semantic_version/Manifest b/dev-python/semantic_version/Manifest
17 index 89da8b1ef9..5ae44e5b5c 100644
18 --- a/dev-python/semantic_version/Manifest
19 +++ b/dev-python/semantic_version/Manifest
20 @@ -1 +1,2 @@
21 DIST semantic_version-2.4.2.tar.gz 30711 SHA256 7e8b7fa74a3bc9b6e90b15b83b9bc2377c78eaeae3447516425f475d5d6932d2 SHA512 485eb478645141999f9f4f807b7c001c7a9a11d46cc100d897df6f5cb1e7653faca4aca32c7c248bc8bcc543d233ae2a3897af11d8a05a2c5881cc7d267bc356 WHIRLPOOL 9721b86e5d6cc378a2ceaa0cca600e329bf1cdd14cfc524f730712effea6862d01de76dcce4d607eb19b99067f04fb07f73004637860c0324371caa57190f898
22 +DIST semantic_version-2.6.0.tar.gz 13919 SHA256 2a4328680073e9b243667b201119772aefc5fc63ae32398d6afafff07c4f54c0 SHA512 805449e7219aaa59d28cc267c27a6abab5cbbbfd52c72d66f24bcace39c9f864e4ed944a3dc614e14a700a5bc92272fa6420312f3169b01a4cfd9ddf3ffb42d6 WHIRLPOOL 293dec8e54ea1214891642e87972955f41286f1d4ef76f59a62a00996588a43aadfec893f451aa1733186f4d76ca67a2efe496f2f20412359c08fb11d5de1206
23
24 diff --git a/dev-python/semantic_version/semantic_version-2.6.0.ebuild b/dev-python/semantic_version/semantic_version-2.6.0.ebuild
25 new file mode 100644
26 index 0000000000..3a703983e9
27 --- /dev/null
28 +++ b/dev-python/semantic_version/semantic_version-2.6.0.ebuild
29 @@ -0,0 +1,23 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy )
35 +
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Python library providing a few tools handling SemVer in Python."
39 +HOMEPAGE="https://pypi.python.org/pypi/semantic_version"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm64 ~x86"
45 +IUSE=""
46 +
47 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
48 +RDEPEND=""
49 +
50 +python_test() {
51 + esetup.py test
52 +}