From: Robin Roevens <robin.roevens@disroot.org>
To: development@lists.ipfire.org
Subject: [PATCH 1/2] buildprocess: Add extra metadata to meta-* files
Date: Thu, 01 Jul 2021 21:15:13 +0200 [thread overview]
Message-ID: <20210701191514.8176-2-robin.roevens@disroot.org> (raw)
In-Reply-To: <20210701191514.8176-1-robin.roevens@disroot.org>
[-- Attachment #1: Type: text/plain, Size: 2075 bytes --]
* 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.
Signed-off-by: Robin Roevens <robin.roevens(a)disroot.org>
---
lfs/Config | 11 ++++++++++-
src/pakfire/meta | 2 ++
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/lfs/Config b/lfs/Config
index 7d98e303b..5f48b0f33 100644
--- a/lfs/Config
+++ b/lfs/Config
@@ -297,13 +297,16 @@ define PAK
# Cleanup
rm -rf $(DIR_TMP_PAK)
- # Create meta file
+ # Escape SUMMARY variable and create meta file
+ summaryEscaped=$$(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=%s /install/packages/$(PROG)-$(VER)-$(PAK_VER).ipfire)/g" \
+ -e "s/SERVICES/$(SERVICES)/g" \
< /usr/src/src/pakfire/meta > /install/packages/meta-$(PROG)
endef
@@ -311,6 +314,12 @@ define INSTALL_INITSCRIPT
install -m 754 -v $(DIR_SRC)/src/initscripts/packages/$(1) /etc/rc.d/init.d/$(1)
endef
+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
--
2.31.1
--
Dit bericht is gescanned op virussen en andere gevaarlijke
inhoud door MailScanner en lijkt schoon te zijn.
next prev parent reply other threads:[~2021-07-01 19:15 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-01 19:15 [PATCH 0/2] buildprocess: additional pak metadata Robin Roevens
2021-07-01 19:15 ` Robin Roevens [this message]
2021-07-01 19:15 ` [PATCH 2/2] buildprocess: Add extra metadata to pak lfs files Robin Roevens
2021-08-12 15:34 ` [PATCH 0/2] buildprocess: additional pak metadata Robin Roevens
2021-08-12 15:37 ` Michael Tremer
2021-08-12 18:28 ` Robin Roevens
2021-08-13 9:18 ` Michael Tremer
2021-08-13 10:49 ` Robin Roevens
2021-08-13 11:19 ` Michael Tremer
-- strict thread matches above, loose matches on Subject: below --
2021-06-24 22:50 Robin Roevens
2021-06-24 22:50 ` [PATCH 1/2] buildprocess: Add extra metadata to meta-* files Robin Roevens
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210701191514.8176-2-robin.roevens@disroot.org \
--to=robin.roevens@disroot.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox