# HG changeset patch # User Hans-G?nter Theisgen # Date 1559321481 -3600 # Node ID 8cd03bcd99f2b5825cb5be5400cc329b05c1aad7 # Parent aaa14b79e3650bf75c04a864eb05274c3eae730c updated pari and pari-dev (2.5.3 -> 2.11.2) diff -r aaa14b79e365 -r 8cd03bcd99f2 pari-dev/receipt --- a/pari-dev/receipt Fri May 31 17:29:36 2019 +0100 +++ b/pari-dev/receipt Fri May 31 17:51:21 2019 +0100 @@ -1,18 +1,20 @@ # SliTaz package receipt. PACKAGE="pari-dev" -VERSION="2.5.3" +VERSION="2.11.2" CATEGORY="development" -SHORT_DESC="Devel files for PARI/GP" +SHORT_DESC="Development files for pari." MAINTAINER="al.bobylev@gmail.com" LICENSE="GPL2" -WEB_SITE="http://pari.math.u-bordeaux.fr/" +WEB_SITE="https://pari.math.u-bordeaux.fr/" + WANTED="pari" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib } diff -r aaa14b79e365 -r 8cd03bcd99f2 pari/receipt --- a/pari/receipt Fri May 31 17:29:36 2019 +0100 +++ b/pari/receipt Fri May 31 17:51:21 2019 +0100 @@ -1,25 +1,30 @@ # SliTaz package receipt. PACKAGE="pari" -VERSION="2.5.3" +VERSION="2.11.2" CATEGORY="utilities" -SHORT_DESC="PARI/GP is a widely used computer algebra system" +SHORT_DESC="Computer algebra system designed for fast computations in number theory." MAINTAINER="al.bobylev@gmail.com" LICENSE="GPL2" -WEB_SITE="http://pari.math.u-bordeaux.fr/" +WEB_SITE="https://pari.math.u-bordeaux.fr/" + TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="http://pari.math.u-bordeaux.fr/pub/$PACKAGE/unix/$TARBALL" DEPENDS="glibc-base gmp libxcb ncurses readline xorg-libX11 xorg-libXau \ -xorg-libXdmcp" + xorg-libXdmcp" BUILD_DEPENDS="gmp-dev readline-dev xorg-libX11-dev" # Rules to configure and make the package. compile_rules() { mkdir build - # this configure not respect $CONFIGURE_ARGS :( - ./Configure --host=$ARCH --graphic=X11 --builddir=build --prefix=/usr && + # this configure does not respect $CONFIGURE_ARGS :( + ./Configure \ + --host=$ARCH \ + --graphic=X11 \ + --builddir=build \ + --prefix=/usr && cd build make all && make DESTDIR=$install install 2>&1 | sed \ @@ -31,8 +36,10 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib/pari $fs/usr/share - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/pari $fs/usr/lib - cp -a $install/usr/share/pari $fs/usr/share + mkdir -p $fs/usr/lib/pari + mkdir -p $fs/usr/share + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/pari $fs/usr/lib + cp -a $install/usr/share/pari $fs/usr/share }