public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/metis/
Date: Tue, 21 Jul 2020 10:03:35 +0000 (UTC)	[thread overview]
Message-ID: <1595325796.2ff10a7ce82920353ff01bfde050d26a909b7378.asturm@gentoo> (raw)

commit:     2ff10a7ce82920353ff01bfde050d26a909b7378
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 19 16:28:54 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Jul 21 10:03:16 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ff10a7c

sci-libs/metis: Drop 5.1.0-r2 and 5.1.0-r3

Overshadowed by 5.1.0-r4. cmake-utils--

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 sci-libs/metis/metis-5.1.0-r2.ebuild | 72 ------------------------------------
 sci-libs/metis/metis-5.1.0-r3.ebuild | 72 ------------------------------------
 2 files changed, 144 deletions(-)

diff --git a/sci-libs/metis/metis-5.1.0-r2.ebuild b/sci-libs/metis/metis-5.1.0-r2.ebuild
deleted file mode 100644
index a006742a7f5..00000000000
--- a/sci-libs/metis/metis-5.1.0-r2.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils fortran-2
-
-DESCRIPTION="A package for unstructured serial graph partitioning"
-HOMEPAGE="http://www-users.cs.umn.edu/~karypis/metis/metis/"
-SRC_URI="http://glaros.dtc.umn.edu/gkhome/fetch/sw/${PN}/${P}.tar.gz"
-
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
-LICENSE="Apache-2.0"
-IUSE="doc openmp static-libs"
-
-DEPEND=""
-RDEPEND="${DEPEND}
-	!sci-libs/parmetis"
-
-DOCS=( manual/manual.pdf )
-
-PATCHES=(
-	"${FILESDIR}"/${P}-datatype.patch
-	"${FILESDIR}"/${P}-shared-GKlib.patch
-	"${FILESDIR}"/${P}-multilib.patch
-)
-
-src_prepare() {
-	sed \
-		-e 's:-O3::g' \
-		-i GKlib/GKlibSystem.cmake || die
-
-	cmake-utils_src_prepare
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DGKLIB_PATH="${S}"/GKlib
-		-DSHARED=TRUE
-		-DOPENMP="$(usex openmp)"
-	)
-	cmake-utils_src_configure
-}
-
-src_test() {
-	cd graphs || die
-	PATH="${BUILD_DIR}"/programs/:${PATH} LD_LIBRARY_PATH="${BUILD_DIR}"/lib ndmetis mdual.graph || die
-	PATH="${BUILD_DIR}"/programs/:${PATH} LD_LIBRARY_PATH="${BUILD_DIR}"/lib mpmetis metis.mesh 2 || die
-	PATH="${BUILD_DIR}"/programs/:${PATH} LD_LIBRARY_PATH="${BUILD_DIR}"/lib gpmetis test.mgraph 4 || die
-	PATH="${BUILD_DIR}"/programs/:${PATH} LD_LIBRARY_PATH="${BUILD_DIR}"/lib gpmetis copter2.graph 4 || die
-	PATH="${BUILD_DIR}"/programs/:${PATH} LD_LIBRARY_PATH="${BUILD_DIR}"/lib graphchk 4elt.graph || die
-}
-
-src_install() {
-	cat >> "${T}"/metis.pc <<- EOF
-	prefix=${EPREFIX}/usr
-	exec_prefix=\${prefix}
-	libdir=\${exec_prefix}/$(get_libdir)
-	includedir=\${prefix}/include
-
-	Name: METIS
-	Description: Software for partioning unstructured graphes and meshes
-	Version: ${PV}
-	Cflags: -I\${includedir}/metis
-	Libs: -L\${libdir} -lmetis
-	EOF
-
-	insinto /usr/$(get_libdir)/pkgconfig
-	doins "${T}"/metis.pc
-	cmake-utils_src_install
-}

