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/specutils/
Date: Sat, 28 Dec 2019 16:40:22
Message-Id: 1577551210.b651f33dd30a7180109b345ad80ea40b9bece830.zlogene@gentoo
1 commit: b651f33dd30a7180109b345ad80ea40b9bece830
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 28 16:40:10 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 28 16:40:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b651f33d
7
8 dev-python/specutils: remove last-rited pkg
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11
12 dev-python/specutils/Manifest | 2 --
13 dev-python/specutils/metadata.xml | 17 ----------
14 dev-python/specutils/specutils-0.2.2.ebuild | 52 -----------------------------
15 dev-python/specutils/specutils-0.2.ebuild | 52 -----------------------------
16 4 files changed, 123 deletions(-)
17
18 diff --git a/dev-python/specutils/Manifest b/dev-python/specutils/Manifest
19 deleted file mode 100644
20 index 12db535e77b..00000000000
21 --- a/dev-python/specutils/Manifest
22 +++ /dev/null
23 @@ -1,2 +0,0 @@
24 -DIST specutils-0.2.2.tar.gz 3349951 BLAKE2B d5014908fbd0f3c9a72492109b811998fcf09b721223eb5e1de6921ccc0a2469ac95133e793164ee0352a5b43fb58852e8b7a3f0e55aad34f8c73d0af40f2f4b SHA512 34afeaa33dc529372b926d905024c88786fd622864b35c3d811ce9f99ac26146b13951ed6334e1041c98b0f31ed86e60f21ec9306808b5d52167d9349f139e07
25 -DIST specutils-0.2.tar.gz 3348219 BLAKE2B 8189c6a3f1679bcb7c4ed7acadb87239204fadd2e4c62c1e170b5addc043fc1c8dc4fe6c064cafdc76f49f4c91b9f20a0382dcc47bfcbab10ea2a24cf1455d2f SHA512 ac05a795ddf3e690c7f5f7fe1a4b0340b546363ac132ce78bedc6ce364feb7418d896e18302ce391717cc507dbd37de210f5b6dfcfda2c44f9f8e0191619bace
26
27 diff --git a/dev-python/specutils/metadata.xml b/dev-python/specutils/metadata.xml
28 deleted file mode 100644
29 index 45d4e24160e..00000000000
30 --- a/dev-python/specutils/metadata.xml
31 +++ /dev/null
32 @@ -1,17 +0,0 @@
33 -<?xml version="1.0" encoding="UTF-8"?>
34 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
35 -<pkgmetadata>
36 - <maintainer type="project">
37 - <email>sci-astronomy@g.o</email>
38 - <name>Gentoo Astronomy Project</name>
39 - </maintainer>
40 - <longdescription lang="en">
41 - specutils is a package to implement utilities and data structures to
42 - analyse astronomical spectra within python. It extends NDData from Astropy
43 - into a class with special handling of 1D spectra.
44 - </longdescription>
45 - <upstream>
46 - <remote-id type="pypi">specutils</remote-id>
47 - <remote-id type="github">astropy/specutils</remote-id>
48 - </upstream>
49 -</pkgmetadata>
50
51 diff --git a/dev-python/specutils/specutils-0.2.2.ebuild b/dev-python/specutils/specutils-0.2.2.ebuild
52 deleted file mode 100644
53 index acc3b98219b..00000000000
54 --- a/dev-python/specutils/specutils-0.2.2.ebuild
55 +++ /dev/null
56 @@ -1,52 +0,0 @@
57 -# Copyright 1999-2019 Gentoo Authors
58 -# Distributed under the terms of the GNU General Public License v2
59 -
60 -EAPI=6
61 -
62 -PYTHON_COMPAT=( python3_{5,6} )
63 -inherit distutils-r1
64 -
65 -DESCRIPTION="Python package for astronomy spectral operations"
66 -HOMEPAGE="https://specutils.readthedocs.org/"
67 -SRC_URI="https://github.com/astropy/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
68 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
69 -
70 -LICENSE="BSD"
71 -SLOT="0"
72 -IUSE="doc test"
73 -RESTRICT="!test? ( test )"
74 -DOCS=( README.rst )
75 -
76 -RDEPEND="
77 - dev-python/astropy[${PYTHON_USEDEP}]
78 - dev-python/numpy[${PYTHON_USEDEP}]"
79 -DEPEND="${RDEPEND}
80 - dev-python/astropy-helpers[${PYTHON_USEDEP}]
81 - dev-python/setuptools[${PYTHON_USEDEP}]
82 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
83 - dev-python/matplotlib[${PYTHON_USEDEP}] )
84 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
85 -
86 -python_prepare_all() {
87 - sed -i -e '/auto_use/s/True/False/' setup.cfg || die
88 - distutils-r1_python_prepare_all
89 -}
90 -
91 -python_compile_all() {
92 - if use doc; then
93 - python_setup
94 - VARTEXFONTS="${T}"/fonts \
95 - MPLCONFIGDIR="${BUILD_DIR}" \
96 - PYTHONPATH="${BUILD_DIR}"/lib \
97 - esetup.py build_sphinx
98 - fi
99 -}
100 -
101 -python_test() {
102 - esetup.py test
103 -}
104 -
105 -python_install_all() {
106 - use doc && local HTML_DOCS=( docs/_build/html/ )
107 - distutils-r1_python_install_all
108 -}
109
110 diff --git a/dev-python/specutils/specutils-0.2.ebuild b/dev-python/specutils/specutils-0.2.ebuild
111 deleted file mode 100644
112 index 4be2d850afe..00000000000
113 --- a/dev-python/specutils/specutils-0.2.ebuild
114 +++ /dev/null
115 @@ -1,52 +0,0 @@
116 -# Copyright 1999-2019 Gentoo Authors
117 -# Distributed under the terms of the GNU General Public License v2
118 -
119 -EAPI=6
120 -
121 -PYTHON_COMPAT=( python3_5 )
122 -inherit distutils-r1
123 -
124 -DESCRIPTION="Python package for astronomy spectral operations"
125 -HOMEPAGE="https://specutils.readthedocs.org/"
126 -SRC_URI="https://github.com/astropy/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
127 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
128 -
129 -LICENSE="BSD"
130 -SLOT="0"
131 -IUSE="doc test"
132 -RESTRICT="!test? ( test )"
133 -DOCS=( README.rst )
134 -
135 -RDEPEND="
136 - dev-python/astropy[${PYTHON_USEDEP}]
137 - dev-python/numpy[${PYTHON_USEDEP}]"
138 -DEPEND="${RDEPEND}
139 - dev-python/astropy-helpers[${PYTHON_USEDEP}]
140 - dev-python/setuptools[${PYTHON_USEDEP}]
141 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
142 - dev-python/matplotlib[${PYTHON_USEDEP}] )
143 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
144 -
145 -python_prepare_all() {
146 - sed -i -e '/auto_use/s/True/False/' setup.cfg || die
147 - distutils-r1_python_prepare_all
148 -}
149 -
150 -python_compile_all() {
151 - if use doc; then
152 - python_setup
153 - VARTEXFONTS="${T}"/fonts \
154 - MPLCONFIGDIR="${BUILD_DIR}" \
155 - PYTHONPATH="${BUILD_DIR}"/lib \
156 - esetup.py build_sphinx
157 - fi
158 -}
159 -
160 -python_test() {
161 - esetup.py test
162 -}
163 -
164 -python_install_all() {
165 - use doc && local HTML_DOCS=( docs/_build/html/ )
166 - distutils-r1_python_install_all
167 -}