diff options
author | Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> | 2019-08-13 20:13:27 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-14 17:33:49 +0100 |
commit | 48ce05fba30365786cc461a410dc7f7846e0b135 (patch) | |
tree | 16d2aae7ea6e65651d8ecee72362201507c335af /meta/recipes-devtools/librepo | |
parent | 9addf1c35185165a79ba590143dc188de91a10eb (diff) | |
download | poky-48ce05fba30365786cc461a410dc7f7846e0b135.tar.gz |
librepo: update to 1.10.5
Also cleanedup the recipe.
(From OE-Core rev: 565aae4b4c1302a8a962a9f444d5382ea1043f40)
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/librepo')
-rw-r--r-- | meta/recipes-devtools/librepo/librepo_1.10.5.bb (renamed from meta/recipes-devtools/librepo/librepo_1.10.4.bb) | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/meta/recipes-devtools/librepo/librepo_1.10.4.bb b/meta/recipes-devtools/librepo/librepo_1.10.5.bb index 50c9a82e74..87d64bf3a0 100644 --- a/meta/recipes-devtools/librepo/librepo_1.10.4.bb +++ b/meta/recipes-devtools/librepo/librepo_1.10.5.bb | |||
@@ -1,4 +1,5 @@ | |||
1 | SUMMARY = " A library providing C and Python (libcURL like) API for downloading linux repository metadata and packages." | 1 | SUMMARY = "A library providing C and Python (libcURL like) API \ |
2 | for downloading linux repository metadata and packages." | ||
2 | LICENSE = "LGPLv2.1" | 3 | LICENSE = "LGPLv2.1" |
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" |
4 | 5 | ||
@@ -7,7 +8,7 @@ SRC_URI = "git://github.com/rpm-software-management/librepo.git \ | |||
7 | file://0004-Set-gpgme-variables-with-pkg-config-not-with-cmake-m.patch \ | 8 | file://0004-Set-gpgme-variables-with-pkg-config-not-with-cmake-m.patch \ |
8 | " | 9 | " |
9 | 10 | ||
10 | SRCREV = "9b2df22dbcdf9352672334098fff56335aa10423" | 11 | SRCREV = "385e2ced1083cac0bcb19e30500311f6923e6dfc" |
11 | 12 | ||
12 | S = "${WORKDIR}/git" | 13 | S = "${WORKDIR}/git" |
13 | 14 | ||
@@ -15,7 +16,12 @@ DEPENDS = "curl glib-2.0 openssl attr gpgme libxml2" | |||
15 | 16 | ||
16 | inherit cmake distutils3-base pkgconfig | 17 | inherit cmake distutils3-base pkgconfig |
17 | 18 | ||
18 | EXTRA_OECMAKE = " -DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} -DPYTHON_DESIRED=3 -DENABLE_TESTS=OFF -DENABLE_DOCS=OFF -DWITH_ZCHUNK=OFF" | 19 | EXTRA_OECMAKE = " \ |
20 | -DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} \ | ||
21 | -DPYTHON_DESIRED=3 \ | ||
22 | -DENABLE_TESTS=OFF \ | ||
23 | -DENABLE_DOCS=OFF \ | ||
24 | -DWITH_ZCHUNK=OFF \ | ||
25 | " | ||
19 | 26 | ||
20 | BBCLASSEXTEND = "native nativesdk" | 27 | BBCLASSEXTEND = "native nativesdk" |
21 | |||