diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2023-10-13 16:58:56 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-10-19 13:38:57 +0100 |
commit | 2c6a1cd707994d321c785c497467baa647d1aed3 (patch) | |
tree | b6248997d584379c99ff5b8c46b7f13d0803ec7f /meta/recipes-devtools/libcomps/libcomps_0.1.20.bb | |
parent | b044cf88406d0dabc20e2d9106543996353b50fe (diff) | |
download | poky-2c6a1cd707994d321c785c497467baa647d1aed3.tar.gz |
libcomps: upgrade 0.1.19 -> 0.1.20
0001-libcomps-Use-Py_hash_t-instead-of-long-in-PyCOMPS_ha.patch
removed since it's included in 0.1.20
(From OE-Core rev: 12316f4746352495c89e2f9808a2180d582ba29e)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/libcomps/libcomps_0.1.20.bb')
-rw-r--r-- | meta/recipes-devtools/libcomps/libcomps_0.1.20.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-devtools/libcomps/libcomps_0.1.20.bb b/meta/recipes-devtools/libcomps/libcomps_0.1.20.bb new file mode 100644 index 0000000000..1f59c5ea1e --- /dev/null +++ b/meta/recipes-devtools/libcomps/libcomps_0.1.20.bb | |||
@@ -0,0 +1,25 @@ | |||
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 = "854fbb9fe733b774981e1ffcf825b2d2ce0f8072" | ||
12 | |||
13 | S = "${WORKDIR}/git" | ||
14 | |||
15 | inherit cmake setuptools3-base | ||
16 | |||
17 | DEPENDS = "expat libxml2 zlib" | ||
18 | |||
19 | EXTRA_OECMAKE = "-DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} \ | ||
20 | -DENABLE_DOCS=OFF \ | ||
21 | -DENABLE_TESTS=OFF" | ||
22 | |||
23 | OECMAKE_SOURCEPATH = "${S}/libcomps" | ||
24 | |||
25 | BBCLASSEXTEND = "native nativesdk" | ||