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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4998D158043 for ; Fri, 19 Apr 2024 17:03:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87B79E2AA1; Fri, 19 Apr 2024 17:03:58 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6ABE4E2AA1 for ; Fri, 19 Apr 2024 17:03:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8FA883434E1 for ; Fri, 19 Apr 2024 17:03:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDEBE1710 for ; Fri, 19 Apr 2024 17:03:55 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1713546196.663102f884f28b32f39cccf35083c029529a2ec2.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-astronomy/idlastro/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-astronomy/idlastro/idlastro-20161220-r1.ebuild sci-astronomy/idlastro/idlastro-20161220.ebuild X-VCS-Directories: sci-astronomy/idlastro/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 663102f884f28b32f39cccf35083c029529a2ec2 X-VCS-Branch: master Date: Fri, 19 Apr 2024 17:03:55 +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: 38734c20-a4c2-4b5f-9875-23784b8cf710 X-Archives-Hash: 43993573255a5493c81149e076def914 commit: 663102f884f28b32f39cccf35083c029529a2ec2 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Apr 19 17:03:16 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Apr 19 17:03:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=663102f8 sci-astronomy/idlastro: EAPI=8 Signed-off-by: Arthur Zamarin gentoo.org> sci-astronomy/idlastro/idlastro-20161220-r1.ebuild | 20 +++++++++++++++ sci-astronomy/idlastro/idlastro-20161220.ebuild | 29 ---------------------- 2 files changed, 20 insertions(+), 29 deletions(-) diff --git a/sci-astronomy/idlastro/idlastro-20161220-r1.ebuild b/sci-astronomy/idlastro/idlastro-20161220-r1.ebuild new file mode 100644 index 000000000000..e2308225e731 --- /dev/null +++ b/sci-astronomy/idlastro/idlastro-20161220-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Astronomical user routines for IDL" +HOMEPAGE="https://idlastro.gsfc.nasa.gov/" +SRC_URI="https://idlastro.gsfc.nasa.gov/ftp/astron.tar.gz -> ${P}.tar.gz" +S=${WORKDIR} + +LICENSE="BSD-2 BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +RDEPEND="dev-lang/gdl" + +src_install() { + insinto /usr/share/gnudatalanguage/${PN} + doins -r pro/* + dodoc *txt text/* +} diff --git a/sci-astronomy/idlastro/idlastro-20161220.ebuild b/sci-astronomy/idlastro/idlastro-20161220.ebuild deleted file mode 100644 index c25a786e01d8..000000000000 --- a/sci-astronomy/idlastro/idlastro-20161220.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -if [[ ${PV} != 99999999 ]]; then - SRC_URI="https://idlastro.gsfc.nasa.gov/ftp/astron.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" - S="${WORKDIR}" -else - inherit git-r3 - GIT_ECLASS="git-r3" - EGIT_REPO_URI="https://github.com/wlandsman/IDLAstro.git" -fi - -DESCRIPTION="Astronomical user routines for IDL" -HOMEPAGE="https://idlastro.gsfc.nasa.gov/" - -LICENSE="BSD-2 BSD" -SLOT="0" -IUSE="" -DEPEND="" -RDEPEND="dev-lang/gdl" - -src_install() { - insinto /usr/share/gnudatalanguage/${PN} - doins -r pro/* - dodoc *txt text/* -}