Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/atom/
Date: Thu, 26 Apr 2018 03:32:14
Message-Id: 1524713374.9d67aaff6059f3c01c6c551a53e3f8d10f5df367.asturm@gentoo
1 commit: 9d67aaff6059f3c01c6c551a53e3f8d10f5df367
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 25 19:45:50 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 26 03:29:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d67aaff
7
8 dev-python/atom: Drop old
9
10 Bug: https://bugs.gentoo.org/649100
11 Package-Manager: Portage-2.3.31, Repoman-2.3.9
12
13 dev-python/atom/Manifest | 1 -
14 dev-python/atom/atom-0.3.10.ebuild | 49 --------------------------------------
15 2 files changed, 50 deletions(-)
16
17 diff --git a/dev-python/atom/Manifest b/dev-python/atom/Manifest
18 index f2c23a694f8..599eff80201 100644
19 --- a/dev-python/atom/Manifest
20 +++ b/dev-python/atom/Manifest
21 @@ -1,2 +1 @@
22 -DIST atom-0.3.10.zip 102102 BLAKE2B ed67aac137ed1ec983d45296756a6cd716201f412783287e2c054edae1d4ac25923fa53af832d77e5ec2c9ce4ee064d2be8013526e41b679235e5eeacccbf39f SHA512 ae22747f96e42b9cc4f7c92ddb7d7b8af647e17b917481cd267d4162bd9260b906a019a73de2ca6e3c72a9430dacd535001da7dcb809c1c3dc18c7297be14b76
23 DIST atom-0.4.1.tar.gz 65082 BLAKE2B 9f2f1fe4a910e69a083567472d1d442570b922e1aafd3a94ec55541b406d7fa876a5260193137f9de37b1c44fd97f95d0868fd345cc82e0c1c73683c149aa2e7 SHA512 95c5b5a78fb8466a78b8f983290e722d7f797ecbd9d149e37f2f52f0604c932bb747c791a4d16922535e0ef2c992c59021c2f695563d5a320a86538a6a80b958
24
25 diff --git a/dev-python/atom/atom-0.3.10.ebuild b/dev-python/atom/atom-0.3.10.ebuild
26 deleted file mode 100644
27 index d98b0c8d4f6..00000000000
28 --- a/dev-python/atom/atom-0.3.10.ebuild
29 +++ /dev/null
30 @@ -1,49 +0,0 @@
31 -# Copyright 1999-2015 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -PYTHON_COMPAT=( python2_7 )
36 -
37 -inherit distutils-r1 flag-o-matic
38 -
39 -DESCRIPTION="Memory efficient Python objects"
40 -HOMEPAGE="https://github.com/nucleic/atom"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
42 -
43 -LICENSE="Clear-BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE="examples test"
47 -
48 -RDEPEND=""
49 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
50 - app-arch/unzip
51 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
52 -
53 -python_prepare_all() {
54 - # Required to avoid file collisions at install
55 - sed -e "s:find_packages():find_packages(exclude=['tests']):" -i setup.py || die
56 -
57 - # Reset from use of local paths
58 - if use test; then
59 - sed -e 's:from .catom:from catom:g' -i ${PN}/*.py || die
60 - fi
61 -
62 - append-flags -fno-strict-aliasing
63 -
64 - distutils-r1_python_prepare_all
65 -}
66 -
67 -python_test() {
68 - PYTHONPATH="${BUILD_DIR}"/lib:"${BUILD_DIR}"/lib/${PN} \
69 - nosetests || die "Tests failed"
70 - pushd "${BUILD_DIR}"/lib > /dev/null
71 - # Change the state back to original ready for installing
72 - sed -e 's:from catom:from .catom:g' -i ${PN}/*.py
73 - popd > /dev/null
74 -}
75 -
76 -python_install_all() {
77 - use examples && local EXAMPLES=( examples/. )
78 - distutils-r1_python_install_all
79 -}