wok-6.x diff coreutils/receipt @ rev 25465
Update some web_site
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Oct 01 08:33:11 2022 +0000 (2022-10-01) |
parents | 17091bc7c301 |
children |
line diff
1.1 --- a/coreutils/receipt Thu Feb 10 18:04:02 2022 +0000 1.2 +++ b/coreutils/receipt Sat Oct 01 08:33:11 2022 +0000 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="coreutils" 1.7 -VERSION="8.31" 1.8 +VERSION="9.0" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="Utilities for using and setting the basic system." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 @@ -11,6 +11,7 @@ 1.13 TARBALL="$PACKAGE-$VERSION.tar.xz" 1.14 WGET_URL="https://ftp.gnu.org/gnu/$PACKAGE/$TARBALL" 1.15 1.16 +SUGGESTED="coreutils-lang" 1.17 SIBLINGS="coreutils-multicall" 1.18 SPLIT="coreutils-character coreutils-command coreutils-conditions 1.19 coreutils-context-system coreutils-context-user 1.20 @@ -53,11 +54,33 @@ 1.21 mkdir -p $install/usr/sbin 1.22 mkdir -p $install/usr/share/man/man8 1.23 1.24 - for i in cat chgrp chmod chown cp date dd df echo false ln ls mkdir \ 1.25 - mknod mv pwd rm rmdir stty sync true uname 1.26 + while read i 1.27 do 1.28 - mv $install/usr/bin/$i $install/bin 1.29 - done 1.30 + mv $install/usr/bin/$i $install/bin 1.31 + done <<EOT 1.32 +cat 1.33 +chgrp 1.34 +chmod 1.35 +chown 1.36 +cp 1.37 +date 1.38 +dd 1.39 +df 1.40 +echo 1.41 +false 1.42 +ln 1.43 +ls 1.44 +mkdir 1.45 +mknod 1.46 +mv 1.47 +pwd 1.48 +rm 1.49 +rmdir 1.50 +stty 1.51 +sync 1.52 +true 1.53 +uname 1.54 +EOT 1.55 mv $install/usr/bin/chroot $install/usr/sbin 1.56 mv $install/usr/share/man/man1/chroot.1 \ 1.57 $install/usr/share/man/man8/chroot.8 1.58 @@ -77,12 +100,24 @@ 1.59 mkdir -p $fs/bin 1.60 1.61 cd $install/usr/bin 1.62 - for i in base64 csplit factor fmt join od paste ptx shred shuf \ 1.63 - split users groups 1.64 + while read i 1.65 do 1.66 cp -a $i $fs/usr/bin 1.67 - done 1.68 - 1.69 + done <<EOT 1.70 +base64 1.71 +csplit 1.72 +factor 1.73 +fmt 1.74 +groups 1.75 +join 1.76 +od 1.77 +paste 1.78 +ptx 1.79 +shred 1.80 +shuf 1.81 +split 1.82 +users 1.83 +EOT 1.84 cp -a $install/bin/cp $fs/bin 1.85 } 1.86