aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/ipkg-remove
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2019-01-17 17:31:09 +0100
committerJo-Philipp Wich <jo@mein.io>2019-01-19 14:32:12 +0100
commite6bcf1e4acc4901c1803cdccc4b9fabfd6d84c90 (patch)
treef7b66277175ff0ae6baf093db66ca929dfb2b225 /scripts/ipkg-remove
parente3d5b384aa67c5562d59e8745fc6c48a9f2a997d (diff)
downloadupstream-e6bcf1e4acc4901c1803cdccc4b9fabfd6d84c90.tar.gz
upstream-e6bcf1e4acc4901c1803cdccc4b9fabfd6d84c90.tar.bz2
upstream-e6bcf1e4acc4901c1803cdccc4b9fabfd6d84c90.zip
build: add ABI_VERSION to binary package names
Add the ABI_VERSION source makefile variable to the binary package basename and resolve source dependencies on packages with ABI_VERSION set to such expanded names. If for example a package specifies DEPENDS:=libopenssl while the OpenSSL Makefile specifies ABI_VERSION:=1.0.0, the resulting ipk control data dependency will be "Depends: libopenssl1.0.0" and the libopenssl ipk file will be called "libopenssl1.0.0_<version>_<arch>.ipk". The next time a library such as OpenSSL is updated to an incompatible version, the ABI_VERSION shall be changed accordingly to prevent opkg from simply upgrading to an incompatible library without considering the dependencies of already installed packages. Also introduce another "SourceName" control field which is required by the newly introduced "scritps/ipkg-remove" to determine the proper related .ipk files to delete upon buildroot package clean operations. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'scripts/ipkg-remove')
-rwxr-xr-xscripts/ipkg-remove15
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/ipkg-remove b/scripts/ipkg-remove
new file mode 100755
index 0000000000..c0e0ec880f
--- /dev/null
+++ b/scripts/ipkg-remove
@@ -0,0 +1,15 @@
+#!/usr/bin/env bash
+
+sourcename="$1"; shift
+
+for pkg in "$@"; do
+ tar -Ozxf "$pkg" ./control.tar.gz 2>/dev/null | tar -Ozxf - ./control 2>/dev/null | \
+ while read field value; do
+ if [ "$field" = "SourceName:" ] && [ "$value" = "$sourcename" ]; then
+ rm -vf "$pkg"
+ break
+ fi
+ done
+done
+
+exit 0