# HG changeset patch # User Pascal Bellard # Date 1417005957 -3600 # Node ID a95b0be09647214431ab449c6a719d22936ba993 # Parent 0257b6487f6288b11d5be134aad424eb6cc80b65 Add iwatch +deps diff -r 0257b6487f62 -r a95b0be09647 iwatch/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/iwatch/receipt Wed Nov 26 13:45:57 2014 +0100 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="iwatch" +VERSION="0.2.2" +CATEGORY="base-system" +SHORT_DESC="Realtime filesystem monitor." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION.tgz" +WEB_SITE="http://iwatch.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +DEPENDS="perl-linux-inotify2 perl-event perl-mail-sendmail perl-xml-simple" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/iwatch $fs/usr/bin +} diff -r 0257b6487f62 -r a95b0be09647 perl-common-sense/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-common-sense/receipt Wed Nov 26 13:45:57 2014 +0100 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="perl-common-sense" +VERSION="3.73" +CATEGORY="development" +SHORT_DESC="common::sense module is a Perl extension." +MAINTAINER="pascal.bellard@slitaz.org" +LICENCE="GPL" +SOURCE="common-sense" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://cpan.org/" +WGET_URL="http://cpan.org/authors/id/M/ML/MLEHMANN/$TARBALL" + +DEPENDS="perl" +BUILD_DEPENDS="perl" + +# Rules to configure and make the package. +compile_rules() +{ + perl Makefile.PL + make + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/lib $fs/usr +} + diff -r 0257b6487f62 -r a95b0be09647 perl-event/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-event/receipt Wed Nov 26 13:45:57 2014 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="perl-event" +VERSION="1.23" +CATEGORY="development" +SHORT_DESC="Event module is a Perl extension." +MAINTAINER="pascal.bellard@slitaz.org" +LICENCE="GPL" +SOURCE="Event" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://cpan.org/" +WGET_URL="http://cpan.org/authors/id/E/ET/ETJ/$TARBALL" +SUGGESTED="perl-time-hires" + +DEPENDS="perl" +BUILD_DEPENDS="perl" + +# Rules to configure and make the package. +compile_rules() +{ + perl Makefile.PL + make + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/lib $fs/usr +} + diff -r 0257b6487f62 -r a95b0be09647 perl-linux-inotify2/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-linux-inotify2/receipt Wed Nov 26 13:45:57 2014 +0100 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="perl-linux-inotify2" +VERSION="1.22" +CATEGORY="development" +SHORT_DESC="Linux::Inotify2 module is a Perl extension." +MAINTAINER="pascal.bellard@slitaz.org" +LICENCE="GPL" +SOURCE="Linux-Inotify2" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://cpan.org/" +WGET_URL="http://cpan.org/authors/id/M/ML/MLEHMANN/$TARBALL" + +DEPENDS="perl-common-sense" +BUILD_DEPENDS="perl" + +# Rules to configure and make the package. +compile_rules() +{ + perl Makefile.PL + make + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/lib $fs/usr +} + diff -r 0257b6487f62 -r a95b0be09647 perl-mail-sendmail/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-mail-sendmail/receipt Wed Nov 26 13:45:57 2014 +0100 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="perl-mail-sendmail" +VERSION="0.79" +CATEGORY="development" +SHORT_DESC="Mail::Sendmail module is a Perl extension." +MAINTAINER="pascal.bellard@slitaz.org" +LICENCE="GPL" +SOURCE="Mail-Sendmail" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://cpan.org/" +WGET_URL="http://cpan.org/authors/id/M/MI/MIVKOVIC/$TARBALL" + +DEPENDS="perl" +BUILD_DEPENDS="perl" + +# Rules to configure and make the package. +compile_rules() +{ + perl Makefile.PL + make + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/lib $fs/usr +} + diff -r 0257b6487f62 -r a95b0be09647 syslinux/stuff/iso2exe/init --- a/syslinux/stuff/iso2exe/init Mon Nov 24 16:18:41 2014 +0100 +++ b/syslinux/stuff/iso2exe/init Wed Nov 26 13:45:57 2014 +0100 @@ -163,6 +163,7 @@ arg subroot "Change root to directory" mount.posixovl -F /mnt/\$val -- -oallow_other -odefault_permissions -osuid mount --bind /mnt /mnt/\$val/mnt/dos +#mount -o size=0 -t tmpfs tmpfs /mnt/\$val/mnt/dos/\$val LDSO=\$(ls /mnt/\$val/lib/ld-* | sed q) export LD_LIBRARY_PATH=\$val/lib:\$val/usr/lib:/lib [ "$debug" = "true" ] && sh diff -r 0257b6487f62 -r a95b0be09647 xarchive/stuff/slitaz-wrap.sh --- a/xarchive/stuff/slitaz-wrap.sh Mon Nov 24 16:18:41 2014 +0100 +++ b/xarchive/stuff/slitaz-wrap.sh Wed Nov 26 13:45:57 2014 +0100 @@ -49,6 +49,7 @@ _7Z_EXTS="7z bcj bcj2 wim $BZIP2_EXTS $ZIP_EXTS $XZ_EXTS" _7Z_EXTS_X="chm cramfs dmg hfs mbr msi nsis ntfs udf vhd xar arj cab lzh rar \ udf cpio $ISO_EXTS $FAT_EXTS $SQUASHFS_EXTS" +ZPAQ_EXTS="zpaq" while read var progs; do eval $var="" @@ -321,6 +322,7 @@ cromfs-driver $CROMFS_EXTS fs/squashfs/squashfs $SQUASHFS_EXTS drivers/block/cloop $CLOOP_EXTS +zpaq $ZPAQ_EXTS EOT echo "" exit @@ -430,6 +432,18 @@ /^[\t ]+SymLink -> / { link=$3; attr="l"substr(attr, 2) } /^---/ { display() } ' +# Ver Date Time (UT) Attr Size Ratio File +# ----- ---------- -------- ------ ------------ ------ ---- +# > 1 2012-04-10 11:47:56 100644 576 0.2611 /etc/skel/.profile + in_exts $ZPAQ_EXTS && zpaq l "$archive" | awku ' +/^>/ { + date=$3 + time=$4 + attr=$5 + size=$6 + name=$8 + display() +}' # Desktop/up -> .. # lrwxrwxrwx 0/0 0 0 ****** -lhd- 0000 2009-05-03 16:59:03 [2] in_exts $LHA_EXTS && lha v -q -v "$archive" | awk0 ' @@ -472,6 +486,7 @@ arj a $ARJ_EXTS 7zr a\ -ms=off $_7Z_EXTS lha a $LHA_EXTS +zpaq a $ZPAQ_EXTS EOT ;; -r) # remove from archive passed files @@ -489,6 +504,7 @@ arj d $ARJ_EXTS lha d $LHA_EXTS 7zr d $_7Z_EXTS +zpaq d $ZPAQ_EXTS EOT ;; -e) # extract from archive passed files @@ -520,6 +536,7 @@ 7zr x\ -y\ -p- x\ -y $_7Z_EXTS $_7Z_EXTS_X unace N/A x\ -o\ -y ace cabextract -q N/A cab +zpaq x x\ -key $ZPAQ_EXTS EOT loop_fs $opt "$@" ;;