diff options
author | Marco Scardovi <marco@scardovi.com> | 2022-01-16 18:36:42 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2022-01-17 16:07:52 +0100 |
commit | d1edc15ab5b4834c7877176c393cce100ab73b12 (patch) | |
tree | 9412442cf597d559da595bfbd2506e8981957a8d /sci-libs/silo | |
parent | sci-libs/silo: revbump to -r1 and add test again (diff) | |
download | gentoo-d1edc15ab5b4834c7877176c393cce100ab73b12.tar.gz gentoo-d1edc15ab5b4834c7877176c393cce100ab73b12.tar.bz2 gentoo-d1edc15ab5b4834c7877176c393cce100ab73b12.zip |
sci-libs/silo: drop old version
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Marco Scardovi <marco@scardovi.com>
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'sci-libs/silo')
-rw-r--r-- | sci-libs/silo/silo-4.11.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/sci-libs/silo/silo-4.11.ebuild b/sci-libs/silo/silo-4.11.ebuild deleted file mode 100644 index e7a7f142d2aa..000000000000 --- a/sci-libs/silo/silo-4.11.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit fortran-2 - -DESCRIPTION="A mesh and field I/O library and scientific database" -HOMEPAGE="https://wci.llnl.gov/simulation/computer-codes/silo" -SRC_URI="https://wci.llnl.gov/sites/wci/files/2021-09/${P}-bsd.tgz" -S="${WORKDIR}/${P}-bsd" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="browser +hdf5 +silex" -# Waiting for fix/answer upstream -# See https://github.com/LLNL/Silo/issues/234 -RESTRICT="test" - -RDEPEND=" - dev-qt/qtgui:5 - virtual/szip - hdf5? ( sci-libs/hdf5 ) -" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-autoreconf.patch - "${FILESDIR}"/${P}-hdf5.patch - "${FILESDIR}"/${P}-test-disable-largefile.patch - "${FILESDIR}"/${P}-tests.patch - "${FILESDIR}"/${P}-testsuite-python-write.patch -) - -src_configure() { - econf \ - --enable-install-lite-headers \ - --enable-shared \ - $(use_enable silex silex ) \ - $(use_enable browser browser ) \ - $(use_with hdf5 hdf5 "${EPREFIX}"/usr/include,"${EPREFIX}"/usr/$(get_libdir) ) -} - -# src_test() { -# emake -C tests check -# } |