# HG changeset patch # User Pascal Bellard # Date 1503215040 -7200 # Node ID 8f4649ae101b4b0ecdf8a40e8e169916f41b9463 # Parent 65b8664ee183c1feeff9cf4d982921a72a97eca9 Up mosh (1.3.2) diff -r 65b8664ee183 -r 8f4649ae101b busybox/receipt --- a/busybox/receipt Sat Aug 19 12:14:25 2017 +0200 +++ b/busybox/receipt Sun Aug 20 09:44:00 2017 +0200 @@ -70,6 +70,7 @@ make && make install || return 1 strip --strip-unneeded -R .eh_frame -R .eh_frame_hdr \ $src/_install/bin/busybox + mv busybox_unstripped.map busybox-glibc.map mv docs/busybox.1 docs/busybox.base.1 # prepare busybox-pam package @@ -78,6 +79,7 @@ make oldconfig && make || return 1 strip --strip-unneeded -R .eh_frame -R .eh_frame_hdr busybox mv busybox busybox-pam + mv busybox_unstripped.map busybox-pam.map mv docs/busybox.1 docs/busybox.pam.1 # prepare busybox-static package @@ -88,6 +90,7 @@ make oldconfig && make || return 1 cp busybox busybox-static mv busybox busybox-uclibc + mv busybox_unstripped.map busybox-uclibc.map mv -f docs/busybox.1 docs/busybox.static.1 fi @@ -98,6 +101,7 @@ sed -i 's|uclibc-i486-||' .config make oldconfig && make CC=musl-gcc || return 1 mv busybox busybox-musl + mv busybox_unstripped.map busybox-musl.map mv -f docs/busybox.1 docs/busybox.static.1 fi @@ -108,6 +112,7 @@ sed -i 's|uclibc-i486-||;s|CFLAGS="|&-D_BSD_SOURCE |;s|LDFLAGS="|&-Wl,--allow-multiple-definition |;s|LDLIBS="|&compat rpc |' .config make oldconfig && make CC="/usr/lib/diet/bin/diet gcc" || return 1 mv busybox busybox-diet + mv busybox_unstripped.map busybox-diet.map mv -f docs/busybox.1 docs/busybox.static.1 fi @@ -118,6 +123,7 @@ cp $stuff/$PACKAGE-${VERSION%.*}.config-ssfs .config make oldconfig && make busybox && make CONFIG_PREFIX=$rootfs install || return 1 + mv busybox_unstripped.map busybox-ssfs.map cp $stuff/busybox.conf-ssfs $rootfs/etc/busybox.conf chown -R 0.0 $rootfs/etc chmod 0600 $rootfs/etc/busybox.conf diff -r 65b8664ee183 -r 8f4649ae101b mosh/receipt --- a/mosh/receipt Sat Aug 19 12:14:25 2017 +0200 +++ b/mosh/receipt Sun Aug 20 09:44:00 2017 +0200 @@ -1,24 +1,25 @@ # SliTaz package receipt. PACKAGE="mosh" -VERSION="1.2.5" +VERSION="1.3.2" CATEGORY="security" SHORT_DESC="A Openbsd Secure Shell remplacement." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL3" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://mosh.mit.edu/" -WGET_URL="${WEB_SITE}$TARBALL" +WGET_URL="https://github.com/mobile-shell/mosh/archive/mosh-$VERSION.tar.gz" TAGS="ssh" DEPENDS="gcc-lib-base glibc-base perl protobuf libssl libcrypto libtinfo \ zlib ncursesw ssh" BUILD_DEPENDS="pkg-config protobuf-dev openssl-dev libcrypto-dev zlib-dev \ -ncursesw-dev" +ncursesw-dev autoconf automake libtool" # Rules to configure and make the package. compile_rules() { + ./autogen.sh ./configure --prefix=/usr --sysconfdir=/etc \ --enable-compile-warnings=error && make &&