wok rev 25813
Fix deps on clonezilla and utf-8 locales on drbl (thanks gibor for report)
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Thu Feb 20 10:57:22 2025 +0100 (2 months ago) |
parents | 44347763141f |
children | fe989cf33f73 |
files | clonezilla/receipt drbl/receipt |
line diff
1.1 --- a/clonezilla/receipt Sat Jan 25 10:33:44 2025 +0000 1.2 +++ b/clonezilla/receipt Thu Feb 20 10:57:22 2025 +0100 1.3 @@ -12,7 +12,7 @@ 1.4 WGET_URL="https://free.nchc.org.tw/drbl-core/old/src/$TARBALL" 1.5 1.6 DEPENDS="bash drbl partclone ntfsprogs ntfs-3g partimage sshfs-fuse \ 1.7 -coreutils-disk coreutils-redirection util-linux-setterm parted" 1.8 +screen dosfslabel gptfdisk coreutils-multicall util-linux-setterm parted" 1.9 BUILD_DEPENDS="" 1.10 1.11 # What is the latest version available today?
2.1 --- a/drbl/receipt Sat Jan 25 10:33:44 2025 +0000 2.2 +++ b/drbl/receipt Thu Feb 20 10:57:22 2025 +0100 2.3 @@ -11,7 +11,7 @@ 2.4 TARBALL="$PACKAGE-$VERSION.tar.xz" 2.5 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 2.6 2.7 -DEPENDS="bash bc binutils dialog disktype dmidecode e2fsprogs ethtool expect \ 2.8 +DEPENDS="bash bc dialog disktype dmidecode e2fsprogs ethtool expect \ 2.9 file gnu-netcat lzop memtest mtools openssh parted partimage perl pigz procps \ 2.10 reiserfsprogs rsync strace tcpdump syslinux systemd udpcast" 2.11 BUILD_DEPENDS="" 2.12 @@ -34,4 +34,10 @@ 2.13 genpkg_rules() 2.14 { 2.15 cp -a $install/* $fs/ 2.16 + 2.17 + # Fix UTF-8 locales 2.18 + lang_path="/usr/share/drbl/lang/bash" 2.19 + for lang in $(ls $fs/$lang_path | grep -v "UTF-8" | grep -v "check-bash-lang"); do 2.20 + ln -sf $lang $fs/$lang_path/$lang.UTF-8 2.21 + done 2.22 }