From ac398431d5c1ef8d5e237d2cd47c1b4a867c526a Mon Sep 17 00:00:00 2001 From: Sam James Date: Fri, 29 Oct 2021 23:39:10 +0100 Subject: sys-cluster/legion: add hwloc subslot operator Signed-off-by: Sam James --- sys-cluster/legion/legion-16.08.0-r1.ebuild | 36 ------------------------- sys-cluster/legion/legion-16.08.0-r2.ebuild | 37 ++++++++++++++++++++++++++ sys-cluster/legion/legion-16.10.0-r1.ebuild | 33 +++++++++++++++++++++++ sys-cluster/legion/legion-16.10.0.ebuild | 32 ---------------------- sys-cluster/legion/legion-17.02.0-r1.ebuild | 35 ++++++++++++++++++++++++ sys-cluster/legion/legion-17.02.0.ebuild | 34 ------------------------ sys-cluster/legion/legion-17.05.0-r1.ebuild | 39 +++++++++++++++++++++++++++ sys-cluster/legion/legion-17.05.0.ebuild | 38 -------------------------- sys-cluster/legion/legion-17.08.0-r1.ebuild | 41 +++++++++++++++++++++++++++++ sys-cluster/legion/legion-17.08.0.ebuild | 40 ---------------------------- sys-cluster/legion/legion-17.10.0-r1.ebuild | 41 +++++++++++++++++++++++++++++ sys-cluster/legion/legion-17.10.0.ebuild | 40 ---------------------------- sys-cluster/legion/legion-18.02.0-r1.ebuild | 41 +++++++++++++++++++++++++++++ sys-cluster/legion/legion-18.02.0.ebuild | 40 ---------------------------- sys-cluster/legion/legion-18.05.0-r1.ebuild | 41 +++++++++++++++++++++++++++++ sys-cluster/legion/legion-18.05.0.ebuild | 40 ---------------------------- sys-cluster/legion/legion-18.12.0-r1.ebuild | 41 +++++++++++++++++++++++++++++ sys-cluster/legion/legion-18.12.0.ebuild | 40 ---------------------------- sys-cluster/legion/legion-19.06.0-r1.ebuild | 41 +++++++++++++++++++++++++++++ sys-cluster/legion/legion-19.06.0.ebuild | 40 ---------------------------- sys-cluster/legion/legion-9999.ebuild | 3 ++- 21 files changed, 392 insertions(+), 381 deletions(-) delete mode 100644 sys-cluster/legion/legion-16.08.0-r1.ebuild create mode 100644 sys-cluster/legion/legion-16.08.0-r2.ebuild create mode 100644 sys-cluster/legion/legion-16.10.0-r1.ebuild delete mode 100644 sys-cluster/legion/legion-16.10.0.ebuild create mode 100644 sys-cluster/legion/legion-17.02.0-r1.ebuild delete mode 100644 sys-cluster/legion/legion-17.02.0.ebuild create mode 100644 sys-cluster/legion/legion-17.05.0-r1.ebuild delete mode 100644 sys-cluster/legion/legion-17.05.0.ebuild create mode 100644 sys-cluster/legion/legion-17.08.0-r1.ebuild delete mode 100644 sys-cluster/legion/legion-17.08.0.ebuild create mode 100644 sys-cluster/legion/legion-17.10.0-r1.ebuild delete mode 100644 sys-cluster/legion/legion-17.10.0.ebuild create mode 100644 sys-cluster/legion/legion-18.02.0-r1.ebuild delete mode 100644 sys-cluster/legion/legion-18.02.0.ebuild create mode 100644 sys-cluster/legion/legion-18.05.0-r1.ebuild delete mode 100644 sys-cluster/legion/legion-18.05.0.ebuild create mode 100644 sys-cluster/legion/legion-18.12.0-r1.ebuild delete mode 100644 sys-cluster/legion/legion-18.12.0.ebuild create mode 100644 sys-cluster/legion/legion-19.06.0-r1.ebuild delete mode 100644 sys-cluster/legion/legion-19.06.0.ebuild (limited to 'sys-cluster/legion') diff --git a/sys-cluster/legion/legion-16.08.0-r1.ebuild b/sys-cluster/legion/legion-16.08.0-r1.ebuild deleted file mode 100644 index c785d40df28f..000000000000 --- a/sys-cluster/legion/legion-16.08.0-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="A data-centric parallel programming system" -HOMEPAGE="https://legion.stanford.edu/" -SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64" -IUSE="gasnet +hwloc" - -DEPEND=" - gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) - hwloc? ( sys-apps/hwloc ) - " - -S="${WORKDIR}/${PN}-${P}" - -#https://github.com/StanfordLegion/legion/pull/166 -#https://github.com/StanfordLegion/legion/pull/167 -PATCHES=( "${FILESDIR}/${P}-hwloc.patch" "${FILESDIR}/${P}-multilib.patch" ) - -src_configure() { - mycmakeargs=( - -DLegion_USE_HWLOC=$(usex hwloc) - -DLegion_USE_GASNet=$(usex gasnet) - -DBUILD_SHARED_LIBS=ON - -DLIB=$(get_libdir) - ) - cmake-utils_src_configure -} diff --git a/sys-cluster/legion/legion-16.08.0-r2.ebuild b/sys-cluster/legion/legion-16.08.0-r2.ebuild new file mode 100644 index 000000000000..7295a5f41e45 --- /dev/null +++ b/sys-cluster/legion/legion-16.08.0-r2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="A data-centric parallel programming system" +HOMEPAGE="https://legion.stanford.edu/" +SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="gasnet +hwloc" + +DEPEND=" + gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) + hwloc? ( sys-apps/hwloc:= ) + " +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}-${P}" + +#https://github.com/StanfordLegion/legion/pull/166 +#https://github.com/StanfordLegion/legion/pull/167 +PATCHES=( "${FILESDIR}/${P}-hwloc.patch" "${FILESDIR}/${P}-multilib.patch" ) + +src_configure() { + mycmakeargs=( + -DLegion_USE_HWLOC=$(usex hwloc) + -DLegion_USE_GASNet=$(usex gasnet) + -DBUILD_SHARED_LIBS=ON + -DLIB=$(get_libdir) + ) + cmake-utils_src_configure +} diff --git a/sys-cluster/legion/legion-16.10.0-r1.ebuild b/sys-cluster/legion/legion-16.10.0-r1.ebuild new file mode 100644 index 000000000000..50372479f2c9 --- /dev/null +++ b/sys-cluster/legion/legion-16.10.0-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="A data-centric parallel programming system" +HOMEPAGE="https://legion.stanford.edu/" +SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="gasnet +hwloc" + +DEPEND=" + gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) + hwloc? ( sys-apps/hwloc:= ) + " +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}-${P}" + +src_configure() { + mycmakeargs=( + -DLegion_USE_HWLOC=$(usex hwloc) + -DLegion_USE_GASNet=$(usex gasnet) + -DBUILD_SHARED_LIBS=ON + -DLegion_BUILD_EXAMPLES=ON + ) + cmake-utils_src_configure +} diff --git a/sys-cluster/legion/legion-16.10.0.ebuild b/sys-cluster/legion/legion-16.10.0.ebuild deleted file mode 100644 index 6ed64ffe46d3..000000000000 --- a/sys-cluster/legion/legion-16.10.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="A data-centric parallel programming system" -HOMEPAGE="https://legion.stanford.edu/" -SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64" -IUSE="gasnet +hwloc" - -DEPEND=" - gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) - hwloc? ( sys-apps/hwloc ) - " - -S="${WORKDIR}/${PN}-${P}" - -src_configure() { - mycmakeargs=( - -DLegion_USE_HWLOC=$(usex hwloc) - -DLegion_USE_GASNet=$(usex gasnet) - -DBUILD_SHARED_LIBS=ON - -DLegion_BUILD_EXAMPLES=ON - ) - cmake-utils_src_configure -} diff --git a/sys-cluster/legion/legion-17.02.0-r1.ebuild b/sys-cluster/legion/legion-17.02.0-r1.ebuild new file mode 100644 index 000000000000..4ab8ed801e4e --- /dev/null +++ b/sys-cluster/legion/legion-17.02.0-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="A data-centric parallel programming system" +HOMEPAGE="https://legion.stanford.edu/" +SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="gasnet +hwloc" + +DEPEND=" + gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) + hwloc? ( sys-apps/hwloc:= ) + " +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}-${P}" + +src_configure() { + mycmakeargs=( + -DLegion_USE_HWLOC=$(usex hwloc) + -DLegion_USE_GASNet=$(usex gasnet) + -DBUILD_SHARED_LIBS=ON + -DLegion_BUILD_EXAMPLES=ON + -DLegion_BUILD_TESTS=ON + -DLegion_BUILD_TUTORIAL=ON + ) + cmake-utils_src_configure +} diff --git a/sys-cluster/legion/legion-17.02.0.ebuild b/sys-cluster/legion/legion-17.02.0.ebuild deleted file mode 100644 index 415747a8aa60..000000000000 --- a/sys-cluster/legion/legion-17.02.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="A data-centric parallel programming system" -HOMEPAGE="https://legion.stanford.edu/" -SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64" -IUSE="gasnet +hwloc" - -DEPEND=" - gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) - hwloc? ( sys-apps/hwloc ) - " - -S="${WORKDIR}/${PN}-${P}" - -src_configure() { - mycmakeargs=( - -DLegion_USE_HWLOC=$(usex hwloc) - -DLegion_USE_GASNet=$(usex gasnet) - -DBUILD_SHARED_LIBS=ON - -DLegion_BUILD_EXAMPLES=ON - -DLegion_BUILD_TESTS=ON - -DLegion_BUILD_TUTORIAL=ON - ) - cmake-utils_src_configure -} diff --git a/sys-cluster/legion/legion-17.05.0-r1.ebuild b/sys-cluster/legion/legion-17.05.0-r1.ebuild new file mode 100644 index 000000000000..0746074ce71d --- /dev/null +++ b/sys-cluster/legion/legion-17.05.0-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="A data-centric parallel programming system" +HOMEPAGE="https://legion.stanford.edu/" +if [[ ${PV} = 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git" +else + SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}-${P}" +fi + +LICENSE="BSD" +SLOT="0" +IUSE="gasnet +hwloc" + +DEPEND=" + gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) + hwloc? ( sys-apps/hwloc:= ) + " +RDEPEND="${DEPEND}" + +src_configure() { + mycmakeargs=( + -DLegion_USE_HWLOC=$(usex hwloc) + -DLegion_USE_GASNet=$(usex gasnet) + -DBUILD_SHARED_LIBS=ON + -DLegion_BUILD_EXAMPLES=ON + -DLegion_BUILD_TESTS=ON + -DLegion_BUILD_TUTORIAL=ON + ) + cmake-utils_src_configure +} diff --git a/sys-cluster/legion/legion-17.05.0.ebuild b/sys-cluster/legion/legion-17.05.0.ebuild deleted file mode 100644 index d54f220af2c9..000000000000 --- a/sys-cluster/legion/legion-17.05.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="A data-centric parallel programming system" -HOMEPAGE="https://legion.stanford.edu/" -if [[ ${PV} = 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git" -else - SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" - KEYWORDS="~amd64" - S="${WORKDIR}/${PN}-${P}" -fi - -LICENSE="BSD" -SLOT="0" -IUSE="gasnet +hwloc" - -DEPEND=" - gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) - hwloc? ( sys-apps/hwloc ) - " - -src_configure() { - mycmakeargs=( - -DLegion_USE_HWLOC=$(usex hwloc) - -DLegion_USE_GASNet=$(usex gasnet) - -DBUILD_SHARED_LIBS=ON - -DLegion_BUILD_EXAMPLES=ON - -DLegion_BUILD_TESTS=ON - -DLegion_BUILD_TUTORIAL=ON - ) - cmake-utils_src_configure -} diff --git a/sys-cluster/legion/legion-17.08.0-r1.ebuild b/sys-cluster/legion/legion-17.08.0-r1.ebuild new file mode 100644 index 000000000000..c883f98f82d2 --- /dev/null +++ b/sys-cluster/legion/legion-17.08.0-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="A data-centric parallel programming system" +HOMEPAGE="https://legion.stanford.edu/" +if [[ ${PV} = 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git" +else + SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}-${P}" +fi + +LICENSE="BSD" +SLOT="0" +IUSE="gasnet +hwloc test" +RESTRICT="!test? ( test )" + +DEPEND=" + gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) + hwloc? ( sys-apps/hwloc:= ) + " +RDEPEND="${DEPEND}" + +src_configure() { + mycmakeargs=( + -DLegion_USE_HWLOC=$(usex hwloc) + -DLegion_USE_GASNet=$(usex gasnet) + -DLegion_ENABLE_TESTING=$(usex test) + -DBUILD_SHARED_LIBS=ON + -DLegion_BUILD_EXAMPLES=ON + -DLegion_BUILD_TESTS=ON + -DLegion_BUILD_TUTORIAL=ON + ) + cmake-utils_src_configure +} diff --git a/sys-cluster/legion/legion-17.08.0.ebuild b/sys-cluster/legion/legion-17.08.0.ebuild deleted file mode 100644 index b2a4fc2de9c9..000000000000 --- a/sys-cluster/legion/legion-17.08.0.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="A data-centric parallel programming system" -HOMEPAGE="https://legion.stanford.edu/" -if [[ ${PV} = 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git" -else - SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" - KEYWORDS="~amd64" - S="${WORKDIR}/${PN}-${P}" -fi - -LICENSE="BSD" -SLOT="0" -IUSE="gasnet +hwloc test" -RESTRICT="!test? ( test )" - -DEPEND=" - gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) - hwloc? ( sys-apps/hwloc ) - " - -src_configure() { - mycmakeargs=( - -DLegion_USE_HWLOC=$(usex hwloc) - -DLegion_USE_GASNet=$(usex gasnet) - -DLegion_ENABLE_TESTING=$(usex test) - -DBUILD_SHARED_LIBS=ON - -DLegion_BUILD_EXAMPLES=ON - -DLegion_BUILD_TESTS=ON - -DLegion_BUILD_TUTORIAL=ON - ) - cmake-utils_src_configure -} diff --git a/sys-cluster/legion/legion-17.10.0-r1.ebuild b/sys-cluster/legion/legion-17.10.0-r1.ebuild new file mode 100644 index 000000000000..c883f98f82d2 --- /dev/null +++ b/sys-cluster/legion/legion-17.10.0-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="A data-centric parallel programming system" +HOMEPAGE="https://legion.stanford.edu/" +if [[ ${PV} = 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git" +else + SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}-${P}" +fi + +LICENSE="BSD" +SLOT="0" +IUSE="gasnet +hwloc test" +RESTRICT="!test? ( test )" + +DEPEND=" + gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) + hwloc? ( sys-apps/hwloc:= ) + " +RDEPEND="${DEPEND}" + +src_configure() { + mycmakeargs=( + -DLegion_USE_HWLOC=$(usex hwloc) + -DLegion_USE_GASNet=$(usex gasnet) + -DLegion_ENABLE_TESTING=$(usex test) + -DBUILD_SHARED_LIBS=ON + -DLegion_BUILD_EXAMPLES=ON + -DLegion_BUILD_TESTS=ON + -DLegion_BUILD_TUTORIAL=ON + ) + cmake-utils_src_configure +} diff --git a/sys-cluster/legion/legion-17.10.0.ebuild b/sys-cluster/legion/legion-17.10.0.ebuild deleted file mode 100644 index b2a4fc2de9c9..000000000000 --- a/sys-cluster/legion/legion-17.10.0.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="A data-centric parallel programming system" -HOMEPAGE="https://legion.stanford.edu/" -if [[ ${PV} = 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git" -else - SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" - KEYWORDS="~amd64" - S="${WORKDIR}/${PN}-${P}" -fi - -LICENSE="BSD" -SLOT="0" -IUSE="gasnet +hwloc test" -RESTRICT="!test? ( test )" - -DEPEND=" - gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) - hwloc? ( sys-apps/hwloc ) - " - -src_configure() { - mycmakeargs=( - -DLegion_USE_HWLOC=$(usex hwloc) - -DLegion_USE_GASNet=$(usex gasnet) - -DLegion_ENABLE_TESTING=$(usex test) - -DBUILD_SHARED_LIBS=ON - -DLegion_BUILD_EXAMPLES=ON - -DLegion_BUILD_TESTS=ON - -DLegion_BUILD_TUTORIAL=ON - ) - cmake-utils_src_configure -} diff --git a/sys-cluster/legion/legion-18.02.0-r1.ebuild b/sys-cluster/legion/legion-18.02.0-r1.ebuild new file mode 100644 index 000000000000..c883f98f82d2 --- /dev/null +++ b/sys-cluster/legion/legion-18.02.0-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="A data-centric parallel programming system" +HOMEPAGE="https://legion.stanford.edu/" +if [[ ${PV} = 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git" +else + SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}-${P}" +fi + +LICENSE="BSD" +SLOT="0" +IUSE="gasnet +hwloc test" +RESTRICT="!test? ( test )" + +DEPEND=" + gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) + hwloc? ( sys-apps/hwloc:= ) + " +RDEPEND="${DEPEND}" + +src_configure() { + mycmakeargs=( + -DLegion_USE_HWLOC=$(usex hwloc) + -DLegion_USE_GASNet=$(usex gasnet) + -DLegion_ENABLE_TESTING=$(usex test) + -DBUILD_SHARED_LIBS=ON + -DLegion_BUILD_EXAMPLES=ON + -DLegion_BUILD_TESTS=ON + -DLegion_BUILD_TUTORIAL=ON + ) + cmake-utils_src_configure +} diff --git a/sys-cluster/legion/legion-18.02.0.ebuild b/sys-cluster/legion/legion-18.02.0.ebuild deleted file mode 100644 index b2a4fc2de9c9..000000000000 --- a/sys-cluster/legion/legion-18.02.0.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="A data-centric parallel programming system" -HOMEPAGE="https://legion.stanford.edu/" -if [[ ${PV} = 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git" -else - SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" - KEYWORDS="~amd64" - S="${WORKDIR}/${PN}-${P}" -fi - -LICENSE="BSD" -SLOT="0" -IUSE="gasnet +hwloc test" -RESTRICT="!test? ( test )" - -DEPEND=" - gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) - hwloc? ( sys-apps/hwloc ) - " - -src_configure() { - mycmakeargs=( - -DLegion_USE_HWLOC=$(usex hwloc) - -DLegion_USE_GASNet=$(usex gasnet) - -DLegion_ENABLE_TESTING=$(usex test) - -DBUILD_SHARED_LIBS=ON - -DLegion_BUILD_EXAMPLES=ON - -DLegion_BUILD_TESTS=ON - -DLegion_BUILD_TUTORIAL=ON - ) - cmake-utils_src_configure -} diff --git a/sys-cluster/legion/legion-18.05.0-r1.ebuild b/sys-cluster/legion/legion-18.05.0-r1.ebuild new file mode 100644 index 000000000000..bc5ad7cee85d --- /dev/null +++ b/sys-cluster/legion/legion-18.05.0-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="A data-centric parallel programming system" +HOMEPAGE="https://legion.stanford.edu/" +if [[ ${PV} = 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git" +else + SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}-${P}" +fi + +LICENSE="BSD" +SLOT="0" +IUSE="gasnet +hwloc test" +RESTRICT="!test? ( test )" + +DEPEND=" + gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) + hwloc? (