mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 18:32:13 +02:00
In sdk, call createrepo-c failed with:
...
$ createrepo_c --update ./test_repo/rpm
Directory walk started Critical: Failed to detect compression for file
./test_repo/rpm/cortexa72/hello-2.10-r0.cortexa72.rpm: magic_load() failed: could not find any valid magic files!
...
Since commit [ea666fbc74 createrepo-c: set path to magic database for
native and nativesdk] applied, the MAGIC is incorrectly assigned.
The variable datadir will be expanded automatically for nativesdk,
do not need to add prefix ${SDKPATHNATIVE} to MAGIC
(From OE-Core rev: 54368f1b02e1ac4aa068515730a8c8bcd3683eb3)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
41 lines
1.6 KiB
BlitzBasic
41 lines
1.6 KiB
BlitzBasic
DESCRIPTION = "C implementation of createrepo."
|
|
HOMEPAGE = "https://github.com/rpm-software-management/createrepo_c/wiki"
|
|
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
SRC_URI = "git://github.com/rpm-software-management/createrepo_c \
|
|
file://0001-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch \
|
|
"
|
|
|
|
SRCREV = "cb74969736bdea86465e85feeceb895ff7a42610"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS = "expat curl glib-2.0 libxml2 openssl bzip2 zlib file sqlite3 xz rpm"
|
|
DEPENDS:append:class-native = " file-replacement-native"
|
|
|
|
inherit cmake pkgconfig bash-completion distutils3-base
|
|
|
|
EXTRA_OECMAKE = " -DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} -DPYTHON_DESIRED=3 -DWITH_ZCHUNK=OFF -DENABLE_DRPM=OFF -DWITH_LIBMODULEMD=OFF"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
# Direct createrepo to read rpm configuration from our sysroot, not the one it was compiled in
|
|
do_install:append:class-native() {
|
|
create_wrapper ${D}/${bindir}/createrepo_c \
|
|
RPM_CONFIGDIR=${STAGING_LIBDIR_NATIVE}/rpm \
|
|
MAGIC=${STAGING_DIR_NATIVE}${datadir_native}/misc/magic.mgc
|
|
create_wrapper ${D}/${bindir}/modifyrepo_c \
|
|
MAGIC=${STAGING_DIR_NATIVE}${datadir_native}/misc/magic.mgc
|
|
}
|
|
|
|
do_install:append:class-nativesdk() {
|
|
create_wrapper ${D}/${bindir}/createrepo_c \
|
|
RPM_CONFIGDIR=${SDKPATHNATIVE}${libdir_nativesdk}/rpm \
|
|
MAGIC=${datadir}/misc/magic.mgc
|
|
create_wrapper ${D}/${bindir}/modifyrepo_c \
|
|
MAGIC=${datadir}/misc/magic.mgc
|
|
rm -rf ${D}/etc
|
|
}
|