blob: 46f9ee8548b2eab4860e81ae0df3c77cd1570093 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
SUMMARY = "An OpenPGP backend for rpm using Sequoia PGP"
HOMEPAGE = "https://sequoia-pgp.org/"
# The license line is taken verbatim from Fedora's specfile
# with formatting differences for Yocto. (AND -> &, OR -> |)
# https://src.fedoraproject.org/rpms/rust-rpm-sequoia/blob/rawhide/f/rust-rpm-sequoia.spec
LICENSE = "LGPL-2.0-or-later & Apache-2.0 & BSL-1.0 & MIT & Unicode-DFS-2016 & (Apache-2.0 | MIT) & (MIT | Apache-2.0 | Zlib) & (Unlicense | MIT)"
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=f0ff5ff7747cf7d394079c6ae87f5f0c"
DEPENDS = "openssl"
inherit pkgconfig rust cargo cargo-update-recipe-crates ptest-cargo
SRC_URI = "git://github.com/rpm-software-management/rpm-sequoia.git;protocol=https;branch=main \
file://0001-Use-optional-env-vars-to-force-runtime-paths-in-test.patch \
"
SRCREV = "0667e04ae7fb8cf0490919978d69883d16400e41"
require ${BPN}-crates.inc
CARGO_BUILD_FLAGS += "--no-default-features --features crypto-openssl"
CARGO_INSTALL_LIBRARIES = "1"
do_compile:prepend () {
# rpm-sequoia.pc is generated in the source directory
# but the target directory does not exist there.
mkdir -p ${S}/target/${BUILD_DIR}
# From rpm-sequoia's README.md:
#
# We also set two environment variables when calling `cargo build`:
# * `PREFIX` is the prefix that will be used in the generated
# `rpm-sequoia.pc` file. It defaults to `/usr/local`.
# * `LIBDIR` is the installed library path listed in the generated
# metadata. It can be an absolute path or one based on `${prefix}`,
# and defaults to `${prefix}/lib`.
export PREFIX="${prefix}"
export LIBDIR="${libdir}"
}
# By default, ptest binaries contain host build dir paths.
# Use custom environment variables to force these paths to match the target instead.
do_compile_ptest_cargo:prepend() {
os.environ["FORCE_RUNTIME_PATH_LIB"] = d.getVar("libdir")
os.environ["FORCE_RUNTIME_PATH_SRC"] = d.getVar("PTEST_PATH")
}
do_install:append () {
# Move the library to the correct location expected by rpm-sequoia.pc
mkdir -p ${D}${libdir}
mv ${D}${rustlibdir}/librpm_sequoia.so ${D}${libdir}/librpm_sequoia.so.1
ln -s librpm_sequoia.so.1 ${D}${libdir}/librpm_sequoia.so
rmdir -p --ignore-fail-on-non-empty ${D}${rustlibdir}
# rpm-sequoia does not install its pkgconfig file. Do it manually.
mkdir -p ${D}${libdir}/pkgconfig
install -m644 ${S}/target/${BUILD_DIR}/rpm-sequoia.pc ${D}${libdir}/pkgconfig
}
do_install_ptest:append () {
install -d ${D}${PTEST_PATH}/src
install -m 644 ${S}/src/symbols.txt ${D}${PTEST_PATH}/src/symbols.txt
}
# Tests need objdump
# ptest requires a symlinked library that is only present in the -dev package,
# so we add the -dev to runtime dependencies.
# The "dev-deps" QA check is skipped to avoid warnings about this dev package dependency.
RDEPENDS:${PN}-ptest += "binutils ${PN}-dev"
INSANE_SKIP:${PN}-ptest += "dev-deps"
RDEPENDS:${PN} = "rpm-sequoia-crypto-policy"
PACKAGE_WRITE_DEPS += "rpm-sequoia-crypto-policy-native"
BBCLASSEXTEND = "native"
|