mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
a68be42f99
Use `stat -L` instead of `ls -l` to follow symbolic links when obtaining the file size of .ipk archives. Without this change, the size of the symlink, not the size of the target file is encoded in the package index file. Signed-off-by: Jo-Philipp Wich <jo@mein.io> (cherry picked from commitece5cab743
) Fixes:e6af9c017b
("opkg: bump to version 2019-06-14") [ rmilecki: this has to be backported due to the recent opkg update and cb6640381808 ("libopkg: check for file size mismatches") to fix false "opkg_install_pkg: Package size mismatch" errors ] Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
32 lines
772 B
Bash
Executable File
32 lines
772 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
pkg_dir=$1
|
|
|
|
if [ -z $pkg_dir ] || [ ! -d $pkg_dir ]; then
|
|
echo "Usage: ipkg-make-index <package_directory>" >&2
|
|
exit 1
|
|
fi
|
|
|
|
empty=1
|
|
|
|
for pkg in `find $pkg_dir -name '*.ipk' | sort`; do
|
|
empty=
|
|
name="${pkg##*/}"
|
|
name="${name%%_*}"
|
|
[[ "$name" = "kernel" ]] && continue
|
|
[[ "$name" = "libc" ]] && continue
|
|
echo "Generating index for package $pkg" >&2
|
|
file_size=$(stat -L -c%s $pkg)
|
|
sha256sum=$(mkhash sha256 $pkg)
|
|
# Take pains to make variable value sed-safe
|
|
sed_safe_pkg=`echo $pkg | sed -e 's/^\.\///g' -e 's/\\//\\\\\\//g'`
|
|
tar -xzOf $pkg ./control.tar.gz | tar xzOf - ./control | sed -e "s/^Description:/Filename: $sed_safe_pkg\\
|
|
Size: $file_size\\
|
|
SHA256sum: $sha256sum\\
|
|
Description:/"
|
|
echo ""
|
|
done
|
|
[ -n "$empty" ] && echo
|
|
exit 0
|