Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cloog/
Date: Sat, 10 Oct 2020 04:58:12
Message-Id: 1602305533.1017ea43cf122de0fd78039583b5a197efa40d46.sam@gentoo
1 commit: 1017ea43cf122de0fd78039583b5a197efa40d46
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Sat Oct 10 00:37:58 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 10 04:52:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1017ea43
7
8 dev-libs/cloog: drop old broken version
9
10 Closes: https://bugs.gentoo.org/595132
11 Closes: https://bugs.gentoo.org/650304
12 Package-Manager: Portage-3.0.8, Repoman-3.0.1
13 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
14 Closes: https://github.com/gentoo/gentoo/pull/17867
15 Signed-off-by: Sam James <sam <AT> gentoo.org>
16
17 dev-libs/cloog/Manifest | 1 -
18 dev-libs/cloog/cloog-0.18.4.ebuild | 61 --------------------------------------
19 2 files changed, 62 deletions(-)
20
21 diff --git a/dev-libs/cloog/Manifest b/dev-libs/cloog/Manifest
22 index efb9d9bb799..aef10738803 100644
23 --- a/dev-libs/cloog/Manifest
24 +++ b/dev-libs/cloog/Manifest
25 @@ -1,2 +1 @@
26 -DIST cloog-0.18.4.tar.gz 4796456 BLAKE2B 9d1f281abe48d40f726c3fc66c58c0d7cb90f6d3ca47af02c8f00b5cc69c6de6b0362b2dc406a8cb6310e07c6b2991f6de3b6b407ad7db0190b9bc69ac82773f SHA512 d35d67b08ffe13c1a010b65bfe4dd02b0ae013d5b489e330dc950bd3514defca8f734bd37781856dcedf0491ff6122c34eecb4b0fe32a22d7e6bdadea98c8c23
27 DIST cloog-0.20.0.tar.gz 512106 BLAKE2B ac5ce6b7bb6ad586fc614c02b7c2e7c17322e49a775e21b50fb9862e487b4278a2b1024a7269830b55be1ae3c4b4c70f3d411d6c86052483bda124bc9bc07b20 SHA512 2663bbce49c42436681750968823dbee9b3cfbe4c086f5b340d11e51d8c8f138d1a2ccfd1691ae4395b94c082ccc49c0d7e5a1475b29192d13ab3c0148a8c347
28
29 diff --git a/dev-libs/cloog/cloog-0.18.4.ebuild b/dev-libs/cloog/cloog-0.18.4.ebuild
30 deleted file mode 100644
31 index cc37d6f8a90..00000000000
32 --- a/dev-libs/cloog/cloog-0.18.4.ebuild
33 +++ /dev/null
34 @@ -1,61 +0,0 @@
35 -# Copyright 1999-2020 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI="5"
39 -
40 -inherit eutils ltprune multilib-minimal
41 -
42 -if [[ ${PV} == *9999 ]] ; then
43 - EGIT_REPO_URI="git://repo.or.cz/cloog.git"
44 - inherit autotools git-r3
45 -else
46 - KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86"
47 - SRC_URI="http://www.bastoul.net/cloog/pages/download/${P}.tar.gz"
48 -fi
49 -
50 -DESCRIPTION="A loop generator for scanning polyhedra"
51 -HOMEPAGE="http://www.bastoul.net/cloog/"
52 -
53 -LICENSE="LGPL-2.1"
54 -SLOT="0/4"
55 -IUSE="static-libs"
56 -
57 -RDEPEND=">=dev-libs/gmp-6.0.0[${MULTILIB_USEDEP}]
58 - >=dev-libs/isl-0.15:0=[${MULTILIB_USEDEP}]"
59 -DEPEND="${DEPEND}
60 - virtual/pkgconfig"
61 -
62 -DOCS=( README )
63 -
64 -src_prepare() {
65 - if [[ ${PV} == "9999" ]] ; then
66 - ./get_submodules.sh
67 - eautoreconf -i
68 - else
69 - # m4/ax_create_pkgconfig_info.m4 includes LDFLAGS
70 - # sed to avoid eautoreconf
71 - sed -i -e '/Libs:/s:@LDFLAGS@ ::' configure || die
72 - fi
73 -
74 - # Make sure we always use the system isl.
75 - rm -rf isl
76 -}
77 -
78 -multilib_src_configure() {
79 - ECONF_SOURCE="${S}" econf \
80 - --with-gmp=system \
81 - --with-isl=system \
82 - --with-osl=no \
83 - $(use_enable static-libs static)
84 -}
85 -
86 -# The default src_test() fails, so we'll just run these directly
87 -multilib_src_test() {
88 - echo ">>> Test phase [check]: ${CATEGORY}/${PF}"
89 - emake -j1 check
90 -}
91 -
92 -multilib_src_install_all() {
93 - einstalldocs
94 - prune_libtool_files
95 -}