Remove cloog package
Unused. It seems this was a dependency of some older gcc version, but that's no longer the case.
This commit is contained in:
parent
14d817090d
commit
d0cb1b4306
@ -1,63 +0,0 @@
|
||||
# $Id$
|
||||
# Maintainer: Allan McRae <allan@archlinux.org>
|
||||
|
||||
pkgname=('cloog' 'cloog-devel')
|
||||
pkgver=0.20.0
|
||||
pkgrel=1
|
||||
groups=('libraries')
|
||||
pkgdesc="Library that generates loops for scanning polyhedra"
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://www.bastoul.net/cloog/"
|
||||
license=('GPL')
|
||||
depends=('isl')
|
||||
makedepends=('isl-devel')
|
||||
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/periscop/cloog/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz
|
||||
cloog-0.18.4-msys2.patch
|
||||
cloog-0.18.4-no-undefined.patch
|
||||
cloog-019.1-dont-build-doc.patch)
|
||||
sha256sums=('835c49951ff57be71dcceb6234d19d2cc22a3a5df84aea0a9d9760d92166fc72'
|
||||
'fc4c552e4ce633f4f99bb7f4b59078ee1edd89728f66d044b314a2ffff88c552'
|
||||
'8233e5cf165bbe3aab553b560b48128d059e879398274b9c847888119c469a31'
|
||||
'f960d873bace207a3b7e575560c503ed87833c5d045be45a134ba2e7f6fc1ac3')
|
||||
|
||||
prepare() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
patch -p1 -i ${srcdir}/cloog-0.18.4-msys2.patch
|
||||
patch -p1 -i ${srcdir}/cloog-0.18.4-no-undefined.patch
|
||||
patch -p1 -i ${srcdir}/cloog-019.1-dont-build-doc.patch
|
||||
WANT_AUTOMAKE=latest autoreconf -fiv
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--enable-shared \
|
||||
--disable-static \
|
||||
--with-isl=system \
|
||||
--with-bits=gmp \
|
||||
--program-suffix=-isl
|
||||
make
|
||||
make DESTDIR=${srcdir}/dest install
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
make check
|
||||
}
|
||||
|
||||
package_cloog() {
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
cp -f ${srcdir}/dest/usr/bin/*.dll ${pkgdir}/usr/bin
|
||||
}
|
||||
|
||||
package_cloog-devel() {
|
||||
pkgdesc="CLOOG headers and libraries"
|
||||
groups=('development')
|
||||
depends=("cloog=${pkgver}" 'isl-devel')
|
||||
|
||||
mkdir -p ${pkgdir}/usr
|
||||
|
||||
cp -rf ${srcdir}/dest/usr/include ${pkgdir}/usr/
|
||||
cp -rf ${srcdir}/dest/usr/lib ${pkgdir}/usr/
|
||||
}
|
||||
@ -1,26 +0,0 @@
|
||||
diff -durN cloog-0.18.4.orig/autoconf/config.guess cloog-0.18.4/autoconf/config.guess
|
||||
--- cloog-0.18.4.orig/autoconf/config.guess 2014-10-02 22:14:47.000000000 +0800
|
||||
+++ cloog-0.18.4/autoconf/config.guess 2017-05-09 15:47:33.312500000 +0800
|
||||
@@ -866,6 +866,9 @@
|
||||
amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
|
||||
echo x86_64-unknown-cygwin
|
||||
exit ;;
|
||||
+ amd64:MSYS*:*:* | x86_64:MSYS*:*:*)
|
||||
+ echo x86_64-unknown-msys
|
||||
+ exit ;;
|
||||
p*:CYGWIN*:*)
|
||||
echo powerpcle-unknown-cygwin
|
||||
exit ;;
|
||||
diff -durN cloog-0.18.4.orig/osl/autoconf/config.guess cloog-0.18.4/osl/autoconf/config.guess
|
||||
--- cloog-0.18.4.orig/osl/autoconf/config.guess 2014-10-02 22:14:44.000000000 +0800
|
||||
+++ cloog-0.18.4/osl/autoconf/config.guess 2017-05-09 15:48:21.156250000 +0800
|
||||
@@ -866,6 +866,9 @@
|
||||
amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
|
||||
echo x86_64-unknown-cygwin
|
||||
exit ;;
|
||||
+ amd64:MSYS*:*:* | x86_64:MSYS*:*:*)
|
||||
+ echo x86_64-unknown-msys
|
||||
+ exit ;;
|
||||
p*:CYGWIN*:*)
|
||||
echo powerpcle-unknown-cygwin
|
||||
exit ;;
|
||||
@ -1,37 +0,0 @@
|
||||
diff -durN cloog-0.18.4.orig/isl/configure.ac cloog-0.18.4/isl/configure.ac
|
||||
--- cloog-0.18.4.orig/isl/configure.ac 2017-05-09 15:24:43.125000000 +0800
|
||||
+++ cloog-0.18.4/isl/configure.ac 2017-05-09 15:55:57.921875000 +0800
|
||||
@@ -222,9 +222,6 @@
|
||||
AC_CONFIG_HEADERS(isl_config.h)
|
||||
AC_CONFIG_FILES(Makefile)
|
||||
AC_CONFIG_FILES(doc/Makefile)
|
||||
-if test $with_clang = system; then
|
||||
- AC_CONFIG_FILES(interface/Makefile)
|
||||
-fi
|
||||
AC_CONFIG_FILES([bound_test.sh], [chmod +x bound_test.sh])
|
||||
AC_CONFIG_FILES([codegen_test.sh], [chmod +x codegen_test.sh])
|
||||
AC_CONFIG_FILES([pip_test.sh], [chmod +x pip_test.sh])
|
||||
diff -durN cloog-0.18.4.orig/isl/Makefile.am cloog-0.18.4/isl/Makefile.am
|
||||
--- cloog-0.18.4.orig/isl/Makefile.am 2017-05-09 15:24:41.765625000 +0800
|
||||
+++ cloog-0.18.4/isl/Makefile.am 2017-05-09 15:55:12.468750000 +0800
|
||||
@@ -172,7 +172,7 @@
|
||||
isl_vertices.c \
|
||||
isl_yaml.h
|
||||
libisl_la_LIBADD = @MP_LIBS@
|
||||
-libisl_la_LDFLAGS = -version-info @versioninfo@ \
|
||||
+libisl_la_LDFLAGS = -version-info @versioninfo@ -no-undefined \
|
||||
@MP_LDFLAGS@
|
||||
|
||||
isl_test_LDFLAGS = @MP_LDFLAGS@
|
||||
diff -durN cloog-0.18.4.orig/Makefile.am cloog-0.18.4/Makefile.am
|
||||
--- cloog-0.18.4.orig/Makefile.am 2017-05-09 15:24:36.093750000 +0800
|
||||
+++ cloog-0.18.4/Makefile.am 2017-05-09 15:54:16.468750000 +0800
|
||||
@@ -92,7 +92,7 @@
|
||||
AM_CPPFLAGS = -I. -I$(top_builddir)/include -I$(top_srcdir)/include
|
||||
AM_CFLAGS = $(CFLAGS_WARN)
|
||||
libcloog_isl_la_CPPFLAGS = -I. -I$(top_builddir)/include -I$(top_srcdir)/include @ISL_CPPFLAGS@ @OSL_CPPFLAGS@
|
||||
-libcloog_isl_la_LDFLAGS = -version-info @versioninfo@ \
|
||||
+libcloog_isl_la_LDFLAGS = -version-info @versioninfo@ -no-undefined \
|
||||
-rpath $(libdir) @ISL_LDFLAGS@ @OSL_LDFLAGS@
|
||||
libcloog_isl_la_LIBADD = @ISL_LIBS@ @OSL_LIBS@ $(ISL_LA) $(OSL_LA)
|
||||
libcloog_isl_la_SOURCES = \
|
||||
@ -1,22 +0,0 @@
|
||||
--- a/Makefile.am.orig 2018-07-15 16:11:53.971108000 +0200
|
||||
+++ a/Makefile.am 2018-07-15 17:20:52.885833600 +0200
|
||||
@@ -181,19 +181,6 @@
|
||||
@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 *
|
||||
Loading…
x
Reference in New Issue
Block a user