commit: 9ce899d47cb5a0124a77fa173cc373d230e0ddc8
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Sep 22 17:15:08 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Sep 22 17:15:08 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=9ce899d4
dev-python/pysolar: drop old version
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-python/pysolar/metadata.xml | 12 ++++-----
dev-python/pysolar/pysolar-0.5.ebuild | 49 -----------------------------------
2 files changed, 6 insertions(+), 55 deletions(-)
diff --git a/dev-python/pysolar/metadata.xml b/dev-python/pysolar/metadata.xml
index 6776625c7..6b8874754 100644
--- a/dev-python/pysolar/metadata.xml
+++ b/dev-python/pysolar/metadata.xml
@@ -6,12 +6,12 @@
<name>Gentoo Astronomy Project</name>
</maintainer>
<longdescription lang="en">
-Pysolar is a collection of Python libraries for simulating the
-irradiation of any point on earth by the sun. It includes code for
-extremely precise ephemeris calculations, and more. Pysolar can
-calculate the location of the sun or the shading percentage as a
-function of time for a row of 2-axis tracked panels.
-</longdescription>
+ Pysolar is a collection of Python libraries for simulating the
+ irradiation of any point on earth by the sun. It includes code
for
+ extremely precise ephemeris calculations, and more. Pysolar can
+ calculate the location of the sun or the shading percentage as a
+ function of time for a row of 2-axis tracked panels.
+ </longdescription>
<upstream>
<remote-id type="github">pingswept/pysolar</remote-id>
</upstream>
diff --git a/dev-python/pysolar/pysolar-0.5.ebuild
b/dev-python/pysolar/pysolar-0.5.ebuild
deleted file mode 100644
index ee3339a1f..000000000
--- a/dev-python/pysolar/pysolar-0.5.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-AUTHOR=pingswept
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Collection of Python libraries for simulating the irradiation by
the sun"
-HOMEPAGE="http://pysolar.org/"
-SRC_URI="https://github.com/${AUTHOR}/${PN}/tarball/${PV} -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc"
-
-DEPEND="doc? ( dev-python/numpydoc )"
-RDEPEND="
- dev-python/pillow[${PYTHON_USEDEP}]
- dev-python/matplotlib[${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
- dev-python/pygtk:2[${PYTHON_USEDEP}]
- dev-python/pytz[${PYTHON_USEDEP}]
- sci-libs/scipy[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
- sed \
- -e "s:'testsolar', ::" \
- -e "s:'shade_test', ::" \
- -i setup.py || die # don't install tests
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && PYTHONPATH=".." emake -C doc html
-}
-
-python_test() {
- ${EPYTHON} Pysolar/testsolar.py || die
-}
-
-python_install_all() {
- use doc && HTML_DOCS=( doc/.build/html/. )
- distutils-r1_python_install_all
-}