diff --git a/sci-libs/metis/metis-5.1.0-r3.ebuild b/sci-libs/metis/metis-5.1.0-r3.ebuild
deleted file mode 100644
index 249aad35b80..00000000000
--- a/sci-libs/metis/metis-5.1.0-r3.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils fortran-2
-
-DESCRIPTION="A package for unstructured serial graph partitioning"
-HOMEPAGE="http://www-users.cs.umn.edu/~karypis/metis/metis/"
-SRC_URI="http://glaros.dtc.umn.edu/gkhome/fetch/sw/${PN}/${P}.tar.gz"
-
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
-LICENSE="Apache-2.0"
-IUSE="doc openmp static-libs"
-
-DEPEND=""
-RDEPEND="${DEPEND}
-	!sci-libs/parmetis"
-
-DOCS=( manual/manual.pdf )
-
-PATCHES=(
-	"${FILESDIR}"/${P}-datatype.patch
-	"${FILESDIR}"/${P}-shared-GKlib.patch
-	"${FILESDIR}"/${P}-multilib.patch
-)
-
-src_prepare() {
-	sed \
-		-e 's:-O3::g' \
-		-i GKlib/GKlibSystem.cmake || die
-
-	cmake-utils_src_prepare
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DGKLIB_PATH="${S}"/GKlib
-		-DSHARED="$(usex static-libs no yes)"
-		-DOPENMP="$(usex openmp)"
-	)
-	cmake-utils_src_configure
-}
-
-src_test() {
-	cd graphs || die
-	PATH="${BUILD_DIR}"/programs/:${PATH} LD_LIBRARY_PATH="${BUILD_DIR}"/lib ndmetis mdual.graph || die
-	PATH="${BUILD_DIR}"/programs/:${PATH} LD_LIBRARY_PATH="${BUILD_DIR}"/lib mpmetis metis.mesh 2 || die
-	PATH="${BUILD_DIR}"/programs/:${PATH} LD_LIBRARY_PATH="${BUILD_DIR}"/lib gpmetis test.mgraph 4 || die
-	PATH="${BUILD_DIR}"/programs/:${PATH} LD_LIBRARY_PATH="${BUILD_DIR}"/lib gpmetis copter2.graph 4 || die
-	PATH="${BUILD_DIR}"/programs/:${PATH} LD_LIBRARY_PATH="${BUILD_DIR}"/lib graphchk 4elt.graph || die
-}
-
-src_install() {
-	cat >> "${T}"/metis.pc <<- EOF
-	prefix=${EPREFIX}/usr
-	exec_prefix=\${prefix}
-	libdir=\${exec_prefix}/$(get_libdir)
-	includedir=\${prefix}/include
-
-	Name: METIS
-	Description: Software for partioning unstructured graphes and meshes
-	Version: ${PV}
-	Cflags: -I\${includedir}/metis
-	Libs: -L\${libdir} -lmetis
-	EOF
-
-	insinto /usr/$(get_libdir)/pkgconfig
-	doins "${T}"/metis.pc
-	cmake-utils_src_install
-}


             reply	other threads:[~2020-07-21 10:03 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-21 10:03 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-03-10 13:19 [gentoo-commits] repo/gentoo:master commit in: sci-libs/metis/ Sam James
2024-03-10 13:07 Arthur Zamarin
2024-03-10 12:13 Arthur Zamarin
2024-03-10 12:13 Arthur Zamarin
2024-03-10 12:13 Arthur Zamarin
2023-12-06 17:57 Ionen Wolkens
2023-12-01  3:30 Sam James
2023-08-05 11:40 Arthur Zamarin
2023-07-29 20:39 Arthur Zamarin
2023-07-17  6:12 Sam James
2023-07-17  6:12 Sam James
2023-07-14 18:02 Arthur Zamarin
2023-06-12  6:01 Arthur Zamarin
2023-06-03  9:50 WANG Xuerui
2023-05-03 10:55 Jakov Smolić
2023-05-03  8:49 Andrew Ammerlaan
2023-05-02 17:36 Arthur Zamarin
2022-12-01  3:21 WANG Xuerui
2022-10-09 16:10 Sam James
2022-09-19  6:42 Michał Górny
2021-10-06  6:22 Jakov Smolić
2021-10-06  6:06 Agostino Sarubbo
2021-10-05  6:48 Agostino Sarubbo
2021-10-04 19:19 Sam James
2021-10-04 19:19 Sam James
2021-10-04 19:17 Sam James
2021-10-04 19:16 Sam James
2021-10-04 17:44 Sam James
2021-07-20  7:41 Andrew Ammerlaan
2021-07-16 11:43 Marek Szuba
2021-07-16 11:43 Marek Szuba
2021-07-16 11:43 Marek Szuba
2021-07-14 16:14 Marek Szuba
2020-11-07 17:57 Sam James
2020-07-21 10:03 Andreas Sturmlechner
2020-07-19 16:03 Sam James
2020-07-07  6:58 Sergei Trofimovich
2020-06-22  6:57 Agostino Sarubbo
2020-06-21 17:08 Agostino Sarubbo
2020-06-21 17:03 Agostino Sarubbo
2020-01-11 16:33 Ulrich Müller
2019-05-21 20:30 Aaron Bauman
2017-07-12 18:40 Alexis Ballier
2017-07-11  8:41 Alexis Ballier
2017-07-01  9:52 Sergei Trofimovich
2017-07-01  9:52 Sergei Trofimovich
2017-07-01  9:52 Sergei Trofimovich
2017-04-22 16:03 Justin Lecher
2017-04-22 16:03 Justin Lecher
2017-03-24 12:05 Nicolas Bock
2016-08-11 17:18 David Seifert
2016-06-07 16:47 Tobias Klausmann

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=1595325796.2ff10a7ce82920353ff01bfde050d26a909b7378.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