diff options
author | Aisha Tammy <gentoo@aisha.cc> | 2020-10-10 00:37:58 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-10-10 04:52:13 +0000 |
commit | 1017ea43cf122de0fd78039583b5a197efa40d46 (patch) | |
tree | 8b3904fd699e1c50eb469c16055de437cd227e83 /dev-libs/cloog | |
parent | dev-libs/cloog: version bump to 0.20.0 (diff) | |
download | gentoo-1017ea43cf122de0fd78039583b5a197efa40d46.tar.gz gentoo-1017ea43cf122de0fd78039583b5a197efa40d46.tar.bz2 gentoo-1017ea43cf122de0fd78039583b5a197efa40d46.zip |
dev-libs/cloog: drop old broken version
Closes: https://bugs.gentoo.org/595132
Closes: https://bugs.gentoo.org/650304
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/17867
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/cloog')
-rw-r--r-- | dev-libs/cloog/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/cloog/cloog-0.18.4.ebuild | 61 |
2 files changed, 0 insertions, 62 deletions
diff --git a/dev-libs/cloog/Manifest b/dev-libs/cloog/Manifest index efb9d9bb7993..aef107388032 100644 --- a/dev-libs/cloog/Manifest +++ b/dev-libs/cloog/Manifest @@ -1,2 +1 @@ -DIST cloog-0.18.4.tar.gz 4796456 BLAKE2B 9d1f281abe48d40f726c3fc66c58c0d7cb90f6d3ca47af02c8f00b5cc69c6de6b0362b2dc406a8cb6310e07c6b2991f6de3b6b407ad7db0190b9bc69ac82773f SHA512 d35d67b08ffe13c1a010b65bfe4dd02b0ae013d5b489e330dc950bd3514defca8f734bd37781856dcedf0491ff6122c34eecb4b0fe32a22d7e6bdadea98c8c23 DIST cloog-0.20.0.tar.gz 512106 BLAKE2B ac5ce6b7bb6ad586fc614c02b7c2e7c17322e49a775e21b50fb9862e487b4278a2b1024a7269830b55be1ae3c4b4c70f3d411d6c86052483bda124bc9bc07b20 SHA512 2663bbce49c42436681750968823dbee9b3cfbe4c086f5b340d11e51d8c8f138d1a2ccfd1691ae4395b94c082ccc49c0d7e5a1475b29192d13ab3c0148a8c347 diff --git a/dev-libs/cloog/cloog-0.18.4.ebuild b/dev-libs/cloog/cloog-0.18.4.ebuild deleted file mode 100644 index cc37d6f8a906..000000000000 --- a/dev-libs/cloog/cloog-0.18.4.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit eutils ltprune multilib-minimal - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="git://repo.or.cz/cloog.git" - inherit autotools git-r3 -else - KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86" - SRC_URI="http://www.bastoul.net/cloog/pages/download/${P}.tar.gz" -fi - -DESCRIPTION="A loop generator for scanning polyhedra" -HOMEPAGE="http://www.bastoul.net/cloog/" - -LICENSE="LGPL-2.1" -SLOT="0/4" -IUSE="static-libs" - -RDEPEND=">=dev-libs/gmp-6.0.0[${MULTILIB_USEDEP}] - >=dev-libs/isl-0.15:0=[${MULTILIB_USEDEP}]" -DEPEND="${DEPEND} - virtual/pkgconfig" - -DOCS=( README ) - -src_prepare() { - if [[ ${PV} == "9999" ]] ; then - ./get_submodules.sh - eautoreconf -i - else - # m4/ax_create_pkgconfig_info.m4 includes LDFLAGS - # sed to avoid eautoreconf - sed -i -e '/Libs:/s:@LDFLAGS@ ::' configure || die - fi - - # Make sure we always use the system isl. - rm -rf isl -} - -multilib_src_configure() { - ECONF_SOURCE="${S}" econf \ - --with-gmp=system \ - --with-isl=system \ - --with-osl=no \ - $(use_enable static-libs static) -} - -# The default src_test() fails, so we'll just run these directly -multilib_src_test() { - echo ">>> Test phase [check]: ${CATEGORY}/${PF}" - emake -j1 check -} - -multilib_src_install_all() { - einstalldocs - prune_libtool_files -} |