From b925e419ef6b7931760a6b658d520017660f2df5 Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Sun, 16 Dec 2018 21:30:20 +0100 Subject: [PATCH] buildsystem: add CPE information to ipkg packages and manifest files Common Platform Enumeration (CPE) is a structured naming scheme for information technology systems, software, and packages. This information already exists in some makefiles. In order for the information to be processed further, it should also be added to the manifest file and the control file of ipkg packages. Signed-off-by: Florian Eckert --- include/package-ipkg.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index c4c8f4a36f..569edcbf03 100644 --- a/include/package-ipkg.mk +++ b/include/package-ipkg.mk @@ -173,6 +173,7 @@ $$(call addfield,Depends,$$(Package/$(1)/DEPENDS) )$$(call addfield,LicenseFiles,$(LICENSE_FILES) )$$(call addfield,Section,$(SECTION) )$$(call addfield,Require-User,$(USERID) +)$(if $(PKG_CPE_ID),CPE-ID: $(PKG_CPE_ID) )$(if $(filter hold,$(PKG_FLAGS)),Status: unknown hold not-installed )$(if $(filter essential,$(PKG_FLAGS)),Essential: yes )$(if $(MAINTAINER),Maintainer: $(MAINTAINER)