Date: Sunday, October 23, 2022 @ 21:11:58
  Author: arojas
Revision: 1334415

archrelease: copy trunk to community-x86_64

Added:
  giac/repos/community-x86_64/PKGBUILD
    (from rev 1334414, giac/trunk/PKGBUILD)
  giac/repos/community-x86_64/giac-pari-2.15.patch
    (from rev 1334414, giac/trunk/giac-pari-2.15.patch)
Deleted:
  giac/repos/community-x86_64/PKGBUILD
  giac/repos/community-x86_64/giac-pari-2.15.patch

----------------------+
 PKGBUILD             |   72 ++++++++++++++++++++++++-------------------------
 giac-pari-2.15.patch |   40 +++++++++++++--------------
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2022-10-23 21:11:47 UTC (rev 1334414)
+++ PKGBUILD    2022-10-23 21:11:58 UTC (rev 1334415)
@@ -1,36 +0,0 @@
-# Maintainer: Antonio Rojas <[email protected]>
-
-pkgname=giac
-_pkgver=1.9.0-23
-pkgver=${_pkgver//-/.}
-pkgrel=1
-pkgdesc='A free computer algebra system'
-arch=(x86_64)
-url='http://www-fourier.ujf-grenoble.fr/~parisse/giac.html'
-license=(GPL3)
-depends=(fltk mpfi gsl pari ntl lapack curl glpk libao gmp-ecm libsamplerate)
-makedepends=(python libjpeg texlive-core texlive-science hevea nauty)
-optdepends=('perl: for pgiac')
-replaces=(libgiac xcas)
-provides=(libgiac xcas)
-source=(http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgname}_$_pkgver.tar.gz
-        giac-pari-2.15.patch)
-sha256sums=('b98e3c90977aedf45748582b45b5127285f46d83fe8e6f3632f41dcb56527a1e'
-            'cb1d6e783f2a1f05c2ec7319874089e6a2ab6316f65661087796452b9b8efb21')
-
-prepare() {
-  cd $pkgname-${pkgver%.*}
-  patch -p1 < ../giac-pari-2.15.patch # Fix build with pari 2.15
-}
-
-build() {
-  cd $pkgname-${pkgver%.*}
-  CXXFLAGS+=" -Wp,-U_GLIBCXX_ASSERTIONS" # Fix crashes
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-}

Copied: giac/repos/community-x86_64/PKGBUILD (from rev 1334414, 
giac/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2022-10-23 21:11:58 UTC (rev 1334415)
@@ -0,0 +1,36 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=giac
+_pkgver=1.9.0-25
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc='A free computer algebra system'
+arch=(x86_64)
+url='http://www-fourier.ujf-grenoble.fr/~parisse/giac.html'
+license=(GPL3)
+depends=(fltk mpfi gsl pari ntl lapack curl glpk libao gmp-ecm libsamplerate)
+makedepends=(python libjpeg texlive-core texlive-science hevea nauty)
+optdepends=('perl: for pgiac')
+replaces=(libgiac xcas)
+provides=(libgiac xcas)
+source=(http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgname}_$_pkgver.tar.gz
+        giac-pari-2.15.patch)
+sha256sums=('a449c1de1136d0fe45c162fcd84821ff3e68f8995512affeac683e0abc1f8b71'
+            'cb1d6e783f2a1f05c2ec7319874089e6a2ab6316f65661087796452b9b8efb21')
+
+prepare() {
+  cd $pkgname-${pkgver%.*}
+  patch -p1 < ../giac-pari-2.15.patch # Fix build with pari 2.15
+}
+
+build() {
+  cd $pkgname-${pkgver%.*}
+  CXXFLAGS+=" -Wp,-U_GLIBCXX_ASSERTIONS" # Fix crashes
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+}

Deleted: giac-pari-2.15.patch
===================================================================
--- giac-pari-2.15.patch        2022-10-23 21:11:47 UTC (rev 1334414)
+++ giac-pari-2.15.patch        2022-10-23 21:11:58 UTC (rev 1334415)
@@ -1,20 +0,0 @@
-ANYARG patch
-
-diff --git a/src/pari.cc b/src/pari.cc
-index 76ce8e1..50d08ab 100644
---- a/src/pari.cc
-+++ b/src/pari.cc
-@@ -40,6 +40,13 @@ using namespace std;
- 
- #ifdef HAVE_LIBPARI
- 
-+// Anyarg disappeared from PARI 2.15.0
-+#ifdef __cplusplus
-+#  define ANYARG ...
-+#else
-+#  define ANYARG
-+#endif
-+
- #ifdef HAVE_PTHREAD_H
- #include <pthread.h>
- #endif

Copied: giac/repos/community-x86_64/giac-pari-2.15.patch (from rev 1334414, 
giac/trunk/giac-pari-2.15.patch)
===================================================================
--- giac-pari-2.15.patch                                (rev 0)
+++ giac-pari-2.15.patch        2022-10-23 21:11:58 UTC (rev 1334415)
@@ -0,0 +1,20 @@
+ANYARG patch
+
+diff --git a/src/pari.cc b/src/pari.cc
+index 76ce8e1..50d08ab 100644
+--- a/src/pari.cc
++++ b/src/pari.cc
+@@ -40,6 +40,13 @@ using namespace std;
+ 
+ #ifdef HAVE_LIBPARI
+ 
++// Anyarg disappeared from PARI 2.15.0
++#ifdef __cplusplus
++#  define ANYARG ...
++#else
++#  define ANYARG
++#endif
++
+ #ifdef HAVE_PTHREAD_H
+ #include <pthread.h>
+ #endif

Reply via email to