diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-09-15 08:31:36 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-09-17 07:47:07 +0100 |
commit | 1ed0d48cfe3b845d026e97791e985fc3d0e91515 (patch) | |
tree | ac6dbc39c37466d03173afc47ab81dce99f4ff23 /meta/recipes-devtools/libcomps/libcomps_0.1.19.bb | |
parent | 76ce61d42a2de4a560356d722febc4fb4ac3076e (diff) | |
download | poky-1ed0d48cfe3b845d026e97791e985fc3d0e91515.tar.gz |
libcomps: upgrade 0.1.18 -> 0.1.19
(From OE-Core rev: ba42d07fab41ff04f51453e2f4542d8aa2de0f6a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/libcomps/libcomps_0.1.19.bb')
-rw-r--r-- | meta/recipes-devtools/libcomps/libcomps_0.1.19.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/recipes-devtools/libcomps/libcomps_0.1.19.bb b/meta/recipes-devtools/libcomps/libcomps_0.1.19.bb new file mode 100644 index 0000000000..fa1fbc8f0d --- /dev/null +++ b/meta/recipes-devtools/libcomps/libcomps_0.1.19.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | SUMMARY = "Libcomps is alternative for yum.comps library (which is for managing rpm package groups)." | ||
2 | HOMEPAGE = "https://github.com/rpm-software-management/libcomps" | ||
3 | DESCRIPTION = "Libcomps is alternative for yum.comps library. It's written in pure C as library and there's bindings for python2 and python3." | ||
4 | LICENSE = "GPL-2.0-only" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
6 | |||
7 | SRC_URI = "git://github.com/rpm-software-management/libcomps.git;branch=master;protocol=https \ | ||
8 | file://0002-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch \ | ||
9 | " | ||
10 | |||
11 | SRCREV = "9322bdcf06630cc094f094f944d7d0e2cb798b73" | ||
12 | |||
13 | S = "${WORKDIR}/git" | ||
14 | |||
15 | inherit cmake setuptools3-base | ||
16 | |||
17 | DEPENDS += "libxml2 expat libcheck" | ||
18 | |||
19 | EXTRA_OECMAKE = " -DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} -DPYTHON_DESIRED=3" | ||
20 | OECMAKE_SOURCEPATH = "${S}/libcomps" | ||
21 | |||
22 | BBCLASSEXTEND = "native nativesdk" | ||
23 | |||