Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/astropy-helpers/
Date: Sun, 20 Dec 2015 16:36:03
Message-Id: 1450629342.aa39bab748b42f68e72a7b0b53d6d03623c2664b.jlec@gentoo
1 commit: aa39bab748b42f68e72a7b0b53d6d03623c2664b
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 20 15:40:56 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 20 16:35:42 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa39bab7
7
8 dev-python/astropy-helpers: Version Bump
9
10 Package-Manager: portage-2.2.26
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/astropy-helpers/Manifest | 1 +
14 .../astropy-helpers/astropy-helpers-1.0.6.ebuild | 23 ++++++++++++++++++++++
15 2 files changed, 24 insertions(+)
16
17 diff --git a/dev-python/astropy-helpers/Manifest b/dev-python/astropy-helpers/Manifest
18 index e882381..2274164 100644
19 --- a/dev-python/astropy-helpers/Manifest
20 +++ b/dev-python/astropy-helpers/Manifest
21 @@ -1,3 +1,4 @@
22 DIST astropy-helpers-0.4.1.tar.gz 98477 SHA256 0b4e47e535e7226d8795efb9e9453cac9343759058970a20734e66f443074577 SHA512 85975268372624bec4024dfbe560ef820bda308db898919c4d29643f10df11636f4996a8ff3f2fb7deece44f88963ddb0c8ca231e030713cf17db7503ceae42e WHIRLPOOL b37fa02ebe3e750052a9681e1e8a3a0aa9eede1909e69c70e2004ba738139707e1a0c21797681454ee782a6543bc8808b8de574d60aba601d228966c8659bb9f
23 DIST astropy-helpers-1.0.3.tar.gz 127177 SHA256 0733f3081db46ec02faa08595dad9a72d79d0ed73e54fe3404620703d737594d SHA512 74d4f191290914cf51f91b9cc1a9ed168799a47f586c33505a4ebdef554b7e4cdc90625fbd9b8c9e29b44fc2a988fdf0f50446ce9461017a9755c7ec2a2b1ed4 WHIRLPOOL 43a00a990b3caabeeecefac90bbb91e2b42a7f184c66887855ea188b123f0b74125fb9b694e7d503e78dbed720769329b95aaddd17c16d65807113ec7253b448
24 DIST astropy-helpers-1.0.5.tar.gz 127951 SHA256 b872547580861564023f31a201dcb63d5e9f134f47f4224eb3904a6341b42507 SHA512 31e0c858f126d1e02167faaed2395529ade4e484d0c9c53f809d15de2fda68a4ce9dcd36951546c071d3556feb6f64ca4b0ed5678405af57cb80f3e0cf8de13d WHIRLPOOL 1481eff853e04c94dd95f689c148a68f83cc18d7026f766d2af7d6c4ffc5c0f9eca107c3403b9295f245aed3dea562377ba59cf2bbb303d4653fb4712f6a037c
25 +DIST astropy-helpers-1.0.6.tar.gz 126274 SHA256 3651a854fafd0184252639775aab9776331f8ae1bbadd920169d6dc1914095e3 SHA512 c3fa2e329094c5e319b493d2c8889b1158dfdcb8845dc978274a4333167b5069228d9c9ac585e0759b1002776d4597b2a23cf5d276d9c971122919afddb8f277 WHIRLPOOL 83467c958a762fb3b045b6e8e168572012ef308b6aaac7f92c5992e5207cd26efb6cbb5ce617e5701ab2c8d23f169af939052dc2bd50195b9163f3a8db5d6b3f
26
27 diff --git a/dev-python/astropy-helpers/astropy-helpers-1.0.6.ebuild b/dev-python/astropy-helpers/astropy-helpers-1.0.6.ebuild
28 new file mode 100644
29 index 0000000..ef25606
30 --- /dev/null
31 +++ b/dev-python/astropy-helpers/astropy-helpers-1.0.6.ebuild
32 @@ -0,0 +1,23 @@
33 +# Copyright 1999-2015 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=5
38 +
39 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="Helpers for Astropy and Affiliated packages"
44 +HOMEPAGE="https://github.com/astropy/astropy-helpers"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="BSD"
48 +SLOT="0"
49 +IUSE=""
50 +KEYWORDS="~amd64 ~x86 ~x86-linux"
51 +
52 +python_prepare_all() {
53 + sed -e '/import ah_bootstrap/d' -i setup.py || die "Removing ah_bootstrap failed"
54 + distutils-r1_python_prepare_all
55 +}