Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sunpy/
Date: Sat, 28 Dec 2019 16:35:27
Message-Id: 1577550913.59aefb94b9b60a0a045a1d21944532e12b4d3e20.zlogene@gentoo
1 commit: 59aefb94b9b60a0a045a1d21944532e12b4d3e20
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 28 16:35:13 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 28 16:35:13 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59aefb94
7
8 dev-python/sunpy: remove last-rited pkg
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11
12 dev-python/sunpy/Manifest | 1 -
13 dev-python/sunpy/metadata.xml | 18 -------------
14 dev-python/sunpy/sunpy-0.8.0.ebuild | 52 -------------------------------------
15 3 files changed, 71 deletions(-)
16
17 diff --git a/dev-python/sunpy/Manifest b/dev-python/sunpy/Manifest
18 deleted file mode 100644
19 index 3d3b7f03eb0..00000000000
20 --- a/dev-python/sunpy/Manifest
21 +++ /dev/null
22 @@ -1 +0,0 @@
23 -DIST sunpy-0.8.0.tar.gz 6336169 BLAKE2B 554e64c27bb2c9c68629401bef83da3248a841c728d040fbda77465f04bd2c6a2cfb48f3a5df2bb0b15a306d6664f635aac7342e1135cf3bc61e1436a4db934a SHA512 7996fdcb47e4143159253180b2250ea7ac4aa8fecf8d3f1eae930da018d39ce4e663c843b4b0532e900f97d2bc9fadfd7c17837f4f045634820059a5af802eda
24
25 diff --git a/dev-python/sunpy/metadata.xml b/dev-python/sunpy/metadata.xml
26 deleted file mode 100644
27 index 1915944eec8..00000000000
28 --- a/dev-python/sunpy/metadata.xml
29 +++ /dev/null
30 @@ -1,18 +0,0 @@
31 -<?xml version="1.0" encoding="UTF-8"?>
32 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 -<pkgmetadata>
34 - <maintainer type="project">
35 - <email>sci-astronomy@g.o</email>
36 - <name>Gentoo Astronomy Project</name>
37 - </maintainer>
38 - <longdescription lang="en">
39 - SunPy is a community-developed free and open-source software package for
40 - solar physics. SunPy is meant to be a free alternative to the SolarSoft data
41 - analysis environment. The aim of the SunPy project is to provide the
42 - software tools necessary so that anyone can analyze solar data.
43 - </longdescription>
44 - <upstream>
45 - <remote-id type="pypi">sunpy</remote-id>
46 - <remote-id type="github">sunpy/sunpy</remote-id>
47 - </upstream>
48 -</pkgmetadata>
49
50 diff --git a/dev-python/sunpy/sunpy-0.8.0.ebuild b/dev-python/sunpy/sunpy-0.8.0.ebuild
51 deleted file mode 100644
52 index 7a6bdc96ec6..00000000000
53 --- a/dev-python/sunpy/sunpy-0.8.0.ebuild
54 +++ /dev/null
55 @@ -1,52 +0,0 @@
56 -# Copyright 1999-2019 Gentoo Authors
57 -# Distributed under the terms of the GNU General Public License v2
58 -
59 -EAPI=6
60 -
61 -PYTHON_COMPAT=( python3_{5,6} )
62 -
63 -inherit distutils-r1
64 -
65 -DESCRIPTION="Software library for solar physics based on Python"
66 -HOMEPAGE="https://sunpy.org/"
67 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
68 -
69 -LICENSE="BSD"
70 -SLOT="0"
71 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
72 -IUSE="jpeg2k test"
73 -RESTRICT="!test? ( test )"
74 -
75 -RDEPEND="
76 - >=dev-python/astropy-2[${PYTHON_USEDEP}]
77 - dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
78 - dev-python/matplotlib[${PYTHON_USEDEP}]
79 - >=dev-python/numpy-1.11[${PYTHON_USEDEP}]
80 - dev-python/pandas[${PYTHON_USEDEP}]
81 - dev-python/requests[${PYTHON_USEDEP}]
82 - dev-python/sqlalchemy[${PYTHON_USEDEP}]
83 - dev-python/suds[${PYTHON_USEDEP}]
84 - sci-libs/scipy[${PYTHON_USEDEP}]
85 - sci-libs/scikits_image[${PYTHON_USEDEP}]
86 - jpeg2k? ( dev-python/glymur[${PYTHON_USEDEP}] )
87 -"
88 -DEPEND="${RDEPEND}
89 - dev-python/astropy-helpers[${PYTHON_USEDEP}]
90 - dev-python/setuptools[${PYTHON_USEDEP}]
91 - test? (
92 - dev-python/hypothesis[${PYTHON_USEDEP}]
93 - dev-python/pytest[${PYTHON_USEDEP}]
94 - dev-python/pytest-mock[${PYTHON_USEDEP}]
95 - dev-python/pytest-mpl[${PYTHON_USEDEP}]
96 - )
97 -"
98 -
99 -python_prepare_all() {
100 - # use system astropy-helpers instead of bundled one
101 - sed -i -e '/auto_use/s/True/False/' setup.cfg || die
102 - distutils-r1_python_prepare_all
103 -}
104 -
105 -python_test() {
106 - "${PYTHON}" -m pytest sunpy -k "not figure and not online" || die
107 -}