commit: 9b498d0b2141ab6a8eb7436be15d993213e34996
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed May 15 17:03:26 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed May 15 17:04:56 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b498d0b
sci-libs/libgeodecomp: Drop 0.3.1
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-libs/libgeodecomp/Manifest | 1 -
sci-libs/libgeodecomp/files/libflatarray.patch | 11 ------
sci-libs/libgeodecomp/libgeodecomp-0.3.1.ebuild | 49 -------------------------
3 files changed, 61 deletions(-)
diff --git a/sci-libs/libgeodecomp/Manifest b/sci-libs/libgeodecomp/Manifest
index 2a8bfc9f286..ef2ab8796da 100644
--- a/sci-libs/libgeodecomp/Manifest
+++ b/sci-libs/libgeodecomp/Manifest
@@ -1,2 +1 @@
-DIST libgeodecomp-0.3.1.tar.bz2 740341 BLAKE2B
f08f4a7e1b8666d20e40a21d494dbd1cf54b38bae90f451a1b239038e313ae692d39e81d2182cd018d85a4dfc298394c74da2d36218d379e226807feb9ff2cc3
SHA512
28f0ea04e45cb0a5b81b18efd3e3a011d58c077562f8039ff42e701cc362f86dff90bd505690ec22c8a42e9de1236d5b6c61d288ad4c154289e92700a2a7fcc0
DIST libgeodecomp-0.4.0.tar.bz2 766090 BLAKE2B
2abc5d10371fbad92f957118cabd656f0b4938d5e102da6446851bd979debddaf5eba8a6321dffd32356a40ca12659d9a7a691929e71989e48a71e5177fedc51
SHA512
3ff1a45844e5879662012cb4bae5d577f30ee71094ed4063b535b0ac3da900f34a1bc25be524c006ff91e0edd665e46cbb6cfc0db7966eebfea30f9fee6eeddb
diff --git a/sci-libs/libgeodecomp/files/libflatarray.patch
b/sci-libs/libgeodecomp/files/libflatarray.patch
deleted file mode 100644
index 8a109d98657..00000000000
--- a/sci-libs/libgeodecomp/files/libflatarray.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/CMakeLists.txt.orig 2015-05-06 07:03:21.508147301 +0200
-+++ src/CMakeLists.txt 2015-05-06 07:03:27.038147363 +0200
-@@ -439,7 +439,7 @@
- install(FILES ${HEADERS} DESTINATION include/${PACKAGE_NAME}/${dir})
- endforeach(dir)
- # install libflatarray, too
--install(FILES ../lib/libflatarray/src/flat_array.hpp DESTINATION
include/libflatarray)
-+#install(FILES ../lib/libflatarray/src/flat_array.hpp DESTINATION
include/libflatarray)
-
- # link against the libs we need
- set(INSTALLER_LINK_FLAGS "-L\${libdir} -lgeodecomp ")
diff --git a/sci-libs/libgeodecomp/libgeodecomp-0.3.1.ebuild
b/sci-libs/libgeodecomp/libgeodecomp-0.3.1.ebuild
deleted file mode 100644
index 739df1ee915..00000000000
--- a/sci-libs/libgeodecomp/libgeodecomp-0.3.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils
-
-DESCRIPTION="An auto-parallelizing library to speed up computer simulations"
-HOMEPAGE="http://www.libgeodecomp.org"
-SRC_URI="http://www.libgeodecomp.org/archive/${P}.tar.bz2"
-
-SLOT="0"
-LICENSE="Boost-1.0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc examples"
-
-RDEPEND=">=dev-libs/boost-1.48"
-DEPEND="${RDEPEND}
- dev-libs/libflatarray
- examples? ( !sys-cluster/mpich2 )"
-
-S="${WORKDIR}/${P}/src"
-PATCHES=( "${FILESDIR}/libflatarray.patch" )
-
-src_prepare() {
- cmake-utils_src_prepare
-
- sed -i
's/libdir=${CMAKE_INSTALL_PREFIX}\/lib/libdir=\/usr\/'$(get_libdir)'/'
"${S}/CMakeLists.txt"
- sed -i 's/install(TARGETS geodecomp DESTINATION lib)/install(TARGETS
geodecomp DESTINATION '$(get_libdir)')/' "${S}/CMakeLists.txt"
-
- if ! use examples ; then
- sed -i 's/examples//g' CMakeLists.txt
- fi
-}
-
-src_compile() {
- cmake-utils_src_compile
- use doc && cmake-utils_src_make doc
-}
-
-src_install() {
- DOCS=( ../README )
- use doc && HTML_DOCS=( ../doc/html/* )
- cmake-utils_src_install
-}
-
-src_test() {
- cmake-utils_src_make test
-}