wok rev 20029

Up mosh (1.3.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 20 09:44:00 2017 +0200 (2017-08-20)
parents 65b8664ee183
children 8670baf3d84a
files busybox/receipt mosh/receipt
line diff
     1.1 --- a/busybox/receipt	Sat Aug 19 12:14:25 2017 +0200
     1.2 +++ b/busybox/receipt	Sun Aug 20 09:44:00 2017 +0200
     1.3 @@ -70,6 +70,7 @@
     1.4  			make && make install || return 1
     1.5  		    strip --strip-unneeded -R .eh_frame -R .eh_frame_hdr \
     1.6  				$src/_install/bin/busybox
     1.7 +		    mv busybox_unstripped.map busybox-glibc.map
     1.8  		    mv docs/busybox.1 docs/busybox.base.1
     1.9  
    1.10  			# prepare busybox-pam package
    1.11 @@ -78,6 +79,7 @@
    1.12  		    make oldconfig && make || return 1
    1.13  		    strip --strip-unneeded -R .eh_frame -R .eh_frame_hdr busybox
    1.14  		    mv busybox busybox-pam
    1.15 +		    mv busybox_unstripped.map busybox-pam.map
    1.16  		    mv docs/busybox.1 docs/busybox.pam.1
    1.17  
    1.18  		    # prepare busybox-static package
    1.19 @@ -88,6 +90,7 @@
    1.20  			make oldconfig && make || return 1
    1.21  			cp busybox busybox-static
    1.22  			mv busybox busybox-uclibc
    1.23 +			mv busybox_unstripped.map busybox-uclibc.map
    1.24  			mv -f docs/busybox.1 docs/busybox.static.1
    1.25  		    fi
    1.26  
    1.27 @@ -98,6 +101,7 @@
    1.28  			sed -i 's|uclibc-i486-||' .config
    1.29  			make oldconfig && make CC=musl-gcc || return 1
    1.30  			mv busybox busybox-musl
    1.31 +			mv busybox_unstripped.map busybox-musl.map
    1.32  			mv -f docs/busybox.1 docs/busybox.static.1
    1.33  		    fi
    1.34  
    1.35 @@ -108,6 +112,7 @@
    1.36  			sed -i 's|uclibc-i486-||;s|CFLAGS="|&-D_BSD_SOURCE |;s|LDFLAGS="|&-Wl,--allow-multiple-definition |;s|LDLIBS="|&compat rpc |' .config
    1.37  			make oldconfig && make CC="/usr/lib/diet/bin/diet gcc" || return 1
    1.38  			mv busybox busybox-diet
    1.39 +			mv busybox_unstripped.map busybox-diet.map
    1.40  			mv -f docs/busybox.1 docs/busybox.static.1
    1.41  		    fi
    1.42  
    1.43 @@ -118,6 +123,7 @@
    1.44  		    cp $stuff/$PACKAGE-${VERSION%.*}.config-ssfs .config
    1.45  		    make oldconfig && make busybox &&
    1.46  		    make CONFIG_PREFIX=$rootfs install || return 1
    1.47 +		    mv busybox_unstripped.map busybox-ssfs.map
    1.48  		    cp $stuff/busybox.conf-ssfs $rootfs/etc/busybox.conf
    1.49  		    chown -R 0.0 $rootfs/etc
    1.50  		    chmod 0600 $rootfs/etc/busybox.conf
     2.1 --- a/mosh/receipt	Sat Aug 19 12:14:25 2017 +0200
     2.2 +++ b/mosh/receipt	Sun Aug 20 09:44:00 2017 +0200
     2.3 @@ -1,24 +1,25 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="mosh"
     2.7 -VERSION="1.2.5"
     2.8 +VERSION="1.3.2"
     2.9  CATEGORY="security"
    2.10  SHORT_DESC="A Openbsd Secure Shell remplacement."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="GPL3"
    2.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.14  WEB_SITE="http://mosh.mit.edu/"
    2.15 -WGET_URL="${WEB_SITE}$TARBALL"
    2.16 +WGET_URL="https://github.com/mobile-shell/mosh/archive/mosh-$VERSION.tar.gz"
    2.17  TAGS="ssh"
    2.18  
    2.19  DEPENDS="gcc-lib-base glibc-base perl protobuf libssl libcrypto libtinfo \
    2.20  zlib ncursesw ssh"
    2.21  BUILD_DEPENDS="pkg-config protobuf-dev openssl-dev libcrypto-dev zlib-dev \
    2.22 -ncursesw-dev"
    2.23 +ncursesw-dev autoconf automake libtool"
    2.24  
    2.25  # Rules to configure and make the package.
    2.26  compile_rules()
    2.27  {
    2.28 +	./autogen.sh
    2.29  	./configure --prefix=/usr --sysconfdir=/etc \
    2.30  		--enable-compile-warnings=error &&
    2.31  	make &&