From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/arpack/
Date: Thu, 7 Jan 2021 01:24:05 +0000 (UTC) [thread overview]
Message-ID: <1609982436.96f91fe7c35ba404cb48dbd5a3cb4f4020c3c31e.sam@gentoo> (raw)
commit: 96f91fe7c35ba404cb48dbd5a3cb4f4020c3c31e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 7 01:20:36 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 7 01:20:36 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96f91fe7
sci-libs/arpack: cleanup old
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-libs/arpack/Manifest | 1 -
sci-libs/arpack/arpack-3.7.0.ebuild | 63 -------------------------------------
2 files changed, 64 deletions(-)
diff --git a/sci-libs/arpack/Manifest b/sci-libs/arpack/Manifest
index b578f3ff68d..94121d526f1 100644
--- a/sci-libs/arpack/Manifest
+++ b/sci-libs/arpack/Manifest
@@ -1,4 +1,3 @@
-DIST arpack-3.7.0.tar.gz 989570 BLAKE2B bdab72f080d223ebbe5a279102d54fc196aac3ad1b8360be0e3814cb5e14e8f26a1f37b4b27b66db4b88b0c651c039666aa94a98fcdb34977feea7fc7d10808c SHA512 cc07cdd1fba4881907b507ff6b6c9bce9e3dadd8ef744194f08ee718a6210c039ac0c51c12edd720503f8e59bcd11c178fc323e1a59696be8c3b8262cf47a452
DIST arpack-3.8.0.tar.gz 1014494 BLAKE2B 6daf8a237fdfce527935d777292df150b2f78892d9975f8696a37024fcb78174b29afd300e7abca2684c1907eeda658eb4478f09f580835896c0e10d106cdbbd SHA512 8969c74c4c0459ea2d29ea49d5260f668fd33f73886df0da78a42a94aea93c9f5fb70f5df035266db68807ab09a92c13487a7a4e6ca64922145aade8a148a2de
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.7.0.ebuild b/sci-libs/arpack/arpack-3.7.0.ebuild
deleted file mode 100644
index 20a36754ea1..00000000000
--- a/sci-libs/arpack/arpack-3.7.0.ebuild
+++ /dev/null
@@ -1,63 +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() {
- # Fix should land in 3.8.0
- 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 "${ED}" -name '*.la' -delete || die
-}
next reply other threads:[~2021-01-07 1:24 UTC|newest]
Thread overview: 47+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-07 1:24 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-03-06 5:30 [gentoo-commits] repo/gentoo:master commit in: sci-libs/arpack/ Sam James
2024-03-04 11:38 Sam James
2023-12-16 20:56 Sam James
2023-12-16 19:16 Arthur Zamarin
2023-12-16 11:47 Arthur Zamarin
2023-12-09 17:15 Arthur Zamarin
2023-11-13 3:28 Sam James
2023-08-24 1:04 Matthias Maier
2023-07-05 16:30 Viorel Munteanu
2023-03-05 4:13 Sam James
2021-11-05 18:02 Sam James
2021-11-05 18:02 Sam James
2021-07-27 6:19 Sergei Trofimovich
2021-07-02 7:35 Marek Szuba
2021-07-02 7:33 Marek Szuba
2021-01-03 21:30 Sam James
2021-01-03 19:40 Sam James
2021-01-03 9:12 Sam James
2020-12-27 3:37 Sam James
2020-12-27 3:37 Sam James
2020-11-12 20:57 Andreas Sturmlechner
2020-11-12 17:26 Sam James
2020-11-07 20:34 Sergei Trofimovich
2020-11-07 20:22 Sergei Trofimovich
2020-11-06 23:29 Sam James
2020-11-06 22:17 Sam James
2020-11-06 5:53 Sam James
2020-09-18 22:56 Sam James
2020-09-18 22:56 Sam James
2020-08-23 17:01 David Seifert
2020-06-14 22:13 David Seifert
2020-06-14 22:13 David Seifert
2020-06-07 21:11 Alexey Shvetsov
2020-06-05 2:28 Brian Evans
2020-03-07 15:11 Michał Górny
2019-10-20 13:37 David Seifert
2018-03-24 2:25 Matthias Maier
2018-03-24 2:25 Matthias Maier
2017-09-25 8:07 Patrick Lauer
2017-08-13 9:04 Matthias Maier
2017-02-19 14:43 Justin Lecher
2017-02-16 23:14 Michael Weber
2017-02-12 17:01 Agostino Sarubbo
2017-02-05 13:28 Jeroen Roovers
2017-02-04 15:21 Agostino Sarubbo
2017-02-03 3:02 Matthias Maier
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=1609982436.96f91fe7c35ba404cb48dbd5a3cb4f4020c3c31e.sam@gentoo \
--to=sam@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