sci-libs/getdata: Drop 0.6.0, EAPI-6--

Closes: https://bugs.gentoo.org/811978
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2022-02-26 19:17:39 +01:00
parent e0a5eb36b6
commit 494b066fd5
3 changed files with 0 additions and 75 deletions

View File

@@ -1,2 +1 @@
DIST getdata-0.11.0.tar.xz 1060324 BLAKE2B b758447429f95d53d6ce3e32eb5591d0141c218f5b3a3c391fb713722f8dc12fba2add078d75be1b2957b2d27b7d843cb51450fc49394da130548721f5df9384 SHA512 cf301449288c2b0e337a356f03ac8d295a4f5a32eb6c2a29c15c6fcc434a9eea8661a8070defbbf1d751e64e1f616e4353863b13d350fa8df6837631d86bc932
DIST getdata-0.9.0.tar.xz 920652 BLAKE2B d5f0659474dfab9f4e589a28a7788b5a51de3c0064b58de37bdb11dad27b56daa05d8e705da743c5da271bd8c4e1343ac6ac41adfdfabfcaef0006e46c45d2bf SHA512 28d720141e34cc56a5166594d0a6ac293144d123706988ed170e40dd9d7aaf13b920305e8bd8343ecd7cbe43eee5d83720e3e5f5d2da0cdccdc1444725cc6844

View File

@@ -1,13 +0,0 @@
Remove python test suite.
--- getdata-0.9.0/bindings/python/Makefile.am
+++ getdata-0.9.0/bindings/python/Makefile.am
@@ -20,8 +20,6 @@
#
AUTOMAKE_OPTIONS = foreign
-SUBDIRS=test
-
nodist_python_SCRIPTS = pygetdata.so
BUILT_SOURCES = pyconstants.c

View File

@@ -1,61 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
FORTRAN_STANDARD="95"
FORTRAN_NEEDED=fortran
inherit autotools fortran-2 flag-o-matic
DESCRIPTION="Reference implementation of the Dirfile, format for time-ordered binary data"
HOMEPAGE="http://getdata.sourceforge.net/"
SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.xz"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="bzip2 cxx debug flac fortran lzma perl static-libs"
DEPEND="
bzip2? ( app-arch/bzip2 )
lzma? ( app-arch/xz-utils )
perl? ( dev-lang/perl )
"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}-remove-python-test.patch" )
src_prepare() {
default
eautoreconf
}
src_configure() {
# GCC 10 workaround
# bug #723076
append-fflags $(test-flags-FC -fallow-argument-mismatch)
econf \
--disable-idl \
--disable-matlab \
--disable-php \
--with-libz \
--without-libslim \
--without-libzzip \
$(use_with bzip2 libbz2) \
$(use_enable cxx cplusplus) \
$(use_enable debug) \
$(use_with flac libFLAC) \
$(use_enable fortran) \
$(use_enable fortran fortran95) \
$(use_with lzma liblzma) \
$(use_enable perl) \
$(usex perl --with-perl-dir=vendor) \
--disable-python \
$(use_enable static-libs static)
}
src_install() {
default
find "${D}" -name '*.la' -delete || die
}