Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/node-semver/
Date: Fri, 05 Jan 2018 13:26:19
Message-Id: 1515158741.770907654306be8ca7cb15cbf6b15e39c6336f55.mgorny@gentoo
1 commit: 770907654306be8ca7cb15cbf6b15e39c6336f55
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 5 09:53:13 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 13:25:41 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77090765
7
8 dev-python/node-semver: Clean old up
9
10 dev-python/node-semver/Manifest | 1 -
11 dev-python/node-semver/node-semver-0.1.1.ebuild | 32 -------------------------
12 2 files changed, 33 deletions(-)
13
14 diff --git a/dev-python/node-semver/Manifest b/dev-python/node-semver/Manifest
15 index a913a140bb3..98bbc500a8f 100644
16 --- a/dev-python/node-semver/Manifest
17 +++ b/dev-python/node-semver/Manifest
18 @@ -1,2 +1 @@
19 -DIST node-semver-0.1.1.tar.gz 18338 BLAKE2B cfb9c74cb3cf84725de7de5a97766616f0327f7db0f91687f4448fca8d3f47505060f0580bc27bd0c7d53c160ccda29159f07345949d1132a12cff410ab08fcf SHA512 f652a69330907722d1e6449f237ae6c006a11c48f49b450d390700704309672573add77c103fc53d052014e751949348b344b001acf85ae6668e504811a1d198
20 DIST node-semver-0.2.0.tar.gz 10236 BLAKE2B f4f48761a0086b8a2e79307427b4dc93954362452f653042582024cee593b4b7fefb1a14d3d4ea6832255209b054c9bdb05b02cb101af1e359a1266c472c5149 SHA512 7c636d94a262723c5e50123433c9c7af38424c46711c1b8e001931b242fc9703a084a0426b75e6884104a4adc6104a298355bf3c1604b9cae0ddab7d5f11b430
21
22 diff --git a/dev-python/node-semver/node-semver-0.1.1.ebuild b/dev-python/node-semver/node-semver-0.1.1.ebuild
23 deleted file mode 100644
24 index 6285b77acb5..00000000000
25 --- a/dev-python/node-semver/node-semver-0.1.1.ebuild
26 +++ /dev/null
27 @@ -1,32 +0,0 @@
28 -# Copyright 1999-2017 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=6
32 -
33 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
34 -
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="Python version of node-semver, the semantic versioner for npm"
38 -HOMEPAGE="
39 - https://pypi.python.org/pypi/node-semver
40 - https://github.com/podhmo/python-semver
41 - https://github.com/npm/node-semver"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
47 -IUSE="test"
48 -
49 -DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
50 -
51 -python_prepare_all() {
52 - # https://github.com/podhmo/python-semver/issues/4
53 - sed -i -e "/github.com/d" semver/tests/test_negative_range.py || die
54 - distutils-r1_python_prepare_all
55 -}
56 -
57 -python_test() {
58 - py.test || die
59 -}