diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-01-19 09:20:19 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-01-19 09:23:27 +0100 |
commit | 154bf364dc768499ba19f2cd22f90b32643fa5d9 (patch) | |
tree | 80c6518dc2ab82a5dc17d12baf9063205d52e93d /sci-libs | |
parent | x11-misc/synergy: Remove old (diff) | |
download | gentoo-154bf364dc768499ba19f2cd22f90b32643fa5d9.tar.gz gentoo-154bf364dc768499ba19f2cd22f90b32643fa5d9.tar.bz2 gentoo-154bf364dc768499ba19f2cd22f90b32643fa5d9.zip |
sci-libs/xkaapi: Remove last-rited pkg
Closes: https://bugs.gentoo.org/717692
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/xkaapi/Manifest | 2 | ||||
-rw-r--r-- | sci-libs/xkaapi/files/xkaapi-2.1-ffi.patch | 24 | ||||
-rw-r--r-- | sci-libs/xkaapi/files/xkaapi-2.1-flags.patch | 39 | ||||
-rw-r--r-- | sci-libs/xkaapi/files/xkaapi-3.0.3-flags.patch | 31 | ||||
-rw-r--r-- | sci-libs/xkaapi/metadata.xml | 12 | ||||
-rw-r--r-- | sci-libs/xkaapi/xkaapi-2.2.ebuild | 57 | ||||
-rw-r--r-- | sci-libs/xkaapi/xkaapi-3.0.3.ebuild | 51 |
7 files changed, 0 insertions, 216 deletions
diff --git a/sci-libs/xkaapi/Manifest b/sci-libs/xkaapi/Manifest deleted file mode 100644 index 1cc539d30a82..000000000000 --- a/sci-libs/xkaapi/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST xkaapi-2.2.tar.gz 2858464 BLAKE2B 909ea71e3fe86ee6614724793a5a41edd03151025b50e1e99dcf262be9022dfdc8cfef636de4814db1fec99e97015b73f4e5ed8f45ad377e4a3a4ab46b54ee93 SHA512 1be98c4e3c50cf198ec3522c7ccbe7757464889b32fb39e53447548fc2975e727fb2b68b25ae99c367b155588b1ab2181e3280d099ceb991929aa2f0e9c83f0c -DIST xkaapi-3.0.3.tar.gz 1535482 BLAKE2B 6f10395b66d334e235df8dec7cfa4fa128aceeac10846e78c02cc96867fb2c649a0dc88f6a64d9c5afbfb97a02221f4e6971f313bb6ca52d217aae39caa26327 SHA512 28fb02a73269e55eec90b5c2c82e4ade3bfb24d55a1f61ac6bf47da4c7e2d864cfa1389772baca9ebef4f24b3373fb6971f3fe98a4d232187e9d29a88110eda1 diff --git a/sci-libs/xkaapi/files/xkaapi-2.1-ffi.patch b/sci-libs/xkaapi/files/xkaapi-2.1-ffi.patch deleted file mode 100644 index 485b6c21a969..000000000000 --- a/sci-libs/xkaapi/files/xkaapi-2.1-ffi.patch +++ /dev/null @@ -1,24 +0,0 @@ - configure.ac | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 2be95ec..13e876b 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -1034,12 +1034,12 @@ dnl ----------------------------------------------------------------------- - - dnl we need to always configure imported-soft/libffi in order to be able - dnl to run "make dist" --#if test x"$use_ffi" = xinternal; then -+if test x"$use_ffi" = xinternal; then - mkdir -p "imported-soft/libffi" - AC_CONFIG_SUBDIRS([imported-soft/libffi]) --#else --# AC_MSG_NOTICE([Not compiling embedded copy of libffi]) --#fi -+else -+ AC_MSG_NOTICE([Not compiling embedded copy of libffi]) -+fi - - dnl ----------------------------------------------------------------------- - dnl Dependencies between libs diff --git a/sci-libs/xkaapi/files/xkaapi-2.1-flags.patch b/sci-libs/xkaapi/files/xkaapi-2.1-flags.patch deleted file mode 100644 index a22cabf9e4dd..000000000000 --- a/sci-libs/xkaapi/files/xkaapi-2.1-flags.patch +++ /dev/null @@ -1,39 +0,0 @@ - configure.ac | 11 ++++++++++- - 1 file changed, 10 insertions(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index c3364aa..2a734fe 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -82,6 +82,9 @@ AC_PROG_F77 - dnl ---------------------------------------------------------------- - dnl Disable default flag for compilation - dnl ---------------------------------------------------------------- -+CPPFLAGS_gentoo="${CPPFLAGS}" -+CFLAGS_gentoo="${CFLAGS}" -+CXXFLAGS_gentoo="${CXXFLAGS}" - CPPFLAGS="" - CFLAGS="" - CXXFLAGS="" -@@ -407,7 +410,7 @@ AC_ARG_ENABLE([mode],[AS_HELP_STRING([--enable-mode], - [choose special compilation mode (debug, release)])],[], - [enable_mode=default] - ) --clean_default_flags -+clean_default_flags=no - AS_CASE([$enable_mode], - [default], [dnl - AM_CPPFLAGS="$AM_CPPFLAGS" -@@ -428,6 +431,12 @@ AS_CASE([$enable_mode], - AM_CFLAGS="$AM_CFLAGS -O3 -DNDEBUG" - AM_CXXFLAGS="$AM_CXXFLAGS -O3 -DNDEBUG" - clean_default_flags=yes -+ ], [gentoo], [dnl -+ AC_MSG_NOTICE([Using gentoo compile mode]) -+ AM_CPPFLAGS="$AM_CPPFLAGS ${CPPFLAGS_gentoo}" -+ AM_CFLAGS="$AM_CFLAGS -DNDEBUG ${CFLAGS_gentoo}" -+ AM_CXXFLAGS="$AM_CXXFLAGS -DNDEBUG ${CXXFLAGS_gentoo}" -+ clean_default_flags=yes - ], [dnl - AC_MSG_ERROR([Unknown compilation mode '$enable_mode'. Aborting.]) - ]) diff --git a/sci-libs/xkaapi/files/xkaapi-3.0.3-flags.patch b/sci-libs/xkaapi/files/xkaapi-3.0.3-flags.patch deleted file mode 100644 index 0fdad94cb9b9..000000000000 --- a/sci-libs/xkaapi/files/xkaapi-3.0.3-flags.patch +++ /dev/null @@ -1,31 +0,0 @@ - configure.ac | 11 ++++++++++- - 1 file changed, 10 insertions(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index c3364aa..2a734fe 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -82,6 +82,9 @@ AC_PROG_F77 - dnl ---------------------------------------------------------------- - dnl Disable default flag for compilation - dnl ---------------------------------------------------------------- -+CPPFLAGS_gentoo="${CPPFLAGS}" -+CFLAGS_gentoo="${CFLAGS}" -+CXXFLAGS_gentoo="${CXXFLAGS}" - CPPFLAGS="" - CFLAGS="" - CXXFLAGS="" -@@ -428,6 +431,13 @@ AS_CASE([$enable_mode], - AM_CXXFLAGS="$AM_CXXFLAGS -O3 -DNDEBUG" - clean_default_flags=yes - AM_CONDITIONAL([KAAPI_USE_DEBUG], [test "$enable_mode" = truc ]) -+ ], [gentoo], [dnl -+ AC_MSG_NOTICE([Using gentoo compile mode]) -+ AM_CPPFLAGS="$AM_CPPFLAGS ${CPPFLAGS_gentoo}" -+ AM_CFLAGS="$AM_CFLAGS -DNDEBUG ${CFLAGS_gentoo}" -+ AM_CXXFLAGS="$AM_CXXFLAGS -DNDEBUG ${CXXFLAGS_gentoo}" -+ clean_default_flags=yes -+ AM_CONDITIONAL([KAAPI_USE_DEBUG], [test "$enable_mode" = gentoo ]) - ], [dnl - AC_MSG_ERROR([Unknown compilation mode '$enable_mode'. Aborting.]) - ]) diff --git a/sci-libs/xkaapi/metadata.xml b/sci-libs/xkaapi/metadata.xml deleted file mode 100644 index 80199bef1f06..000000000000 --- a/sci-libs/xkaapi/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>sci@gentoo.org</email> - <name>Gentoo Science Project</name> - </maintainer> - <use> - <flag name="blas">Kaapi BLAS tasks for PLASMA</flag> - <flag name="gpu">Build library for gpu threading</flag> - </use> -</pkgmetadata> diff --git a/sci-libs/xkaapi/xkaapi-2.2.ebuild b/sci-libs/xkaapi/xkaapi-2.2.ebuild deleted file mode 100644 index 951d383e8c02..000000000000 --- a/sci-libs/xkaapi/xkaapi-2.2.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -FORTRAN_NEEDED=fortran -AUTOTOOLS_AUTORECONF=true - -inherit autotools-utils fortran-2 - -UPSTREAM_NO=33666 - -DESCRIPTION="Kernel for Adaptative, Asynchronous Parallel and Interactive programming" -HOMEPAGE="http://kaapi.gforge.inria.fr" -SRC_URI="https://gforge.inria.fr/frs/download.php/${UPSTREAM_NO}/${P}.tar.gz" - -SLOT="0" -LICENSE="CeCILL-2" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="blas cxx fortran gpu openmp static-libs" - -RDEPEND=" - sys-apps/hwloc - dev-libs/libffi -" -DEPEND="${RDEPEND} -" - -PATCHES=( - "${FILESDIR}"/${PN}-2.1-flags.patch - "${FILESDIR}"/${PN}-2.1-ffi.patch - ) - -src_prepare() { - sed \ - -e 's:-Werror::g' \ - -i tests/testsuite* tests/*/*.am || die - autotools-utils_src_prepare -} - -src_configure() { - local myeconfargs=( - --enable-mode=gentoo - --enable-api-kaapic - --enable-api-quark - --with-ccache=no - --enable-hwloc - --with-libffi="${EPREFIX}"/usr - --enable-target$(usex gpu gpu mt) - $(use_enable fortran api-kaapif) - $(use_enable cxx api-kaapixx) - $(use_enable blas kblas) - $(use_enable openmp libkomp) -# $(use_with plasma "${EPREFIX}"/usr) - ) - autotools-utils_src_configure -} diff --git a/sci-libs/xkaapi/xkaapi-3.0.3.ebuild b/sci-libs/xkaapi/xkaapi-3.0.3.ebuild deleted file mode 100644 index a7c8c25b27ac..000000000000 --- a/sci-libs/xkaapi/xkaapi-3.0.3.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -FORTRAN_NEEDED=fortran -AUTOTOOLS_AUTORECONF=true - -inherit autotools-utils fortran-2 - -UPSTREAM_NO=34360 - -DESCRIPTION="Kernel for Adaptative, Asynchronous Parallel and Interactive programming" -HOMEPAGE="http://kaapi.gforge.inria.fr" -SRC_URI="https://gforge.inria.fr/frs/download.php/${UPSTREAM_NO}/${P}.tar.gz" - -SLOT="0" -LICENSE="CeCILL-2" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="cxx fortran openmp static-libs" - -RDEPEND=" - sys-apps/hwloc - dev-libs/libffi -" -DEPEND="${RDEPEND} -" - -PATCHES=( - "${FILESDIR}"/${P}-flags.patch - ) - -src_prepare() { - sed \ - -e 's:-Werror::g' \ - -i tests/testsuite* tests/*/*.am || die - autotools-utils_src_prepare -} - -src_configure() { - local myeconfargs=( - --enable-mode=gentoo - --enable-api-quark - --with-ccache=no - $(use_enable fortran api-kaapif) - $(use_enable cxx api-kaapixx) - $(use_enable openmp libkomp) -# $(use_with plasma "${EPREFIX}"/usr) - ) - autotools-utils_src_configure -} |