commit:     2cade485025177c44fa0b8b1d2d99590c22d6c75
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 12 20:48:52 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Nov 12 20:56:58 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cade485

sci-libs/arpack: Drop 3.1.5 and 3.5.0

Closes: https://bugs.gentoo.org/753248
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 sci-libs/arpack/Manifest            |  2 --
 sci-libs/arpack/arpack-3.1.5.ebuild | 64 -------------------------------------
 sci-libs/arpack/arpack-3.5.0.ebuild | 62 -----------------------------------
 3 files changed, 128 deletions(-)

diff --git a/sci-libs/arpack/Manifest b/sci-libs/arpack/Manifest
index a4eaee9ea10..78188d3b5d3 100644
--- a/sci-libs/arpack/Manifest
+++ b/sci-libs/arpack/Manifest
@@ -1,5 +1,3 @@
-DIST arpack-3.5.0.tar.gz 949853 BLAKE2B 
fa28090cd745983ee362ab17e0d9f5ab503ec8403f37d38d1263d25ff7849dead7feb10667707aabb3db6d76d9d33397de13cd65fab18a45e7aadd544525cc76
 SHA512 
67181c783e61d5d2214ccbfa0de8efd55148537feca30376760f7009995694f68c9fc14991306fa19ad67598497510b6e0d42b68dc56dd581dc2a798e3a4b369
 DIST arpack-3.7.0.tar.gz 989570 BLAKE2B 
bdab72f080d223ebbe5a279102d54fc196aac3ad1b8360be0e3814cb5e14e8f26a1f37b4b27b66db4b88b0c651c039666aa94a98fcdb34977feea7fc7d10808c
 SHA512 
cc07cdd1fba4881907b507ff6b6c9bce9e3dadd8ef744194f08ee718a6210c039ac0c51c12edd720503f8e59bcd11c178fc323e1a59696be8c3b8262cf47a452
-DIST arpack-ng_3.1.5.tar.gz 1516406 BLAKE2B 
14dea27dbe7d17144871c62db58467642f4602ec479f63b1dcfe67e22b73b146691cb5bb01c90323507a65c499077d0fee3fec0a15c5d654ccca9d3f67975a06
 SHA512 
4876b0babb89bbcc39e92b63d4537b860e9cd0b8a188937d3ba815041b7261623cdac25c91c8bef20ebce4271f822307c492cf6c9f22ec3d740218405337a515
 DIST tutorial.ps.gz 105599 BLAKE2B 
99570e6a0cc1c020b9c271e8ce1cc224f69ff5333cc818c10b063dc8ffbaf66a9f5c6ede99541b4212286d422146b1c4e332eba7e1635c99efa0e4c2620f0630
 SHA512 
a7b8fefd1a572ed477ae208d49094c1c65c9368990d12de9b3528e33fed546c947659f74e54a810d04154b4a1b0f9a94bcba4db0cf59d379e20786a261066aa4
 DIST ug.ps.gz 248543 BLAKE2B 
ac010aef470060636fa00360636ba093f0d24d219fa927c79fb1726b798160eda74fa8b4be6c7dff94f5759efcf30afa99ad310e7959115e028738beb8aa125d
 SHA512 
3349117fb10b07207ffbab2ffa31b406d026855ea4c16e8649b14c7d70bc94e11b5730672e34acd654817799136d4bd76569ac50ec78d787df5582d18ed61328

diff --git a/sci-libs/arpack/arpack-3.1.5.ebuild 
b/sci-libs/arpack/arpack-3.1.5.ebuild
deleted file mode 100644
index e59f0f251e1..00000000000
--- a/sci-libs/arpack/arpack-3.1.5.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-#AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils eutils flag-o-matic fortran-2 toolchain-funcs
-
-MY_P="${PN}-ng_${PV}"
-
-DESCRIPTION="Arnoldi package library to solve large scale eigenvalue problems"
-HOMEPAGE="http://www.caam.rice.edu/software/ARPACK/ 
http://forge.scilab.org/index.php/p/arpack-ng/";
-SRC_URI="
-       http://forge.scilab.org/upload/arpack-ng/files/${MY_P}.tar.gz
-       doc? (
-               http://www.caam.rice.edu/software/ARPACK/SRC/ug.ps.gz
-               http://www.caam.rice.edu/software/ARPACK/DOCS/tutorial.ps.gz )"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="doc examples mpi"
-
-RDEPEND="
-       virtual/blas
-       virtual/lapack
-       mpi? ( virtual/mpi[fortran] )"
-DEPEND="${RDEPEND}
-       virtual/pkgconfig"
-
-S="${WORKDIR}/${MY_P/_/-}"
-
-src_configure() {
-       tc-export PKG_CONFIG
-       local myeconfargs=(
-               --disable-static
-               --with-blas="$($(tc-getPKG_CONFIG) --libs blas)"
-               --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
-               $(use_enable mpi)
-               )
-       autotools-utils_src_configure
-}
-
-src_test() {
-       cp "${S}"/TESTS/testA.mtx "${BUILD_DIR}"/TESTS || die
-       autotools-utils_src_test
-}
-
-src_install() {
-       autotools-utils_src_install
-
-       dodoc DOCUMENTS/*.doc
-       newdoc DOCUMENTS/README README.doc
-       use doc && dodoc "${WORKDIR}"/*.ps
-       if use examples; then
-               insinto /usr/share/doc/${PF}
-               doins -r EXAMPLES
-               if use mpi; then
-                       insinto /usr/share/doc/${PF}/EXAMPLES/PARPACK
-                       doins -r PARPACK/EXAMPLES/MPI
-               fi
-       fi
-}

diff --git a/sci-libs/arpack/arpack-3.5.0.ebuild 
b/sci-libs/arpack/arpack-3.5.0.ebuild
deleted file mode 100644
index fe0ae23d0c2..00000000000
--- a/sci-libs/arpack/arpack-3.5.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools flag-o-matic fortran-2 toolchain-funcs
-
-DESCRIPTION="Arnoldi package library to solve large scale eigenvalue problems"
-HOMEPAGE="http://www.caam.rice.edu/software/ARPACK/ 
https://github.com/opencollab/arpack-ng";
-SRC_URI="
-       https://github.com/opencollab/${PN}-ng/archive/${PV}.tar.gz -> 
${P}.tar.gz
-       doc? (
-               http://www.caam.rice.edu/software/ARPACK/SRC/ug.ps.gz
-               http://www.caam.rice.edu/software/ARPACK/DOCS/tutorial.ps.gz )"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos"
-IUSE="doc examples mpi"
-
-RDEPEND="
-       virtual/blas
-       virtual/lapack
-       mpi? ( virtual/mpi[fortran] )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-S="${WORKDIR}/${PN}-ng-${PV}"
-
-src_prepare() {
-       default
-       eautoreconf
-}
-
-src_configure() {
-       test-flag-FC -fallow-argument-mismatch &&
-               append-fflags -fallow-argument-mismatch
-
-       econf \
-               --disable-static \
-               --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \
-               --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)" \
-               $(use_enable mpi)
-}
-
-src_install() {
-       default
-
-       dodoc DOCUMENTS/*.doc
-       newdoc DOCUMENTS/README README.doc
-       use doc && dodoc "${WORKDIR}"/*.ps
-       if use examples; then
-               dodoc -r EXAMPLES
-               if use mpi; then
-                       docinto EXAMPLES/PARPACK
-                       dodoc -r PARPACK/EXAMPLES/MPI
-               fi
-       fi
-
-       # no static archives
-       find "${D}" -name '*.la' -delete || die
-}

Reply via email to