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, 05 Apr 2018 23:38:40
Message-Id: 1522970696.8fcb174a5ce2b781ba601cc7f5a9246763665560.asturm@gentoo
1 commit: 8fcb174a5ce2b781ba601cc7f5a9246763665560
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 5 23:01:55 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 5 23:24:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fcb174a
7
8 dev-python/atom: 0.4.1 version bump
9
10 Tests either fail or report success with "Ran 0 tests in 0.000s".
11 Not going to carry over the hackish attempt to fix tests from 0.3.10
12 that only achieves the latter.
13
14 Package-Manager: Portage-2.3.28, Repoman-2.3.9
15
16 dev-python/atom/Manifest | 1 +
17 dev-python/atom/atom-0.4.1.ebuild | 33 +++++++++++++++++++++++++++++++++
18 2 files changed, 34 insertions(+)
19
20 diff --git a/dev-python/atom/Manifest b/dev-python/atom/Manifest
21 index ccd3b328321..f2c23a694f8 100644
22 --- a/dev-python/atom/Manifest
23 +++ b/dev-python/atom/Manifest
24 @@ -1 +1,2 @@
25 DIST atom-0.3.10.zip 102102 BLAKE2B ed67aac137ed1ec983d45296756a6cd716201f412783287e2c054edae1d4ac25923fa53af832d77e5ec2c9ce4ee064d2be8013526e41b679235e5eeacccbf39f SHA512 ae22747f96e42b9cc4f7c92ddb7d7b8af647e17b917481cd267d4162bd9260b906a019a73de2ca6e3c72a9430dacd535001da7dcb809c1c3dc18c7297be14b76
26 +DIST atom-0.4.1.tar.gz 65082 BLAKE2B 9f2f1fe4a910e69a083567472d1d442570b922e1aafd3a94ec55541b406d7fa876a5260193137f9de37b1c44fd97f95d0868fd345cc82e0c1c73683c149aa2e7 SHA512 95c5b5a78fb8466a78b8f983290e722d7f797ecbd9d149e37f2f52f0604c932bb747c791a4d16922535e0ef2c992c59021c2f695563d5a320a86538a6a80b958
27
28 diff --git a/dev-python/atom/atom-0.4.1.ebuild b/dev-python/atom/atom-0.4.1.ebuild
29 new file mode 100644
30 index 00000000000..a58ad5387d5
31 --- /dev/null
32 +++ b/dev-python/atom/atom-0.4.1.ebuild
33 @@ -0,0 +1,33 @@
34 +# Copyright 1999-2018 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +
39 +PYTHON_COMPAT=( python2_7 python3_{5,6} )
40 +inherit distutils-r1 flag-o-matic
41 +
42 +DESCRIPTION="Memory efficient Python objects"
43 +HOMEPAGE="https://github.com/nucleic/atom"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="Clear-BSD"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +IUSE="test"
50 +
51 +RDEPEND=""
52 +DEPEND="
53 + dev-python/future[${PYTHON_USEDEP}]
54 + dev-python/setuptools[${PYTHON_USEDEP}]
55 + test? ( dev-python/nose[${PYTHON_USEDEP}] )"
56 +
57 +RESTRICT="test"
58 +
59 +python_prepare_all() {
60 + append-flags -fno-strict-aliasing
61 + distutils-r1_python_prepare_all
62 +}
63 +
64 +python_install_all() {
65 + distutils-r1_python_install_all
66 +}