diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-10-19 17:33:47 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-23 17:42:25 +0100 |
commit | 05c66f906f8f77d562aed2a14f7d53a0243884a9 (patch) | |
tree | b7864a968e4b9e25a77b75696bbebb462286516d /meta/recipes-devtools/librepo/librepo_1.14.2.bb | |
parent | 7b90167839dbf925091a13477b3df7b55d60fde6 (diff) | |
download | poky-05c66f906f8f77d562aed2a14f7d53a0243884a9.tar.gz |
librepo: upgrade 1.14.1 -> 1.14.2
(From OE-Core rev: 65f1e07af359f78f2368d6b36416b819a43c08d8)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/librepo/librepo_1.14.2.bb')
-rw-r--r-- | meta/recipes-devtools/librepo/librepo_1.14.2.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-devtools/librepo/librepo_1.14.2.bb b/meta/recipes-devtools/librepo/librepo_1.14.2.bb new file mode 100644 index 0000000000..e7f8c08e03 --- /dev/null +++ b/meta/recipes-devtools/librepo/librepo_1.14.2.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | SUMMARY = "A library providing C and Python (libcURL like) API \ | ||
2 | for downloading linux repository metadata and packages." | ||
3 | HOMEPAGE = "https://github.com/rpm-software-management/librepo" | ||
4 | DESCRIPTION = "${SUMMARY}" | ||
5 | LICENSE = "LGPLv2.1" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" | ||
7 | |||
8 | SRC_URI = "git://github.com/rpm-software-management/librepo.git \ | ||
9 | file://0002-Do-not-try-to-obtain-PYTHON_INSTALL_DIR-by-running-p.patch \ | ||
10 | file://0004-Set-gpgme-variables-with-pkg-config-not-with-cmake-m.patch \ | ||
11 | " | ||
12 | |||
13 | SRCREV = "3b9a8d17188ba602d139f79b6e61305030f21109" | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | DEPENDS = "curl glib-2.0 openssl attr gpgme libxml2" | ||
18 | |||
19 | inherit cmake distutils3-base pkgconfig | ||
20 | |||
21 | EXTRA_OECMAKE = " \ | ||
22 | -DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} \ | ||
23 | -DPYTHON_DESIRED=3 \ | ||
24 | -DENABLE_TESTS=OFF \ | ||
25 | -DENABLE_DOCS=OFF \ | ||
26 | -DWITH_ZCHUNK=OFF \ | ||
27 | " | ||
28 | |||
29 | BBCLASSEXTEND = "native nativesdk" | ||