# HG changeset patch # User Hans-G?nter Theisgen # Date 1656508375 -3600 # Node ID 376b2435dac3659cd722a6ea480c8edb65f1f8dd # Parent 7d834c8a352eaa9f80c23e356f24d2a90697817e updated pigz (2.4 -> 2.7) diff -r 7d834c8a352e -r 376b2435dac3 phpmyadmin/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phpmyadmin/description.txt Wed Jun 29 14:12:55 2022 +0100 @@ -0,0 +1,6 @@ +PhpMyAdmin is a free software tool written in PHP, intended to handle the +administration of MySQL over the Web. +PhpMyAdmin supports a wide range of operations on MySQL and MariaDB. +Frequently used operations (managing databases, tables, columns, relations, +indexes, users, permissions, etc) can be performed via the user interface, +while you still have the ability to directly execute any SQL statement. diff -r 7d834c8a352e -r 376b2435dac3 pigz/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pigz/description.txt Wed Jun 29 14:12:55 2022 +0100 @@ -0,0 +1,6 @@ +Pigz, which stands for parallel implementation of gzip, +is a fully functional replacement for gzip that exploits +multiple processors and multiple cores to the hilt when +compressing data. +Pigz was written by Mark Adler, and uses the zlib and +pthread libraries. diff -r 7d834c8a352e -r 376b2435dac3 pigz/receipt --- a/pigz/receipt Wed Jun 29 11:19:44 2022 +0100 +++ b/pigz/receipt Wed Jun 29 14:12:55 2022 +0100 @@ -1,14 +1,15 @@ # SliTaz package receipt. PACKAGE="pigz" -VERSION="2.4" +VERSION="2.7" CATEGORY="base-system" SHORT_DESC="Parallel Implementation of GZip." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="Apache" +WEB_SITE="https://zlib.net/pigz/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.zlib.net/pigz" -WGET_URL="https://github.com/madler/pigz/archive/v$VERSION.tar.gz" +WGET_URL="${WEB_SITE}$TARBALL" DEPENDS="" BUILD_DEPENDS="" @@ -24,25 +25,28 @@ compile_rules() { sed -i 's/-lz/& -lm/' Makefile + make } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/bin $install/usr/share/man - cp $src/pigz.1 $install/usr/share/man - cp $src/pigz $fs/usr/bin - ln -s pigz $fs/usr/bin/unpigz + mkdir -p $fs/usr/bin + mkdir -p $install/usr/share/man + + cp $src/pigz.1 $install/usr/share/man + cp $src/pigz $fs/usr/bin + ln -s pigz $fs/usr/bin/unpigz } pre_remove() { - sed -i '/gzip=pigz/d' $1/etc/profile + sed -i '/gzip=pigz/d' $1/etc/profile } post_install() { - grep -qs 'gzip=pigz' $1/etc/profile || - echo 'alias gzip=pigz' >> $1/etc/profile + grep -qs 'gzip=pigz' $1/etc/profile || + echo 'alias gzip=pigz' >> $1/etc/profile }