# HG changeset patch # User Pascal Bellard # Date 1671106147 0 # Node ID 48dff2952881857299dc37dbb41d68f739a1d375 # Parent aa585fba6e4b82ced3a16d68fdd1a37c9030b3c6 Up dropbear (2022.83) diff -r aa585fba6e4b -r 48dff2952881 bacon/receipt --- a/bacon/receipt Fri Dec 09 14:24:30 2022 -0500 +++ b/bacon/receipt Thu Dec 15 12:09:07 2022 +0000 @@ -10,7 +10,7 @@ WEB_SITE="https://www.basic-converter.org/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="${WEB_SITE}stable/$TARBALL" +WGET_URL="${WEB_SITE}museum/$TARBALL" DEPENDS="gtk+" BUILD_DEPENDS="gtk+-dev" diff -r aa585fba6e4b -r 48dff2952881 catfish/receipt --- a/catfish/receipt Fri Dec 09 14:24:30 2022 -0500 +++ b/catfish/receipt Thu Dec 15 12:09:07 2022 +0000 @@ -7,8 +7,8 @@ MAINTAINER="devl547@gmail.com" LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://twotoasts.de/index.php/catfish/" -WGET_URL="http://twotoasts.de/media/$PACKAGE/$TARBALL" +WEB_SITE="https://git.xfce.org/apps/catfish/about/" +WGET_URL="https://web.archive.org/web/20170708163507if_/http://www.twotoasts.de/media/$PACKAGE/$TARBALL" DEPENDS="pygtk python-xdg findutils" BUILD_DEPENDS="pygtk-dev libglade-dev python-xdg" diff -r aa585fba6e4b -r 48dff2952881 dropbear-pam/receipt --- a/dropbear-pam/receipt Fri Dec 09 14:24:30 2022 -0500 +++ b/dropbear-pam/receipt Thu Dec 15 12:09:07 2022 +0000 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="dropbear-pam" -VERSION="2022.82" +VERSION="2022.83" CATEGORY="security" SHORT_DESC="Light SSH client and server using PAM." MAINTAINER="pascal.bellard@slitaz.org" diff -r aa585fba6e4b -r 48dff2952881 dropbear/receipt --- a/dropbear/receipt Fri Dec 09 14:24:30 2022 -0500 +++ b/dropbear/receipt Thu Dec 15 12:09:07 2022 +0000 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="dropbear" -VERSION="2022.82" +VERSION="2022.83" CATEGORY="security" SHORT_DESC="Lightweight SSH2 server and client" MAINTAINER="pascal.bellard@slitaz.org" @@ -93,8 +93,7 @@ cp -a $stuff/sshx $fs/usr/bin ln -s sshx $fs/usr/bin/pppssh ln -s sshx $fs/usr/bin/sshfbvnc - touch $fs/etc/dropbear/dropbear_dss_host_key \ - $fs/etc/dropbear/dropbear_rsa_host_key \ + touch $fs/etc/dropbear/dropbear_rsa_host_key \ $fs/etc/dropbear/dropbear_ecdsa_host_key \ $fs/etc/dropbear/dropbear_ed25519_host_key @@ -112,7 +111,6 @@ chroot "$1/" dropbearkey -y -f $dropbear | grep Fingerprint done </dev/null | \ + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' +} + +# Rules to configure and make the package. +compile_rules() +{ + sed -i 's|^CC=.*$|CC=gcc|;s|^CFLAGS=|&-std=gnu99 |' \ + Makefile + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + mkdir -p $install/usr/share/doc + + cp -a $src/zultra $fs/usr/bin + cp $src/README* $install/usr/share/doc +}