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 B3C9D138359 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 E50A4E0802; Tue, 22 Sep 2020 17:15:19 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 CBC97E0802 for ; Tue, 22 Sep 2020 17:15:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 DEEAB33BDEF 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 5522535F 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: <1600794885.16c9eea06d37dc613855e25176ce993c29f1b011.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/pysolar-0.8.ebuild X-VCS-Directories: dev-python/pysolar/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 16c9eea06d37dc613855e25176ce993c29f1b011 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: ab52ed51-5689-4f77-9776-d56217e39e15 X-Archives-Hash: 06840a4b642e3e288f67bbeb7b63878f commit: 16c9eea06d37dc613855e25176ce993c29f1b011 Author: Aisha Tammy aisha cc> AuthorDate: Tue Sep 22 17:12:47 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Tue Sep 22 17:14:45 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=16c9eea0 dev-python/pysolar: version bump to 0.8 Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Aisha Tammy aisha.cc> dev-python/pysolar/pysolar-0.8.ebuild | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/dev-python/pysolar/pysolar-0.8.ebuild b/dev-python/pysolar/pysolar-0.8.ebuild new file mode 100644 index 000000000..1f9474a24 --- /dev/null +++ b/dev-python/pysolar/pysolar-0.8.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) + +AUTHOR=pingswept + +inherit distutils-r1 + +DESCRIPTION="Collection of Python libraries for simulating the irradiation by the sun" +HOMEPAGE="http://pysolar.org/" +SRC_URI="https://github.com/${AUTHOR}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/numpy[${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 +}