From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/gasnet/
Date: Sat, 1 Jan 2022 10:48:14 +0000 (UTC) [thread overview]
Message-ID: <1641034079.443d6b672847fdfcc6af3d5746c97cb5d4b1ae50.ulm@gentoo> (raw)
commit: 443d6b672847fdfcc6af3d5746c97cb5d4b1ae50
Author: Marco Scardovi <marco <AT> scardovi <DOT> com>
AuthorDate: Fri Dec 3 20:35:22 2021 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Jan 1 10:47:59 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=443d6b67
sys-cluster/gasnet: drop older versions
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Marco Scardovi <marco <AT> scardovi.com>
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
sys-cluster/gasnet/Manifest | 3 -
sys-cluster/gasnet/gasnet-1.26.4-r1.ebuild | 72 ------------------------
sys-cluster/gasnet/gasnet-1.26.4.ebuild | 33 -----------
sys-cluster/gasnet/gasnet-1.28.0.ebuild | 88 -----------------------------
sys-cluster/gasnet/gasnet-1.28.2.ebuild | 89 ------------------------------
sys-cluster/gasnet/gasnet-1.30.0.ebuild | 89 ------------------------------
6 files changed, 374 deletions(-)
diff --git a/sys-cluster/gasnet/Manifest b/sys-cluster/gasnet/Manifest
index 6023d80800b3..fcf0a252eebf 100644
--- a/sys-cluster/gasnet/Manifest
+++ b/sys-cluster/gasnet/Manifest
@@ -1,4 +1 @@
-DIST GASNet-1.26.4.tar.gz 2656498 BLAKE2B 0c203e42b8d55d28ab1cb055b9218afef34a9f01b3a373bb462f66564bb861e9bfe3e6871145fe0fc2544b2d949795f764b979ece6cd42a8b522ea810e1febea SHA512 9faa0281177afc67f2bf75e3a487accdf87b67a3da6afabcd625a26a3533033313b545893dead7ac1d176c57fe7547cd077d3bb368bc9e3211ffb0b316f3af0c
-DIST GASNet-1.28.0.tar.gz 2654757 BLAKE2B 2c55ba6d2278b874f5e836e871c14acc29daa684746094c8982d3e62c06fa27725d5f6e3c31eb69f4b130dc1a6545beb498624b55cdaf69aa08e3e92675d0e9e SHA512 3edef7efc55833d286b1d562f670b9605b1c8c37f9cf5582a46a5e7d8b2fbb7deca695597accda6f39c75e840da1879e8bb3d8b9f25da6be4aad60eca4aad169
-DIST GASNet-1.28.2.tar.gz 2691394 BLAKE2B de428d4cf606672b68b4065a96b3938a89ba2e4d0b95784959ad167554dd7c2c301238027a372a9aec44afbcd5a588cecaada0d6250daba23c46833a836c87b1 SHA512 df472c55642891405cd86b9cc573cb1cd7607af7cd0ed931cb423ce0274f1a000f5f0b3481950cac710f154a5068088e8c101f1ea0cb9ceb4aaf73444cb3cef5
DIST GASNet-1.30.0.tar.gz 2686524 BLAKE2B c42bc87dd387a356be254dee5cf57d5c4ce086dc14e08ea137a6886656890e355a9f3305142688922966b46eb2b2338b1ba7e65c75ee9af4248ea5cab91c2ce0 SHA512 c95825906b2298be16087fa817baf14076c2d70b1e6420feef07da0c01d2e780415904dac5ec9b4debdffb0749b706f40ac50c4574425978783d7121506c99a6
diff --git a/sys-cluster/gasnet/gasnet-1.26.4-r1.ebuild b/sys-cluster/gasnet/gasnet-1.26.4-r1.ebuild
deleted file mode 100644
index 32c182d224bd..000000000000
--- a/sys-cluster/gasnet/gasnet-1.26.4-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools toolchain-funcs multilib
-
-MY_P="${PN^^[gasn]}-${PV}"
-DESCRIPTION="Networking middleware for partitioned global address space (PGAS) language"
-HOMEPAGE="https://gasnet.lbl.gov/"
-SRC_URI="https://gasnet.lbl.gov/download/${MY_P}.tar.gz"
-
-SOVER="${PV%%.*}"
-LICENSE="BSD"
-SLOT="0/${SOVER}"
-KEYWORDS="~amd64"
-IUSE="mpi static-libs threads"
-
-DEPEND="mpi? ( virtual/mpi )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-static_to_shared() {
- local libstatic="${1}"; shift
- local libname="${libstatic%.a}"
- libname="${libname##*/}"
- local soname="${libname}$(get_libname ${SOVER})"
- local libdir="${libstatic%/*}"
-
- einfo "Making ${soname} from ${libstatic}"
- if [[ ${CHOST} == *-darwin* ]] ; then
- ${LINK:-$(tc-getCC)} ${LDFLAGS} \
- -dynamiclib -install_name "${EPREFIX}"/usr/lib/"${soname}" \
- -Wl,-all_load -Wl,${libstatic} \
- "$@" -o ${libdir}/${soname} || die "${soname} failed"
- else
- ${LINK:-$(tc-getCC)} ${LDFLAGS} \
- -shared -Wl,-soname=${soname} \
- -Wl,--whole-archive ${libstatic} -Wl,--no-whole-archive \
- "$@" -o ${libdir}/${soname} || die "${soname} failed"
- ln -s ${soname} ${libdir}/${libname}$(get_libname)
- fi
-}
-
-src_prepare() {
- find . \
- \( -name Makefile.am -or -name "*.mak" \) \
- -exec sed -i '/^docdir/s/^/#/' {} + || die
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_enable mpi) \
- $(use_enable threads pthreads) \
- CC="$(tc-getCC) ${CFLAGS} -fPIC" \
- MPI_CC="mpicc ${CFLAGS} -fPIC" \
- CXX="$(tc-getCXX) ${CFLAGS} -fPIC"
-}
-
-src_install() {
- local l libs
- default
- for l in "${ED}/usr/$(get_libdir)"/*.a; do
- libs=
- [[ $l = *mpi* ]] && libs+=" -lmpi"
- static_to_shared "${l}" ${libs}
- done
- use static-libs || rm -f "${ED}/usr/$(get_libdir)"/*.a || die
-}
diff --git a/sys-cluster/gasnet/gasnet-1.26.4.ebuild b/sys-cluster/gasnet/gasnet-1.26.4.ebuild
deleted file mode 100644
index ddb38e2c5e14..000000000000
--- a/sys-cluster/gasnet/gasnet-1.26.4.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-MY_P="${PN^^[gasn]}-${PV}"
-DESCRIPTION="Networking middleware for partitioned global address space (PGAS) language"
-HOMEPAGE="https://gasnet.lbl.gov/"
-SRC_URI="https://gasnet.lbl.gov/download/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="mpi threads"
-
-DEPEND="mpi? ( virtual/mpi )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- find . \
- \( -name Makefile.am -or -name "*.mak" \) \
- -exec sed -i '/^docdir/s/^/#/' {} + || die
- default
- eautoreconf
-}
-
-src_configure() {
- econf $(use_enable mpi) $(use_enable threads pthreads)
-}
diff --git a/sys-cluster/gasnet/gasnet-1.28.0.ebuild b/sys-cluster/gasnet/gasnet-1.28.0.ebuild
deleted file mode 100644
index 2bc9dbd32dcd..000000000000
--- a/sys-cluster/gasnet/gasnet-1.28.0.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools toolchain-funcs multilib
-
-MY_P="${PN^^[gasn]}-${PV}"
-DESCRIPTION="Networking middleware for partitioned global address space (PGAS) language"
-HOMEPAGE="https://gasnet.lbl.gov/"
-SRC_URI="https://gasnet.lbl.gov/download/${MY_P}.tar.gz"
-
-SOVER="${PV%%.*}"
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm"
-IUSE="mpi test threads"
-RESTRICT="!test? ( test )"
-
-DEPEND="mpi? ( virtual/mpi )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-static_to_shared() {
- local libstatic="${1}"; shift
- local libname="${libstatic%.a}"
- libname="${libname##*/}"
- local soname="${libname}$(get_libname ${SOVER})"
- local libdir="${libstatic%/*}"
-
- einfo "Making ${soname} from ${libstatic} with libs ${@}"
- if [[ ${CHOST} == *-darwin* ]] ; then
- ${LINK:-$(tc-getCXX)} ${LDFLAGS} \
- -dynamiclib -install_name "${EPREFIX}"/usr/lib/"${soname}" \
- -Wl,-all_load -Wl,${libstatic} \
- "$@" -o ${libdir}/${soname} || die "${soname} failed"
- else
- ${LINK:-$(tc-getCXX)} ${LDFLAGS} \
- -shared -Wl,-soname=${soname} \
- -Wl,-z,defs \
- -Wl,--whole-archive ${libstatic} -Wl,--no-whole-archive \
- "$@" -o ${libdir}/${soname} || die "${soname} failed"
- ln -s ${soname} ${libdir}/${libname}$(get_libname)
- fi
-}
-
-src_prepare() {
- find . \
- \( -name Makefile.am -or -name "*.mak" \) \
- -exec sed -i '/^docdir/s/^/#/' {} + || die
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_enable mpi) \
- $(use_enable threads pthreads) \
- CC="$(tc-getCC) ${CFLAGS} -fPIC" \
- MPI_CC="mpicc ${CFLAGS} -fPIC" \
- CXX="$(tc-getCXX) ${CXXFLAGS} -fPIC"
-}
-
-src_compile() {
- emake MANUAL_CFLAGS="${CFLAGS} -fPIC" MANUAL_MPICFLAGS="${CFLAGS} -fPIC" MANUAL_CXXFLAGS="${CXXFLAGS} -fPIC"
-}
-
-src_test() {
- emake check MANUAL_CFLAGS="${CFLAGS} -fPIC" MANUAL_MPICFLAGS="${CFLAGS} -fPIC" MANUAL_CXXFLAGS="${CXXFLAGS} -fPIC"
-}
-
-src_install() {
- local l libs
- default
- for l in "${ED}/usr/$(get_libdir)"/lib{gasnet_tools-seq,am*,*}.a; do
- [[ -f ${l} ]] || continue
- libs=
- [[ ${l} = */libgasnet-*-par* ]] && libs+=" -lpthread"
- [[ ${l} = */libamudp.a ]] && libs+=" -L${ED}/usr/$(get_libdir) -lgasnet_tools-seq"
- [[ ${l} = */libammpi.a ]] && libs+=" -lmpi"
- [[ ${l} = */libgasnet-udp-* ]] && libs+=" -L${ED}/usr/$(get_libdir) -lamudp"
- [[ ${l} = */libgasnet-mpi-* ]] && libs+=" -L${ED}/usr/$(get_libdir) -lammpi"
- [[ ${l} = */libgasnet-*-* ]] && libs+=" -lrt"
- static_to_shared "${l}" ${libs}
- rm ${l} || die
- done
-}
diff --git a/sys-cluster/gasnet/gasnet-1.28.2.ebuild b/sys-cluster/gasnet/gasnet-1.28.2.ebuild
deleted file mode 100644
index f7b343704c77..000000000000
--- a/sys-cluster/gasnet/gasnet-1.28.2.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools toolchain-funcs multilib
-
-MY_P="${PN^^[gasn]}-${PV}"
-DESCRIPTION="Networking middleware for partitioned global address space (PGAS) language"
-HOMEPAGE="https://gasnet.lbl.gov/"
-SRC_URI="https://gasnet.lbl.gov/download/${MY_P}.tar.gz"
-
-SOVER="${PV%%.*}"
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm"
-IUSE="mpi test threads"
-RESTRICT="!test? ( test )"
-
-DEPEND="mpi? ( virtual/mpi )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-static_to_shared() {
- local libstatic="${1}"; shift
- local libname="${libstatic%.a}"
- libname="${libname##*/}"
- local soname="${libname}$(get_libname ${SOVER})"
- local libdir="${libstatic%/*}"
-
- einfo "Making ${soname} from ${libstatic} with libs ${@}"
- if [[ ${CHOST} == *-darwin* ]] ; then
- ${LINK:-$(tc-getCXX)} ${LDFLAGS} \
- -dynamiclib -install_name "${EPREFIX}"/usr/lib/"${soname}" \
- -Wl,-all_load -Wl,${libstatic} \
- "$@" -o ${libdir}/${soname} || die "${soname} failed"
- else
- ${LINK:-$(tc-getCXX)} ${LDFLAGS} \
- -shared -Wl,-soname=${soname} \
- -Wl,-z,defs \
- -Wl,--whole-archive ${libstatic} -Wl,--no-whole-archive \
- "$@" -o ${libdir}/${soname} || die "${soname} failed"
- ln -s ${soname} ${libdir}/${libname}$(get_libname)
- fi
-}
-
-src_prepare() {
- find . \
- \( -name Makefile.am -or -name "*.mak" \) \
- -exec sed -i '/^docdir/s/^/#/' {} + || die
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- --disable-ibv \
- $(use_enable mpi) \
- $(use_enable threads pthreads) \
- CC="$(tc-getCC) ${CFLAGS} -fPIC" \
- MPI_CC="mpicc ${CFLAGS} -fPIC" \
- CXX="$(tc-getCXX) ${CXXFLAGS} -fPIC"
-}
-
-src_compile() {
- emake MANUAL_CFLAGS="${CFLAGS} -fPIC" MANUAL_MPICFLAGS="${CFLAGS} -fPIC" MANUAL_CXXFLAGS="${CXXFLAGS} -fPIC"
-}
-
-src_test() {
- emake check MANUAL_CFLAGS="${CFLAGS} -fPIC" MANUAL_MPICFLAGS="${CFLAGS} -fPIC" MANUAL_CXXFLAGS="${CXXFLAGS} -fPIC"
-}
-
-src_install() {
- local l libs
- default
- for l in "${ED}/usr/$(get_libdir)"/lib{gasnet_tools-seq,am*,*}.a; do
- [[ -f ${l} ]] || continue
- libs=
- [[ ${l} = */libgasnet-*-par* ]] && libs+=" -lpthread"
- [[ ${l} = */libamudp.a ]] && libs+=" -L${ED}/usr/$(get_libdir) -lgasnet_tools-seq"
- [[ ${l} = */libammpi.a ]] && libs+=" -lmpi"
- [[ ${l} = */libgasnet-udp-* ]] && libs+=" -L${ED}/usr/$(get_libdir) -lamudp"
- [[ ${l} = */libgasnet-mpi-* ]] && libs+=" -L${ED}/usr/$(get_libdir) -lammpi"
- [[ ${l} = */libgasnet-*-* ]] && libs+=" -lrt"
- static_to_shared "${l}" ${libs}
- rm ${l} || die
- done
-}
diff --git a/sys-cluster/gasnet/gasnet-1.30.0.ebuild b/sys-cluster/gasnet/gasnet-1.30.0.ebuild
deleted file mode 100644
index f7b343704c77..000000000000
--- a/sys-cluster/gasnet/gasnet-1.30.0.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools toolchain-funcs multilib
-
-MY_P="${PN^^[gasn]}-${PV}"
-DESCRIPTION="Networking middleware for partitioned global address space (PGAS) language"
-HOMEPAGE="https://gasnet.lbl.gov/"
-SRC_URI="https://gasnet.lbl.gov/download/${MY_P}.tar.gz"
-
-SOVER="${PV%%.*}"
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm"
-IUSE="mpi test threads"
-RESTRICT="!test? ( test )"
-
-DEPEND="mpi? ( virtual/mpi )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-static_to_shared() {
- local libstatic="${1}"; shift
- local libname="${libstatic%.a}"
- libname="${libname##*/}"
- local soname="${libname}$(get_libname ${SOVER})"
- local libdir="${libstatic%/*}"
-
- einfo "Making ${soname} from ${libstatic} with libs ${@}"
- if [[ ${CHOST} == *-darwin* ]] ; then
- ${LINK:-$(tc-getCXX)} ${LDFLAGS} \
- -dynamiclib -install_name "${EPREFIX}"/usr/lib/"${soname}" \
- -Wl,-all_load -Wl,${libstatic} \
- "$@" -o ${libdir}/${soname} || die "${soname} failed"
- else
- ${LINK:-$(tc-getCXX)} ${LDFLAGS} \
- -shared -Wl,-soname=${soname} \
- -Wl,-z,defs \
- -Wl,--whole-archive ${libstatic} -Wl,--no-whole-archive \
- "$@" -o ${libdir}/${soname} || die "${soname} failed"
- ln -s ${soname} ${libdir}/${libname}$(get_libname)
- fi
-}
-
-src_prepare() {
- find . \
- \( -name Makefile.am -or -name "*.mak" \) \
- -exec sed -i '/^docdir/s/^/#/' {} + || die
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- --disable-ibv \
- $(use_enable mpi) \
- $(use_enable threads pthreads) \
- CC="$(tc-getCC) ${CFLAGS} -fPIC" \
- MPI_CC="mpicc ${CFLAGS} -fPIC" \
- CXX="$(tc-getCXX) ${CXXFLAGS} -fPIC"
-}
-
-src_compile() {
- emake MANUAL_CFLAGS="${CFLAGS} -fPIC" MANUAL_MPICFLAGS="${CFLAGS} -fPIC" MANUAL_CXXFLAGS="${CXXFLAGS} -fPIC"
-}
-
-src_test() {
- emake check MANUAL_CFLAGS="${CFLAGS} -fPIC" MANUAL_MPICFLAGS="${CFLAGS} -fPIC" MANUAL_CXXFLAGS="${CXXFLAGS} -fPIC"
-}
-
-src_install() {
- local l libs
- default
- for l in "${ED}/usr/$(get_libdir)"/lib{gasnet_tools-seq,am*,*}.a; do
- [[ -f ${l} ]] || continue
- libs=
- [[ ${l} = */libgasnet-*-par* ]] && libs+=" -lpthread"
- [[ ${l} = */libamudp.a ]] && libs+=" -L${ED}/usr/$(get_libdir) -lgasnet_tools-seq"
- [[ ${l} = */libammpi.a ]] && libs+=" -lmpi"
- [[ ${l} = */libgasnet-udp-* ]] && libs+=" -L${ED}/usr/$(get_libdir) -lamudp"
- [[ ${l} = */libgasnet-mpi-* ]] && libs+=" -L${ED}/usr/$(get_libdir) -lammpi"
- [[ ${l} = */libgasnet-*-* ]] && libs+=" -lrt"
- static_to_shared "${l}" ${libs}
- rm ${l} || die
- done
-}
next reply other threads:[~2022-01-01 10:48 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-01 10:48 Ulrich Müller [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-01-01 10:48 [gentoo-commits] repo/gentoo:master commit in: sys-cluster/gasnet/ Ulrich Müller
2020-05-28 13:05 Christoph Junghans
2019-04-04 21:16 Aaron Bauman
2017-09-01 22:02 Christoph Junghans
2017-04-24 18:59 Christoph Junghans
2017-03-18 19:15 Christoph Junghans
2016-11-14 2:01 Christoph Junghans
2016-11-01 20:42 Christoph Junghans
2016-10-24 21:42 Christoph Junghans
2016-09-09 22:34 Christoph Junghans
2016-09-02 22:28 Christoph Junghans
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=1641034079.443d6b672847fdfcc6af3d5746c97cb5d4b1ae50.ulm@gentoo \
--to=ulm@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