# HG changeset patch # User Pascal Bellard # Date 1610904192 0 # Node ID 670e65815150f5bec045f7645f0caa4e77723626 # Parent dffc0bc4d50c5aae280bceb87300257e95f273a9 Up tazinst (110) diff -r dffc0bc4d50c -r 670e65815150 mercurial/receipt --- a/mercurial/receipt Sat Jan 16 16:21:11 2021 +0100 +++ b/mercurial/receipt Sun Jan 17 17:23:12 2021 +0000 @@ -14,6 +14,7 @@ PROVIDE="hg" DEPENDS="libssl patch python" BUILD_DEPENDS="openssl-dev patch python-dev" +SUGGESTED="cacerts" CONFIG_FILES="/etc/mercurial/hgweb.config" diff -r dffc0bc4d50c -r 670e65815150 mercurial/stuff/hgweb.config --- a/mercurial/stuff/hgweb.config Sat Jan 16 16:21:11 2021 +0100 +++ b/mercurial/stuff/hgweb.config Sun Jan 17 17:23:12 2021 +0000 @@ -11,3 +11,4 @@ #style = gitweb #allow_archive = gz bz2 #baseurl = / +#cacerts = /etc/ssl/ca-bundle.crt diff -r dffc0bc4d50c -r 670e65815150 syslinux/stuff/iso2exe/taziso --- a/syslinux/stuff/iso2exe/taziso Sat Jan 16 16:21:11 2021 +0100 +++ b/syslinux/stuff/iso2exe/taziso Sun Jan 17 17:23:12 2021 +0000 @@ -693,6 +693,22 @@ rm -f /tmp/data } +filepos() +{ + dotwait "locate files" + ( cd $media; find * -type f | while read f; do + printf "%8d %s\n" $(stat -m "$f" | sed q) "$f" + done | sort -n ) > /tmp/data + rm -f /tmp/wait + if [ "$1" ]; then + cat /tmp/data + else + $DIALOG --clear --title " File start sector " \ + --textbox /tmp/data 0 0 + fi + rm -f /tmp/data +} + gotcdfile() { for i in "$media/$1" "$media/*/$1" "$media/*/isolinux/$1" ; do @@ -1630,6 +1646,7 @@ $(gotisomd5 "isomd5" "Check the ISO image") \ $(cdfile 'md5sum*' "md5" "Check the ISO files") \ $(cdfile 'sha*sum*' "sha" "Check the ISO files") \ +$(menuitem "filepos" "File start sector") \ $(xfile isoinfo "infoiso" "ISO image info") \ $(cdfilex 'bzImage*' "bootiso" "Boot the ISO image") \ $(burnable "burniso" "Burn the ISO image") \ diff -r dffc0bc4d50c -r 670e65815150 tazinst-gui/receipt --- a/tazinst-gui/receipt Sat Jan 16 16:21:11 2021 +0100 +++ b/tazinst-gui/receipt Sun Jan 17 17:23:12 2021 +0000 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="tazinst-gui" -VERSION="109" +VERSION="110" CATEGORY="base-system" SHORT_DESC="SliTaz installer (GUI frontend)" MAINTAINER="domcox@slitaz.org" diff -r dffc0bc4d50c -r 670e65815150 tazinst/receipt --- a/tazinst/receipt Sat Jan 16 16:21:11 2021 +0100 +++ b/tazinst/receipt Sun Jan 17 17:23:12 2021 +0000 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="tazinst" -VERSION="109" +VERSION="110" CATEGORY="base-system" SHORT_DESC="SliTaz installer" MAINTAINER="domcox@slitaz.org"