From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: Re: [PATCH v3 1/2] buildprocess: Add extra metadata to meta-* files Date: Mon, 07 Feb 2022 20:36:09 +0000 Message-ID: <07e7db64-d3f7-3c87-3028-941474fe2d56@ipfire.org> In-Reply-To: <20220131224047.22310-2-robin.roevens@disroot.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1233878146462308462==" List-Id: --===============1233878146462308462== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Reviewed-by: Peter M=C3=BCller > * Add a Summary and Services field to the meta-* addon files. > * Add an INSTALL_INITSCRIPTS macro that takes a space seperated > list of initscripts to install. > * I kept the original INSTALL_INITSCRIPT as a method to install > individual initscripts for backwards compatibility and possible corner > cases. >=20 > Signed-off-by: Robin Roevens > --- > lfs/Config | 11 ++++++++++- > src/pakfire/meta | 2 ++ > 2 files changed, 12 insertions(+), 1 deletion(-) >=20 > diff --git a/lfs/Config b/lfs/Config > index 76a07b088..525c0881a 100644 > --- a/lfs/Config > +++ b/lfs/Config > @@ -301,13 +301,16 @@ define PAK > # Cleanup > rm -rf $(DIR_TMP_PAK) > =20 > - # Create meta file > + # Escape SUMMARY variable and create meta file > + summaryEscaped=3D$$(sed 's/[&/\]/\\&/g' <<< "$(SUMMARY)"); \ > sed \ > -e "s/NAME/$(PROG)/g" \ > + -e "s/SUMMARY/$$summaryEscaped/g" \ > -e "s/VER/$(VER)/g" \ > -e "s/RELEASE/$(PAK_VER)/g" \ > -e "s/DEPS/$(DEPS)/g" \ > -e "s/SIZE/$$(stat --format=3D%s /install/packages/$(PROG)-$(VER)-$(PAK_= VER).ipfire)/g" \ > + -e "s/SERVICES/$(SERVICES)/g" \ > < /usr/src/src/pakfire/meta > /install/packages/meta-$(PROG) > endef > =20 > @@ -315,6 +318,12 @@ define INSTALL_INITSCRIPT > install -m 754 -v $(DIR_SRC)/src/initscripts/packages/$(1) /etc/rc.d/ini= t.d/$(1) > endef > =20 > +define INSTALL_INITSCRIPTS > + for initscript in $(1); do \ > + $(call INSTALL_INITSCRIPT,$$initscript) || exit 1; \ > + done > +endef > + > ifeq "$(BUILD_ARCH)" "$(filter $(BUILD_ARCH),aarch64 riscv64)" > define UPDATE_AUTOMAKE > for i in $$(find $(DIR_APP) -name config.guess -o -name config.sub); do \ > diff --git a/src/pakfire/meta b/src/pakfire/meta > index d97b2a0fa..08e7d53fb 100644 > --- a/src/pakfire/meta > +++ b/src/pakfire/meta > @@ -1,6 +1,8 @@ > Name: NAME > +Summary: SUMMARY > ProgVersion: VER > Release: RELEASE > Size: SIZE > Dependencies: DEPS > File: NAME-VER-RELEASE.ipfire > +Services: SERVICES --===============1233878146462308462==--