diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-05-24 11:13:44 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-05-25 22:36:09 +0100 |
commit | c8559d16c26da117aa79222c882ad37b50002730 (patch) | |
tree | 3e51070f75396c5e336538722fce035e1255375f /meta/recipes-devtools/libdnf/libdnf_0.62.0.bb | |
parent | 0c06a3b65d38ca8b06187d3392e4e48b7ac4f8fc (diff) | |
download | poky-c8559d16c26da117aa79222c882ad37b50002730.tar.gz |
libdnf: update 0.62.0 -> 0.63.0
(From OE-Core rev: 5d515290ba31c35d860d03e5313239610025f2da)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/libdnf/libdnf_0.62.0.bb')
-rw-r--r-- | meta/recipes-devtools/libdnf/libdnf_0.62.0.bb | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-devtools/libdnf/libdnf_0.62.0.bb b/meta/recipes-devtools/libdnf/libdnf_0.62.0.bb deleted file mode 100644 index e2c2c41c6a..0000000000 --- a/meta/recipes-devtools/libdnf/libdnf_0.62.0.bb +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | SUMMARY = "Library providing simplified C and Python API to libsolv" | ||
2 | HOMEPAGE = "https://github.com/rpm-software-management/libdnf" | ||
3 | DESCRIPTION = "This library provides a high level package-manager. It's core library of dnf, PackageKit and rpm-ostree. It's replacement for deprecated hawkey library which it contains inside and uses librepo under the hood." | ||
4 | LICENSE = "LGPLv2.1+" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" | ||
6 | |||
7 | SRC_URI = "git://github.com/rpm-software-management/libdnf;branch=dnf-4-master \ | ||
8 | file://0001-FindGtkDoc.cmake-drop-the-requirement-for-GTKDOC_SCA.patch \ | ||
9 | file://0004-Set-libsolv-variables-with-pkg-config-cmake-s-own-mo.patch \ | ||
10 | file://0001-Get-parameters-for-both-libsolv-and-libsolvext-libdn.patch \ | ||
11 | file://0001-Add-WITH_TESTS-option.patch \ | ||
12 | file://0001-Look-fo-sphinx-only-if-documentation-is-actually-ena.patch \ | ||
13 | file://enable_test_data_dir_set.patch \ | ||
14 | file://0001-libdnf-config.h-avoid-the-use-of-non-portable-__WORD.patch \ | ||
15 | " | ||
16 | |||
17 | SRCREV = "9a0e17562b19586b3ffa70fa93eb961b558794c7" | ||
18 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)" | ||
19 | |||
20 | S = "${WORKDIR}/git" | ||
21 | |||
22 | DEPENDS = "glib-2.0 libsolv libcheck librepo rpm gtk-doc libmodulemd json-c swig-native" | ||
23 | |||
24 | inherit gtk-doc gobject-introspection cmake pkgconfig distutils3-base | ||
25 | |||
26 | EXTRA_OECMAKE = " -DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} -DWITH_MAN=OFF -DPYTHON_DESIRED=3 \ | ||
27 | ${@bb.utils.contains('GI_DATA_ENABLED', 'True', '-DWITH_GIR=ON', '-DWITH_GIR=OFF', d)} \ | ||
28 | -DWITH_TESTS=OFF \ | ||
29 | -DWITH_ZCHUNK=OFF \ | ||
30 | -DWITH_HTML=OFF \ | ||
31 | " | ||
32 | EXTRA_OECMAKE_append_class-native = " -DWITH_GIR=OFF" | ||
33 | EXTRA_OECMAKE_append_class-nativesdk = " -DWITH_GIR=OFF" | ||
34 | |||
35 | BBCLASSEXTEND = "native nativesdk" | ||
36 | PNBLACKLIST[libdnf] ?= "${@bb.utils.contains('PACKAGE_CLASSES', 'package_rpm', '', 'Does not build without package_rpm in PACKAGE_CLASSES due disabled rpm support in libsolv', d)}" | ||
37 | |||