# HG changeset patch # User Pascal Bellard # Date 1653169109 0 # Node ID 7ae189994f37f1da49be9a82bf825dc4cfad6639 # Parent 6e5c8ce7fb15df17c71d20f1628812711e845313 Up glza (0.11.4) diff -r 6e5c8ce7fb15 -r 7ae189994f37 f2c/receipt --- a/f2c/receipt Sat May 21 13:10:56 2022 +0000 +++ b/f2c/receipt Sat May 21 21:38:29 2022 +0000 @@ -6,9 +6,9 @@ SHORT_DESC="A Fortran 77 to C translator." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -TARBALL="$PACKAGE-$VERSION.tgz" +TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="https://github.com/barak/f2c" -WGET_URL="http://www.netlib.org/f2c/src.tgz" +WGET_URL="https://github.com/barak/f2c/archive/refs/tags/upstream/$VERSION.tar.gz" LIBF2C="http://www.netlib.org/f2c/libf2c.zip" EXTRA_SOURCE_FILES="${LIBF2C##*/}" TAGS="fortran" @@ -16,8 +16,8 @@ # What is the latest version available today? current_version() { - wget -O - $WGET_URL 2>/dev/null | \ - tar xOzf - src/changes | sed '/^20[0-9]/!d' | sort -Vr | sed q + wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ + sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q' } # Rules to configure and make the package. @@ -25,6 +25,7 @@ { [ -s $SOURCES_REPOSITORY/$EXTRA_SOURCE_FILES ] || wget -P $SOURCES_REPOSITORY $LIBF2C + cd src cp makefile.u makefile make mkdir libf2c && cd libf2c @@ -37,10 +38,10 @@ genpkg_rules() { mkdir -p $install/usr/man $fs/usr/bin $fs/usr/lib $fs/usr/include - cp -a $src/f2c $fs/usr/bin - cp -a $src/libf2c/f2c.h $fs/usr/include - cp -a $src/libf2c/libf2c.a $fs/usr/lib - cp -a $src/libf2c/libf2c.so $fs/usr/lib/libf2c.so.1.0.0 + cp -a $src/src/f2c $fs/usr/bin + cp -a $src/src/libf2c/f2c.h $fs/usr/include + cp -a $src/src/libf2c/libf2c.a $fs/usr/lib + cp -a $src/src/libf2c/libf2c.so $fs/usr/lib/libf2c.so.1.0.0 ln -s libf2c.so.1.0.0 $fs/usr/lib/libf2c.so.1 ln -s libf2c.so.1.0.0 $fs/usr/lib/libf2c.so cp -a $src/f2c.1t $install/usr/man/f2c.1 diff -r 6e5c8ce7fb15 -r 7ae189994f37 gentorrent/receipt --- a/gentorrent/receipt Sat May 21 13:10:56 2022 +0000 +++ b/gentorrent/receipt Sat May 21 21:38:29 2022 +0000 @@ -6,12 +6,12 @@ SHORT_DESC="Creates BitTorrent metainfo files with any BitTorrent extension." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL3" -TARBALL="$PACKAGE-$VERSION.tar.gz" +TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://tanguy.ortolo.eu/perso/pages/projets/gentorrent" -WGET_URL="http://git.ortolo.eu/gentorrent.git/snapshot/version/$VERSION.tar.gz" +WGET_URL="git|git://git.ortolo.eu/gentorrent.git" DEPENDS="py3k" -BUILD_DEPENDS="" +BUILD_DEPENDS="git" # What is the latest version available today? current_version() @@ -24,5 +24,5 @@ genpkg_rules() { mkdir -p $fs/usr/bin - cp -a $src/*/gentorrent.py $fs/usr/bin + cp -a $src/gentorrent.py $fs/usr/bin } diff -r 6e5c8ce7fb15 -r 7ae189994f37 glza/receipt --- a/glza/receipt Sat May 21 13:10:56 2022 +0000 +++ b/glza/receipt Sat May 21 21:38:29 2022 +0000 @@ -1,14 +1,15 @@ # SliTaz package receipt. PACKAGE="glza" -VERSION="0.11.2" +VERSION="0.11.4" CATEGORY="base-system" SHORT_DESC="Lossless compressor." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="Apache" WEB_SITE="https://encode.su/threads/1909-Tree-alpha-v0-1-download?p=55433" TARBALL="$PACKAGE-$VERSION.zip" -WGET_URL="https://encode.su/attachment.php?s=a72a69ab5c0c400ef5fbc419099b4e0f&attachmentid=7173&d=1577648098" +WGET_URL="https://encode.su/attachment.php?attachmentid=8099&d=1606032483" + TAGS="compression" BUILD_DEPENDS="gcc49" @@ -28,6 +29,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/bin - cp -a $src/GLZA $fs/usr/bin/glza + mkdir -p $fs/usr/bin $install/usr/share/doc + cp -a $src/GLZA $fs/usr/bin/glza + cp -a $src/readme.txt $install/usr/share/doc }