From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EF5BC13835A for ; Tue, 22 Sep 2020 17:15:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DD07E0817; Tue, 22 Sep 2020 17:15:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1491AE0817 for ; Tue, 22 Sep 2020 17:15:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E5FA433BDF8 for ; Tue, 22 Sep 2020 17:15:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C2FB377 for ; Tue, 22 Sep 2020 17:15:17 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1600794908.9ce899d47cb5a0124a77fa173cc373d230e0ddc8.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/pysolar/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/pysolar/metadata.xml dev-python/pysolar/pysolar-0.5.ebuild X-VCS-Directories: dev-python/pysolar/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 9ce899d47cb5a0124a77fa173cc373d230e0ddc8 X-VCS-Branch: master Date: Tue, 22 Sep 2020 17:15:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8d82e284-9462-44a6-a6dd-1567b345258c X-Archives-Hash: 3d78997da6c389ffa278d2fdbd90703e commit: 9ce899d47cb5a0124a77fa173cc373d230e0ddc8 Author: Aisha Tammy aisha cc> AuthorDate: Tue Sep 22 17:15:08 2020 +0000 Commit: Aisha Tammy aisha 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 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 @@ Gentoo Astronomy Project -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. - + 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. + pingswept/pysolar 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 -}