commit: a680c22049882413e06476aabb3e7cd3e0014703 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> AuthorDate: Sat Dec 3 09:59:55 2022 +0000 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> CommitDate: Sat Dec 3 10:02:18 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a680c220
dev-libs/cloog: treeclean Closes: https://bugs.gentoo.org/815697 Closes: https://bugs.gentoo.org/842873 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org> dev-libs/cloog/Manifest | 1 - dev-libs/cloog/cloog-0.20.0.ebuild | 57 --------------------------- dev-libs/cloog/cloog-9999.ebuild | 57 --------------------------- dev-libs/cloog/files/cloog-0.20.0-notex.patch | 37 ----------------- dev-libs/cloog/metadata.xml | 5 --- profiles/package.mask | 6 --- 6 files changed, 163 deletions(-) diff --git a/dev-libs/cloog/Manifest b/dev-libs/cloog/Manifest deleted file mode 100644 index aef107388032..000000000000 --- a/dev-libs/cloog/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST cloog-0.20.0.tar.gz 512106 BLAKE2B ac5ce6b7bb6ad586fc614c02b7c2e7c17322e49a775e21b50fb9862e487b4278a2b1024a7269830b55be1ae3c4b4c70f3d411d6c86052483bda124bc9bc07b20 SHA512 2663bbce49c42436681750968823dbee9b3cfbe4c086f5b340d11e51d8c8f138d1a2ccfd1691ae4395b94c082ccc49c0d7e5a1475b29192d13ab3c0148a8c347 diff --git a/dev-libs/cloog/cloog-0.20.0.ebuild b/dev-libs/cloog/cloog-0.20.0.ebuild deleted file mode 100644 index 590340afe675..000000000000 --- a/dev-libs/cloog/cloog-0.20.0.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit autotools - -DESCRIPTION="A loop generator for scanning polyhedra" -HOMEPAGE="http://www.bastoul.net/cloog/ https://github.com/periscop/cloog" - -if [[ ${PV} == 9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/periscop/cloog" -else - SRC_URI="https://github.com/periscop/cloog/archive/${P}.tar.gz" - S="${WORKDIR}"/cloog-${P} - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -fi - -LICENSE="LGPL-2.1" -SLOT="0/4" -IUSE="static-libs" - -RDEPEND=" - dev-libs/gmp:= - dev-libs/isl:= -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( "${FILESDIR}"/${PN}-0.20.0-notex.patch ) - -DOCS=( README ) - -src_prepare() { - default - AT_NO_RECURSIVE=yes eautoreconf -i - # m4/ax_create_pkgconfig_info.m4 includes LDFLAGS - # sed to avoid eautoreconf - sed -i -e '/Libs:/s:@LDFLAGS@ ::' configure || die - - # Make sure we always use the system isl. - rm -rf isl || die -} - -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 -src_test() { - emake -j1 check -} diff --git a/dev-libs/cloog/cloog-9999.ebuild b/dev-libs/cloog/cloog-9999.ebuild deleted file mode 100644 index 590340afe675..000000000000 --- a/dev-libs/cloog/cloog-9999.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit autotools - -DESCRIPTION="A loop generator for scanning polyhedra" -HOMEPAGE="http://www.bastoul.net/cloog/ https://github.com/periscop/cloog" - -if [[ ${PV} == 9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/periscop/cloog" -else - SRC_URI="https://github.com/periscop/cloog/archive/${P}.tar.gz" - S="${WORKDIR}"/cloog-${P} - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -fi - -LICENSE="LGPL-2.1" -SLOT="0/4" -IUSE="static-libs" - -RDEPEND=" - dev-libs/gmp:= - dev-libs/isl:= -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( "${FILESDIR}"/${PN}-0.20.0-notex.patch ) - -DOCS=( README ) - -src_prepare() { - default - AT_NO_RECURSIVE=yes eautoreconf -i - # m4/ax_create_pkgconfig_info.m4 includes LDFLAGS - # sed to avoid eautoreconf - sed -i -e '/Libs:/s:@LDFLAGS@ ::' configure || die - - # Make sure we always use the system isl. - rm -rf isl || die -} - -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 -src_test() { - emake -j1 check -} diff --git a/dev-libs/cloog/files/cloog-0.20.0-notex.patch b/dev-libs/cloog/files/cloog-0.20.0-notex.patch deleted file mode 100644 index 72c75a1820d4..000000000000 --- a/dev-libs/cloog/files/cloog-0.20.0-notex.patch +++ /dev/null @@ -1,37 +0,0 @@ -diff --git a/Makefile.am b/Makefile.am -index 9edba30..fcca42f 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -181,19 +181,6 @@ doc: - @echo " *-----------------------------------------------*/" - doxygen ./autoconf/Doxyfile - --#/***************************************************************************** --# * Doc * --# *****************************************************************************/ -- --if HAVE_TEXI2DVI --pdf_DATA = doc/cloog.pdf --dist_pdf_DATA = doc/cloog.pdf --doc/cloog.pdf: doc/cloog.texi doc/gitversion.texi -- $(TEXI2DVI) -I $(top_builddir)/doc --pdf $< -o $@ --endif -- --doc/gitversion.texi: @GIT_INDEX@ -- echo '@set VERSION '`$(top_builddir)/genversion.sh`'' > $@ - - #/***************************************************************************** - # * Tests * -diff --git a/configure.ac b/configure.ac -index 88d346d..fec9b04 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -72,8 +72,6 @@ AC_CHECK_PROG(CD, cd) - dnl Configure needs an empty install.sh file with this, i HATE that... - AC_PROG_INSTALL - AC_PROG_LIBTOOL --AC_CHECK_PROG(TEXI2DVI, texi2dvi, texi2dvi, []) --AM_CONDITIONAL(HAVE_TEXI2DVI, test -n "$TEXI2DVI") - - AX_CC_MAXOPT - AC_SUBST(CFLAGS_WARN) diff --git a/dev-libs/cloog/metadata.xml b/dev-libs/cloog/metadata.xml deleted file mode 100644 index 115e9d64a669..000000000000 --- a/dev-libs/cloog/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> -</pkgmetadata> diff --git a/profiles/package.mask b/profiles/package.mask index fed64a39c4e9..ae217d2d79f0 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -436,12 +436,6 @@ media-gfx/peps # Removal: 2022-11-28. Bug #878733. dev-python/pathtools -# Michał Górny <[email protected]> (2022-10-29) -# Unmaintained in Gentoo. Last release in 2018, very little upstream -# activity since. No revdeps left. -# Removal on 2022-11-28. Bug #842873. -dev-libs/cloog - # Sam James <[email protected]> (2022-10-28) # Please upgrade to >=media-libs/fontconfig-2.14.1-r1 for fixed # cache dir to avoid sandbox violation errors, bug #878471.
