mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 10:13:03 +01:00
apt-file calls run-parts with options --list and --regex: root@neopili:~/curro/qtec/qt5022/build-qt5022-cesium/build/tmp/work/bobcat_64-poky-linux/apt/0.9.9.4-r0/apt-0.9.9.4# grep run-parts cmdline/apt-key -rn 187: for trusted in $(run-parts --list $TRUSTEDPARTS --regex '^.*\.gpg$'); do busybox implementation of run-parts does not support --regex. And --list option is not enabled on yocto busybox configuration. (From OE-Core rev: 40dd71a4e0beade84ecd686559243a10e55c3a2d) Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
560 B
BlitzBasic
19 lines
560 B
BlitzBasic
DEPENDS = "curl db"
|
|
RDEPENDS_${PN} = "dpkg bash debianutils"
|
|
LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=0636e73ff0215e8d672dc4c32c317bb3"
|
|
require apt.inc
|
|
|
|
SRC_URI[md5sum] = "72b3283acd9b99868da5545f0499b0da"
|
|
SRC_URI[sha256sum] = "770cb94d7f4c922c2a1516f2b5ec852d3ad668a8c9c3713ac2528c861b7fa79a"
|
|
|
|
require apt-package.inc
|
|
|
|
FILES_${PN} += "${bindir}/apt-key"
|
|
apt-manpages += "doc/apt-key.8"
|
|
|
|
do_install_append() {
|
|
#Write the correct apt-architecture to apt.conf
|
|
APT_CONF=${D}/etc/apt/apt.conf
|
|
echo 'APT::Architecture "${DPKG_ARCH}";' > ${APT_CONF}
|
|
}
|