mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 15:32:12 +02:00
Opkg --add-ignore-recommends use the flag SOLVER_DISFAVOR. If a package is set to be ignored as a recommendee, but there are not other recommends on the package graph, libsolv segfaults. (From OE-Core rev: d3ee06845e18ecf94770ff0970c2a0d6631ed214) Signed-off-by: Alejandro del Castillo <alejandro.delcastillo@ni.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
919 B
BlitzBasic
32 lines
919 B
BlitzBasic
SUMMARY = "Library for solving packages and reading repositories"
|
|
HOMEPAGE = "https://github.com/openSUSE/libsolv"
|
|
BUGTRACKER = "https://github.com/openSUSE/libsolv/issues"
|
|
SECTION = "devel"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.BSD;md5=62272bd11c97396d4aaf1c41bc11f7d8"
|
|
|
|
DEPENDS = "expat zlib"
|
|
|
|
SRC_URI = "git://github.com/openSUSE/libsolv.git \
|
|
file://0001-solver_solve-only-disfavor-recommends-if-there-are-a.patch \
|
|
"
|
|
|
|
SRCREV = "dc7d0f1c3113f2c8217563166906bef3eb5d1ee1"
|
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|
|
|
|
PACKAGECONFIG ??= "rpm"
|
|
PACKAGECONFIG[rpm] = "-DENABLE_RPMMD=ON -DENABLE_RPMDB=ON,,rpm"
|
|
|
|
EXTRA_OECMAKE = "-DLIB=${baselib} -DMULTI_SEMANTICS=ON -DENABLE_COMPLEX_DEPS=ON"
|
|
|
|
PACKAGES =+ "${PN}-tools ${PN}ext"
|
|
|
|
FILES_${PN}-tools = "${bindir}/*"
|
|
FILES_${PN}ext = "${libdir}/${PN}ext.so.*"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|