From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/cfitsio/
Date: Wed, 20 Nov 2019 20:59:06 +0000 (UTC) [thread overview]
Message-ID: <1574283537.e420765fc65c4fa08742f515e1be92eb56b20f84.asturm@gentoo> (raw)
commit: e420765fc65c4fa08742f515e1be92eb56b20f84
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 20 20:58:45 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Nov 20 20:58:57 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e420765f
sci-libs/cfitsio: Drop 3.38-r1 and 3.39
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-libs/cfitsio/Manifest | 2 --
sci-libs/cfitsio/cfitsio-3.38-r1.ebuild | 59 ---------------------------------
sci-libs/cfitsio/cfitsio-3.39.ebuild | 58 --------------------------------
3 files changed, 119 deletions(-)
diff --git a/sci-libs/cfitsio/Manifest b/sci-libs/cfitsio/Manifest
index 3dbd177d487..14225a2fe01 100644
--- a/sci-libs/cfitsio/Manifest
+++ b/sci-libs/cfitsio/Manifest
@@ -1,4 +1,2 @@
DIST cfitsio-3.360.tar.gz 4104894 BLAKE2B 7a84177c28679db5c27d0586cb6959a0663918a84d46ced9aea6ef7e6bdd32955946807efd4cd852e55128dbc887c4a2135b2eba26847b265011bfd6df049335 SHA512 158819b4a3a29c29a5f017283e2b20067420994e881d202dbf3ba199c9e564dc1e74f8be5ce84f78107126d2a8688cc55cc7ed284540ca647e44cdc3b0b02072
-DIST cfitsio-3.38.tar.gz 4142236 BLAKE2B 05311f9faf4cc7cfbd8c065c075b07941ce4114219f447f9ab85bb51c2e38eee2163b832ce0afe352fa0c3bc82a54d857525b7b9ec1d906fa20be4fb201dee9e SHA512 7428c1c87736ca384153f7f810e0bdbccdcc2f41892b0b9ceda9e5efb20655585c2789b16510a5362f8b67ef53a0ac443094786966e5748cbe7ad828599723fc
-DIST cfitsio-3.39.tar.gz 4177822 BLAKE2B 1cdaa3c930b9e2c254e2fa052e8643311594da1ab25b0739b160b8c131b6e140851fe74f0519c38aee929ca4d8dbac02fdf98310114a66d850b8943eaa2bc621 SHA512 a6cde8353d7beede7e7a53ba7109c3a6b5812355a423ad8e2e459281ac760b392014e3ee2d2f30c639eef38294ebac59950010e3cadfd078692f6d3c6d167e3f
DIST cfitsio-3.410.tar.gz 4194529 BLAKE2B 31250b9add5b6a85c919c33251d127117ceab81c2243e0b9f8bbe2ef0fd09c85a938b7525338bc718a9b3035efa3660ecffa17ec79e3e278c8014e727f23473b SHA512 cc1de2a4314e7c82bdd6855e11dea4e18dc4e7bcb27b0d15b884cbaeb4acd3b1e12dadd17ab83c7917570934913f89337035470ee4921e7b62409a81052d70cd
diff --git a/sci-libs/cfitsio/cfitsio-3.38-r1.ebuild b/sci-libs/cfitsio/cfitsio-3.38-r1.ebuild
deleted file mode 100644
index 5c7c6535756..00000000000
--- a/sci-libs/cfitsio/cfitsio-3.38-r1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-FORTRAN_NEEDED=fortran
-
-inherit autotools-multilib fortran-2
-
-DESCRIPTION="C and Fortran library for manipulating FITS files"
-HOMEPAGE="https://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html"
-SRC_URI="https://dev.gentoo.org/~bicatali/distfiles/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0/2"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
-IUSE="bzip2 doc examples fortran static-libs +tools threads"
-
-RDEPEND="
- sys-libs/zlib[${MULTILIB_USEDEP}]
- bzip2? ( app-arch/bzip2[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
- fortran? ( dev-lang/cfortran )"
-
-pkg_setup() {
- use fortran && fortran-2_pkg_setup
-}
-
-src_prepare() {
- # avoid internal cfortran
- if use fortran; then
- mv cfortran.h cfortran.h.disabled
- ln -s "${EPREFIX}"/usr/include/cfortran.h . || die
- fi
- autotools-multilib_src_prepare
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable fortran)
- $(use_enable threads)
- $(use_enable tools)
- $(use_with bzip2)
- )
- autotools-multilib_src_configure
-}
-
-src_install () {
- autotools-multilib_src_install
- dodoc README README.md CHANGES.md docs/changes.txt docs/cfitsio.doc
- use fortran && dodoc docs/fitsio.doc
- use doc && dodoc docs/{quick,cfitsio,fpackguide}.pdf
- use doc && use fortran && dodoc docs/fitsio.pdf
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins cookbook.c testprog.c speed.c smem.c
- use fortran && doins cookbook.f testf77.f
- fi
-}
diff --git a/sci-libs/cfitsio/cfitsio-3.39.ebuild b/sci-libs/cfitsio/cfitsio-3.39.ebuild
deleted file mode 100644
index e38c68f855f..00000000000
--- a/sci-libs/cfitsio/cfitsio-3.39.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-FORTRAN_NEEDED=fortran
-
-inherit fortran-2 multilib-minimal
-
-DESCRIPTION="C and Fortran library for manipulating FITS files"
-HOMEPAGE="https://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html"
-SRC_URI="https://dev.gentoo.org/~bicatali/distfiles/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0/5"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
-IUSE="bzip2 doc examples fortran static-libs +tools threads"
-
-RDEPEND="
- sys-libs/zlib[${MULTILIB_USEDEP}]
- bzip2? ( app-arch/bzip2[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
- fortran? ( dev-lang/cfortran )"
-
-pkg_setup() {
- use fortran && fortran-2_pkg_setup
-}
-
-src_prepare() {
- # avoid internal cfortran
- if use fortran; then
- mv cfortran.h cfortran.h.disabled
- ln -s "${EPREFIX}"/usr/include/cfortran.h . || die
- fi
- default
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- $(use_enable fortran) \
- $(use_enable static-libs static) \
- $(use_enable threads) \
- $(use_enable tools) \
- $(use_with bzip2)
-}
-
-multilib_src_install_all() {
- dodoc README README.md CHANGES.md docs/changes.txt docs/cfitsio.doc
- use fortran && dodoc docs/fitsio.doc
- use doc && dodoc docs/{quick,cfitsio,fpackguide}.pdf
- use doc && use fortran && dodoc docs/fitsio.pdf
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins cookbook.c testprog.c speed.c smem.c
- use fortran && doins cookbook.f testf77.f
- fi
- prune_libtool_files --all
-}
next reply other threads:[~2019-11-20 20:59 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-20 20:59 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-13 12:00 [gentoo-commits] repo/gentoo:master commit in: sci-libs/cfitsio/ Michał Górny
2025-04-12 9:30 Arthur Zamarin
2025-04-12 9:30 Arthur Zamarin
2025-03-29 6:08 Michał Górny
2025-03-15 7:45 Michał Górny
2025-01-11 8:39 WANG Xuerui
2024-12-28 10:47 Michał Górny
2024-12-28 9:06 Arthur Zamarin
2024-12-28 8:58 Arthur Zamarin
2024-12-28 8:55 Arthur Zamarin
2024-12-01 13:56 Michał Górny
2024-07-06 7:09 Arthur Zamarin
2024-07-06 6:10 Sam James
2024-07-06 6:10 Sam James
2024-06-19 4:36 Michał Górny
2024-06-13 15:00 Michał Górny
2024-06-13 12:31 Michał Górny
2024-06-13 12:31 Michał Górny
2023-12-16 20:56 Sam James
2023-12-16 19:16 Arthur Zamarin
2023-12-16 11:47 Arthur Zamarin
2022-07-03 9:02 Andrew Ammerlaan
2022-07-03 9:02 Andrew Ammerlaan
2022-05-21 18:56 Jakov Smolić
2022-05-21 18:56 Jakov Smolić
2022-05-21 18:54 Jakov Smolić
2022-05-21 18:54 Jakov Smolić
2022-05-21 18:54 Jakov Smolić
2021-08-14 23:15 Marek Szuba
2021-08-14 23:15 Marek Szuba
2021-01-25 16:48 Andreas Sturmlechner
2021-01-10 14:30 Sam James
2021-01-07 11:15 Sam James
2021-01-07 5:59 Sam James
2021-01-07 2:35 Sam James
2021-01-06 15:17 Fabian Groffen
2021-01-06 6:34 Sam James
2021-01-02 21:16 Sam James
2021-01-02 21:14 Sam James
2021-01-02 20:31 Andreas Sturmlechner
2018-07-08 19:10 Sergei Trofimovich
2018-07-07 9:02 Sergei Trofimovich
2018-07-01 15:00 Pacho Ramos
2018-06-30 19:03 Sergei Trofimovich
2018-06-27 21:54 Sergei Trofimovich
2018-06-27 17:23 Tobias Klausmann
2018-05-25 22:28 Aaron Bauman
2017-06-26 4:35 Sebastien Fabbro
2016-06-06 22:03 Sebastien Fabbro
2016-02-22 20:04 Sebastien Fabbro
2016-02-15 21:52 Sebastien Fabbro
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1574283537.e420765fc65c4fa08742f515e1be92eb56b20f84.asturm@gentoo \
--to=asturm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox