From: Christian Marangi Date: Wed, 22 May 2024 17:35:35 +0000 (+0200) Subject: include/package-pack: add special handling for CONTROL conffiles X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=52e9431731fc4c0b6a2c2e2e76090a0641dc4334;p=openwrt%2Fopenwrt.git include/package-pack: add special handling for CONTROL conffiles Add special handling for CONTROL conffiles. Some packages (base-files) manually append stuff to the CONTROL directory. The CONTROL directory is something for OPKG that is added in the root of the ipkg directory and usually contains postinst, list, and conffiles file. For APK the implementation is different, to keep compatibility with this and maybe other packages, apply manual fixup and check for these corner case. Also check if the CONTROL directory is present and is empty to make sure we don't drop other special file while removing any pending CONTROL directory in the ipkg directory. Link: https://github.com/openwrt/openwrt/pull/15543 Signed-off-by: Christian Marangi --- diff --git a/include/package-pack.mk b/include/package-pack.mk index 5054e8dc85..75acdd185c 100644 --- a/include/package-pack.mk +++ b/include/package-pack.mk @@ -309,6 +309,20 @@ else (cd $$(IDIR_$(1)) && find . -type f,l -printf "/%P\n" > $$(IDIR_$(1))/lib/apk/packages/$(1).list) if [ -f $$(ADIR_$(1))/conffiles ]; then mv $$(ADIR_$(1))/conffiles $$(IDIR_$(1))/lib/apk/packages/$(1).conffiles; fi; + # Some package (base-files) manually append stuff to conffiles + # Append stuff from it and delete the CONTROL directory since everything else should be migrated + if [ -f $$(IDIR_$(1))/CONTROL/conffiles ]; then \ + cat $$(IDIR_$(1))/CONTROL/conffiles >> $$(IDIR_$(1))/lib/apk/packages/$(1).conffiles; \ + rm -rf $$(IDIR_$(1))/CONTROL/conffiles; \ + fi + + if [ -z "$$$$(ls -A $$(IDIR_$(1))/CONTROL 2>/dev/null)" ]; then \ + rm -rf $$(IDIR_$(1))/CONTROL; \ + else \ + echo "CONTROL directory $$(IDIR_$(1))/CONTROL is not empty! This is not right and should be checked!" >&2; \ + exit 1; \ + fi + $(FAKEROOT) $(STAGING_DIR_HOST)/bin/apk mkpkg \ --info "name:$(1)$$(ABIV_$(1))" \ --info "version:$(VERSION)" \