[arch-commits] Commit in linbox/repos/community-x86_64 (3 files)

Antonio Rojas arojas at archlinux.org
Sun Apr 26 08:34:45 UTC 2020


    Date: Sunday, April 26, 2020 @ 08:34:45
  Author: arojas
Revision: 621520

archrelease: copy trunk to community-x86_64

Added:
  linbox/repos/community-x86_64/PKGBUILD
    (from rev 621519, linbox/trunk/PKGBUILD)
  linbox/repos/community-x86_64/linbox-fix-pc.patch
    (from rev 621519, linbox/trunk/linbox-fix-pc.patch)
Deleted:
  linbox/repos/community-x86_64/PKGBUILD

---------------------+
 PKGBUILD            |   75 +++++++++++++++++++++++++++-----------------------
 linbox-fix-pc.patch |   23 +++++++++++++++
 2 files changed, 64 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-04-26 08:34:21 UTC (rev 621519)
+++ PKGBUILD	2020-04-26 08:34:45 UTC (rev 621520)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas < nqn76sw at gmail.com >
-
-pkgname=linbox
-pkgver=1.6.3
-pkgrel=1
-pkgdesc="A template library for exact, high-performance linear algebra computation with dense, sparse, and structured matrices over the integers and over finite fields"
-arch=(x86_64)
-url="http://linalg.org/"
-license=(LGPL)
-depends=(fflas-ffpack)
-makedepends=(m4rie flint iml fplll)
-source=("https://github.com/linbox-team/linbox/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz")
-sha256sums=('a58a188307b07c57964e844bceb99321d3043a8a4a1fccc082a54928bb9a0057')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --enable-sage --with-fplll=/usr \
-    --disable-sse3 --disable-ssse3 --disable-sse41 --disable-sse42 --disable-avx --disable-avx2 --disable-fma
-  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-# make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: linbox/repos/community-x86_64/PKGBUILD (from rev 621519, linbox/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-04-26 08:34:45 UTC (rev 621520)
@@ -0,0 +1,41 @@
+# Maintainer: Antonio Rojas < nqn76sw at gmail.com >
+
+pkgname=linbox
+pkgver=1.6.3
+pkgrel=2
+pkgdesc="A template library for exact, high-performance linear algebra computation with dense, sparse, and structured matrices over the integers and over finite fields"
+arch=(x86_64)
+url="https://linalg.org/"
+license=(LGPL)
+depends=(fflas-ffpack)
+makedepends=(m4rie flint iml fplll)
+source=("https://github.com/linbox-team/linbox/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz"
+         linbox-fix-pc.patch)
+sha256sums=('a58a188307b07c57964e844bceb99321d3043a8a4a1fccc082a54928bb9a0057'
+            'd206f828fb7f4a5194e8e395e99e37c16462e29086c03a95cfdc51c02b4fc874')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../linbox-fix-pc.patch # Fix bogus variable in pc file
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-sage --with-fplll=/usr \
+    --disable-sse3 --disable-ssse3 --disable-sse41 --disable-sse42 --disable-avx --disable-avx2 --disable-fma
+  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+# make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: linbox/repos/community-x86_64/linbox-fix-pc.patch (from rev 621519, linbox/trunk/linbox-fix-pc.patch)
===================================================================
--- linbox-fix-pc.patch	                        (rev 0)
+++ linbox-fix-pc.patch	2020-04-26 08:34:45 UTC (rev 621520)
@@ -0,0 +1,23 @@
+Backported from:
+
+From 426eb97ba762c7663884f57ead0909f2aa3cd6a5 Mon Sep 17 00:00:00 2001
+From: Cyril Bouvier <cyril.bouvier at lirmm.fr>
+Date: Thu, 17 Jan 2019 16:32:19 +0100
+Subject: [PATCH] Remove @LINBOXSAGE_LIBS@ from linbox.pc.in
+
+---
+ linbox.pc.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/linbox.pc.in b/linbox.pc.in
+index 278f127e4..c6b8091eb 100644
+--- a/linbox.pc.in
++++ b/linbox.pc.in
+@@ -9,6 +9,6 @@ Description: Exact Linear Algebra library
+ URL: http://github.com/linbox-team/linbox
+ Version: @VERSION@
+ Requires: fflas-ffpack >= 2.4.0, givaro >= 4.1.0
+-Libs: -L${libdir} -llinbox @LINBOXSAGE_LIBS@ @NTL_LIBS@ @MPFR_LIBS@ @FPLLL_LIBS@ @IML_LIBS@ @FLINT_LIBS@ @OCL_LIBS@
++Libs: -L${libdir} -llinbox @NTL_LIBS@ @MPFR_LIBS@ @FPLLL_LIBS@ @IML_LIBS@ @FLINT_LIBS@ @OCL_LIBS@
+ Cflags: @DEFAULT_CFLAGS@ -DDISABLE_COMMENTATOR -I${includedir} @NTL_CFLAGS@ @MPFR_CFLAGS@ @FPLLL_CFLAGS@  @IML_CFLAGS@ @FLINT_CFLAGS@ 
+ \-------------------------------------------------------



More information about the arch-commits mailing list