mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 05:29:32 +00:00
rpm-sequoia-crypto-policy: New recipe
This ships a crypto policy file for rpm-sequoia. (From OE-Core rev: 8e499cefab6bfb40b40ae3eb811ca3eb51a7d4bc) Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
fc4bbbbd51
commit
304df6b4c8
@@ -744,6 +744,7 @@ RECIPE_MAINTAINER:pn-rpcbind = "Hongxu Jia <hongxu.jia@windriver.com>"
|
||||
RECIPE_MAINTAINER:pn-rng-tools = "Anuj Mittal <anuj.mittal@intel.com>"
|
||||
RECIPE_MAINTAINER:pn-rpcsvc-proto = "Khem Raj <raj.khem@gmail.com>"
|
||||
RECIPE_MAINTAINER:pn-rpm = "Robert Yang <liezhi.yang@windriver.com>"
|
||||
RECIPE_MAINTAINER:pn-rpm-sequoia-crypto-policy = "Zoltán Böszörményi <zboszor@gmail.com>"
|
||||
RECIPE_MAINTAINER:pn-rsync = "Yi Zhao <yi.zhao@windriver.com>"
|
||||
RECIPE_MAINTAINER:pn-rt-tests = "Unassigned <unassigned@yoctoproject.org>"
|
||||
RECIPE_MAINTAINER:pn-ruby = "Ross Burton <ross.burton@arm.com>"
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
SUMMARY = "Crypto policy for rpm-sequoia"
|
||||
HOMEPAGE = "https://gitlab.com/redhat-crypto/fedora-crypto-policies/"
|
||||
|
||||
LICENSE = "LGPL-2.1-or-later"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=a6f89e2100d9b6cdffcea4f398e37343"
|
||||
|
||||
DEPENDS = "coreutils-native openssl-native make-native"
|
||||
|
||||
inherit allarch python3native
|
||||
|
||||
SRC_URI = "git://gitlab.com/redhat-crypto/fedora-crypto-policies.git;protocol=https;branch=master"
|
||||
|
||||
SRCREV = "032b418a6db842f0eab330eb5909e4604e888728"
|
||||
UPSTREAM_CHECK_COMMITS = "1"
|
||||
|
||||
S = "${UNPACKDIR}/git"
|
||||
|
||||
do_compile () {
|
||||
# Remove most policy variants, leave DEFAULT.pol
|
||||
# It speeds up the build and we only need DEFAULT/rpm-sequoia.
|
||||
rm -f $(ls -1 policies/*.pol | grep -v DEFAULT.pol) || echo nothing to delete
|
||||
|
||||
# Don't validate openssh policy variants.
|
||||
# Validation may fail and these variants are not needed.
|
||||
export OLD_OPENSSH=1
|
||||
|
||||
make ASCIIDOC=echo XSLTPROC=echo
|
||||
}
|
||||
|
||||
do_install () {
|
||||
install -d -m755 ${D}${datadir}/crypto-policies/back-ends
|
||||
install -m644 ${S}/output/DEFAULT/rpm-sequoia.txt ${D}${datadir}/crypto-policies/back-ends/rpm-sequoia.config
|
||||
}
|
||||
|
||||
FILES:${PN} = "${datadir}/crypto-policies/back-ends/*"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
Reference in New Issue
Block a user