c24172cad1
The external script used to generate the package lists for the
LEDE wiki's table of packages [1] and package indexes [2] requires
a "Source:" field in the package lists to find package makefiles.
The package makefiles are used to read the package's Category and Submenu.
The "Source:" field was removed in commit
b4aa3c899c
to reduce package list sizes and lessen opkg issues in low ram devices.
Add a separate package list file with full data to be used by the wiki's script.
It's called Packages.manifest and isn't compressed as it's not necessary.
1. https://lede-project.org/packages/start
2. https://lede-project.org/packages/index/start
Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
31 lines
810 B
Bash
Executable file
31 lines
810 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=$(ls -l $pkg | awk '{print $5}')
|
|
sha256sum=$(openssl dgst -sha256 $pkg | awk '{print $2}')
|
|
# 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
|