public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/osc-mpiexec/, profiles/
@ 2019-12-09 20:30 Aaron Bauman
  0 siblings, 0 replies; only message in thread
From: Aaron Bauman @ 2019-12-09 20:30 UTC (permalink / raw
  To: gentoo-commits

commit:     4a5bd39f6a4462760d02af36a17c06cf9c6b5614
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  9 20:17:37 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Dec  9 20:29:23 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a5bd39f

sys-cluster/osc-mpiexec: drop last-rited pkg

Closes: https://bugs.gentoo.org/618464

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 profiles/package.mask                           |  5 --
 sys-cluster/osc-mpiexec/Manifest                |  1 -
 sys-cluster/osc-mpiexec/metadata.xml            |  8 ---
 sys-cluster/osc-mpiexec/osc-mpiexec-0.83.ebuild | 65 -------------------------
 4 files changed, 79 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 885898d114e..c07535cf8b3 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -531,11 +531,6 @@ dev-embedded/sgpp-lite-arm-uclinux-bin
 # Removal in 30 days.  Bug #681186.
 dev-dotnet/gsf-sharp
 
-# Michał Górny <mgorny@gentoo.org> (2019-11-10)
-# Fails to build since 2017.  EAPI 0.  No revdeps.
-# Removal in 30 days.  Bug #618464.
-sys-cluster/osc-mpiexec
-
 # Michał Górny <mgorny@gentoo.org> (2019-10-20)
 # Testing version that breaks multiple plugins.  Let's keep it masked
 # until upstream releases fixed versions.

diff --git a/sys-cluster/osc-mpiexec/Manifest b/sys-cluster/osc-mpiexec/Manifest
deleted file mode 100644
index cfc02937900..00000000000
--- a/sys-cluster/osc-mpiexec/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mpiexec-0.83.tgz 207619 BLAKE2B c08799cbe30fd27a31344ea1472a22ccc4073b434d322acccc686c93d09824b4dce698d3dea7fb89367ec05c4ab90583e388501cf5c305b54eb5f321c970155b SHA512 e82828bad6d6f0cf8b2fa879d239460483af5164f696b26b21b138eeddf0d63a37748f8b540ceba6d328f90a64797a337934ba7152bdf2cbdde40be3f990a57d

diff --git a/sys-cluster/osc-mpiexec/metadata.xml b/sys-cluster/osc-mpiexec/metadata.xml
deleted file mode 100644
index 4a09d7ba8d6..00000000000
--- a/sys-cluster/osc-mpiexec/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-	<email>cluster@gentoo.org</email>
-	<name>Gentoo Cluster Project</name>
-</maintainer>
-</pkgmetadata>

diff --git a/sys-cluster/osc-mpiexec/osc-mpiexec-0.83.ebuild b/sys-cluster/osc-mpiexec/osc-mpiexec-0.83.ebuild
deleted file mode 100644
index 22ec5739939..00000000000
--- a/sys-cluster/osc-mpiexec/osc-mpiexec-0.83.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-MY_PN=${PN#osc-}
-DESCRIPTION="replacement for mpirun, integrates MPI with PBS"
-SRC_URI="http://www.osc.edu/~djohnson/mpiexec/${MY_PN}-${PV}.tgz"
-HOMEPAGE="http://www.osc.edu/~djohnson/mpiexec/index.php"
-
-DEPEND="sys-cluster/torque"
-RDEPEND="${DEPEND}
-	net-misc/openssh"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ~ppc x86"
-IUSE=""
-
-S="${WORKDIR}"/${MY_PN}-${PV}
-
-RESTRICT="test"
-# The test suite that is included with the source requires
-# the ability to qsub a number of jobs.  Such behavior
-# obviously does not belong in the ebuild.
-
-src_compile() {
-	local c="--with-default-comm=mpich-p4
-		--with-pbs=/usr/
-		--with-mpicc=/usr/bin/mpicc
-		--with-mpif77=/usr/bin/mpif77"
-
-	# The following at the recommendation of README, Cray specific.
-	c="${c} --disable-mpich-rai"
-
-	econf ${c} || die
-	emake || die "compile failed"
-}
-
-src_install() {
-	local f
-	emake DESTDIR="${D}" install || die
-
-	# And the following so that osc-mpiexec doesn't conflict with
-	# the packaged mpiexec's that all the MPI-2 implementations have.
-	for f in $(find "${D}" -name 'mpiexec*'); do
-		mv ${f} $(dirname ${f})/osc-$(basename ${f}) \
-			|| die "Failed to prefix binary ${f} with osc-"
-	done
-
-	dodoc README README.lam ChangeLog
-}
-
-pkg_postinst() {
-	elog "The OSC Mpiexec package typically installs it's binaries"
-	elog "and manpages as 'mpiexec'.  However, this ebuild renames"
-	elog "those to be prefixed with 'osc-' in order to avoid blocking"
-	elog "against the exact packages that osc-mpiexec is meant to"
-	elog "work with."
-	elog
-	elog "The default communication device has been set to mpich-p4"
-	elog "(ethernet).  If you wish to use another communication"
-	elog "device, either set MPIEXEC_COMM in your environment or use"
-	elog "the --comm argument to mpiexec."
-}


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-12-09 20:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-09 20:30 [gentoo-commits] repo/gentoo:master commit in: sys-cluster/osc-mpiexec/, profiles/ Aaron Bauman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox