mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
Convert to new override syntax
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
@@ -32,5 +32,5 @@ breakpad_package_preprocess () {
|
||||
|
||||
PACKAGES =+ "${PN}-breakpad"
|
||||
|
||||
FILES_${PN}-breakpad = "/usr/share/breakpad-syms"
|
||||
FILES:${PN}-breakpad = "/usr/share/breakpad-syms"
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
DEPENDS_prepend = "virtual/libintl intltool-native "
|
||||
DEPENDS:prepend = "virtual/libintl intltool-native "
|
||||
GPE_TARBALL_SUFFIX ?= "gz"
|
||||
SRC_URI = "${GPE_MIRROR}/${BP}.tar.${GPE_TARBALL_SUFFIX}"
|
||||
FILES_${PN} += "${datadir}/gpe ${datadir}/application-registry"
|
||||
FILES:${PN} += "${datadir}/gpe ${datadir}/application-registry"
|
||||
SECTION ?= "gpe"
|
||||
|
||||
inherit gettext
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
|
||||
inherit python3native
|
||||
|
||||
DEPENDS_append = " itstool-native"
|
||||
DEPENDS:append = " itstool-native"
|
||||
|
||||
@@ -16,7 +16,7 @@ inherit breakpad
|
||||
|
||||
PACKAGE_PREPROCESS_FUNCS += "symbol_file_preprocess"
|
||||
PACKAGES =+ "${PN}-socorro-syms"
|
||||
FILES_${PN}-socorro-syms = "/usr/share/socorro-syms"
|
||||
FILES:${PN}-socorro-syms = "/usr/share/socorro-syms"
|
||||
|
||||
|
||||
python symbol_file_preprocess() {
|
||||
|
||||
@@ -101,6 +101,6 @@ SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \
|
||||
source-code-pro-fonts->fontconfig \
|
||||
"
|
||||
|
||||
DEFAULT_TEST_SUITES_pn-meta-oe-ptest-image = " ${PTESTTESTSUITE}"
|
||||
DEFAULT_TEST_SUITES:pn-meta-oe-ptest-image = " ${PTESTTESTSUITE}"
|
||||
|
||||
NON_MULTILIB_RECIPES_append = " crash"
|
||||
NON_MULTILIB_RECIPES:append = " crash"
|
||||
|
||||
+1
-1
@@ -1,3 +1,3 @@
|
||||
RDEPENDS_packagegroup-meta-oe-graphics +="\
|
||||
RDEPENDS:packagegroup-meta-oe-graphics +="\
|
||||
openbox-xdgmenu \
|
||||
"
|
||||
|
||||
@@ -33,4 +33,4 @@ do_install() {
|
||||
install -m 0755 openbox-xdgmenu ${D}${bindir}
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} += "virtual/x-terminal-emulator"
|
||||
RDEPENDS:${PN} += "virtual/x-terminal-emulator"
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ SRCREV = "42e96b13dda2afabbcec2622612d13495a415caa"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
RDEPENDS_${PN} = "python3 python3-setuptools-scm"
|
||||
RDEPENDS:${PN} = "python3 python3-setuptools-scm"
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
DESCRIPTION = "LIRC is a package that allows you to decode and send infra-red signals of many commonly used remote controls."
|
||||
DESCRIPTION_append_lirc = " This package contains the lirc daemon, libraries and tools."
|
||||
DESCRIPTION_append_lirc-exec = " This package contains a daemon that runs programs on IR signals."
|
||||
DESCRIPTION_append_lirc-remotes = " This package contains some config files for remotes."
|
||||
DESCRIPTION_append_lirc-nslu2example = " This package contains a working config for RC5 remotes and a modified NSLU2."
|
||||
DESCRIPTION:append_lirc = " This package contains the lirc daemon, libraries and tools."
|
||||
DESCRIPTION:append_lirc-exec = " This package contains a daemon that runs programs on IR signals."
|
||||
DESCRIPTION:append_lirc-remotes = " This package contains some config files for remotes."
|
||||
DESCRIPTION:append_lirc-nslu2example = " This package contains a working config for RC5 remotes and a modified NSLU2."
|
||||
HOMEPAGE = "http://www.lirc.org"
|
||||
SECTION = "console/network"
|
||||
LICENSE = "GPLv2"
|
||||
@@ -24,10 +24,10 @@ SRC_URI[md5sum] = "86c3f8e4efaba10571addb8313d1e040"
|
||||
SRC_URI[sha256sum] = "8b753c60df2a7f5dcda2db72c38e448ca300c3b4f6000c1501fcb0bd5df414f2"
|
||||
|
||||
SYSTEMD_PACKAGES = "lirc lirc-exec"
|
||||
SYSTEMD_SERVICE_${PN} = "lircd.service lircmd.service lircd-setup.service lircd-uinput.service"
|
||||
SYSTEMD_SERVICE_${PN}-exec = "irexec.service"
|
||||
SYSTEMD_AUTO_ENABLE_lirc = "enable"
|
||||
SYSTEMD_AUTO_ENABLE_lirc-exec = "enable"
|
||||
SYSTEMD_SERVICE:${PN} = "lircd.service lircmd.service lircd-setup.service lircd-uinput.service"
|
||||
SYSTEMD_SERVICE:${PN}-exec = "irexec.service"
|
||||
SYSTEMD_AUTO_ENABLE:lirc = "enable"
|
||||
SYSTEMD_AUTO_ENABLE:lirc-exec = "enable"
|
||||
|
||||
inherit autotools pkgconfig systemd python3native distutils-common-base
|
||||
|
||||
@@ -43,12 +43,12 @@ CACHED_CONFIGUREVARS = "HAVE_WORKING_POLL=yes"
|
||||
#EXTRA_OEMAKE = 'SUBDIRS="lib daemons tools"'
|
||||
|
||||
# Ensure python-pkg/VERSION exists
|
||||
do_configure_append() {
|
||||
do_configure:append() {
|
||||
cp ${S}/VERSION ${S}/python-pkg/
|
||||
}
|
||||
|
||||
# Create PYTHON_TARBALL which LIRC needs for install-nodist_pkgdataDATA
|
||||
do_install_prepend() {
|
||||
do_install:prepend() {
|
||||
rm -rf ${WORKDIR}/${PN}-${PV}/python-pkg/dist/
|
||||
mkdir ${WORKDIR}/${PN}-${PV}/python-pkg/dist/
|
||||
tar --exclude='${WORKDIR}/${PN}-${PV}/python-pkg/*' -czf ${WORKDIR}/${PN}-${PV}/python-pkg/dist/${PN}-${PV}.tar.gz ${S}
|
||||
@@ -57,7 +57,7 @@ do_install_prepend() {
|
||||
# In code, path to python is a variable that is replaced with path to native version of it
|
||||
# during the configure stage, e.g ../recipe-sysroot-native/usr/bin/python3-native/python3.
|
||||
# Replace it with #!/usr/bin/env python3
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
sed -i '1c#!/usr/bin/env python3' ${D}${bindir}/lirc-setup \
|
||||
${D}${PYTHON_SITEPACKAGES_DIR}/lirc-setup/lirc-setup \
|
||||
${D}${bindir}/irtext2udp \
|
||||
@@ -82,28 +82,28 @@ do_install_append() {
|
||||
|
||||
PACKAGES =+ "${PN}-contrib ${PN}-exec ${PN}-plugins ${PN}-python"
|
||||
|
||||
RDEPENDS_${PN} = "bash python3"
|
||||
RDEPENDS_${PN}-exec = "${PN}"
|
||||
RDEPENDS_${PN}-python = "python3-shell python3-pyyaml python3-datetime python3-netclient python3-stringold"
|
||||
RDEPENDS:${PN} = "bash python3"
|
||||
RDEPENDS:${PN}-exec = "${PN}"
|
||||
RDEPENDS:${PN}-python = "python3-shell python3-pyyaml python3-datetime python3-netclient python3-stringold"
|
||||
|
||||
RRECOMMENDS_${PN} = "${PN}-exec ${PN}-plugins"
|
||||
RRECOMMENDS:${PN} = "${PN}-exec ${PN}-plugins"
|
||||
|
||||
FILES_${PN}-plugins = "${libdir}/lirc/plugins/*.so ${datadir}/lirc/configs"
|
||||
FILES_${PN}-contrib = "${datadir}/lirc/contrib"
|
||||
FILES_${PN}-exec = "${bindir}/irexec ${sysconfdir}/lircexec ${systemd_unitdir}/system/irexec.service"
|
||||
FILES_${PN} += "${systemd_unitdir}/system/lircexec.init"
|
||||
FILES_${PN} += "${systemd_unitdir}/system/lircd.service"
|
||||
FILES_${PN} += "${systemd_unitdir}/system/lircd.socket"
|
||||
FILES_${PN} += "${libdir}/tmpfiles.d/lirc.conf"
|
||||
FILES_${PN}-dbg += "${libdir}/lirc/plugins/.debug"
|
||||
FILES_${PN}-python += "${bindir}/irdb-get ${bindir}/irtext2udp ${bindir}/lircd-setup ${bindir}/pronto2lirc ${libdir}/python*/site-packages"
|
||||
FILES:${PN}-plugins = "${libdir}/lirc/plugins/*.so ${datadir}/lirc/configs"
|
||||
FILES:${PN}-contrib = "${datadir}/lirc/contrib"
|
||||
FILES:${PN}-exec = "${bindir}/irexec ${sysconfdir}/lircexec ${systemd_unitdir}/system/irexec.service"
|
||||
FILES:${PN} += "${systemd_unitdir}/system/lircexec.init"
|
||||
FILES:${PN} += "${systemd_unitdir}/system/lircd.service"
|
||||
FILES:${PN} += "${systemd_unitdir}/system/lircd.socket"
|
||||
FILES:${PN} += "${libdir}/tmpfiles.d/lirc.conf"
|
||||
FILES:${PN}-dbg += "${libdir}/lirc/plugins/.debug"
|
||||
FILES:${PN}-python += "${bindir}/irdb-get ${bindir}/irtext2udp ${bindir}/lircd-setup ${bindir}/pronto2lirc ${libdir}/python*/site-packages"
|
||||
|
||||
INITSCRIPT_PACKAGES = "lirc lirc-exec"
|
||||
INITSCRIPT_NAME_lirc-exec = "lircexec"
|
||||
INITSCRIPT_PARAMS_lirc-exec = "defaults 21"
|
||||
INITSCRIPT_NAME:lirc-exec = "lircexec"
|
||||
INITSCRIPT_PARAMS:lirc-exec = "defaults 21"
|
||||
|
||||
# this is for distributions that don't use udev
|
||||
pkg_postinst_${PN}_append() {
|
||||
pkg_postinst:${PN}:append() {
|
||||
if [ ! -c $D/dev/lirc -a ! -f /sbin/udevd ]; then mknod $D/dev/lirc c 61 0; fi
|
||||
}
|
||||
|
||||
|
||||
+4
-4
@@ -14,7 +14,7 @@ inherit pypi setuptools3
|
||||
|
||||
PYPI_PACKAGE = "thingsboard-gateway"
|
||||
|
||||
RDEPENDS_${PN} += " python3-jsonpath-rw \
|
||||
RDEPENDS:${PN} += " python3-jsonpath-rw \
|
||||
python3-regex \
|
||||
python3-paho-mqtt \
|
||||
python3-pyyaml \
|
||||
@@ -45,14 +45,14 @@ SRC_URI += "file://bacnet.json \
|
||||
inherit systemd
|
||||
|
||||
SYSTEMD_PACKAGES = "${PN}"
|
||||
SYSTEMD_SERVICE_${PN} = "thingsboard-gateway.service"
|
||||
SYSTEMD_SERVICE:${PN} = "thingsboard-gateway.service"
|
||||
|
||||
FILES_${PN} += "/etc \
|
||||
FILES:${PN} += "/etc \
|
||||
/lib \
|
||||
/usr \
|
||||
"
|
||||
|
||||
do_install_append(){
|
||||
do_install:append(){
|
||||
|
||||
install -d ${D}${sysconfdir}/thingsboard-gateway/config
|
||||
|
||||
|
||||
+5
-5
@@ -1,20 +1,20 @@
|
||||
RDEPENDS_packagegroup-meta-oe-devtools += "\
|
||||
RDEPENDS:packagegroup-meta-oe-devtools += "\
|
||||
python3-distutils-extra \
|
||||
rwmem \
|
||||
speedtest-cli \
|
||||
mongodb \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-connectivity += "\
|
||||
RDEPENDS:packagegroup-meta-oe-connectivity += "\
|
||||
lirc \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-extended += "\
|
||||
RDEPENDS:packagegroup-meta-oe-extended += "\
|
||||
lcdproc \
|
||||
mozjs \
|
||||
"
|
||||
RDEPENDS_packagegroup-meta-oe-support += "\
|
||||
RDEPENDS:packagegroup-meta-oe-support += "\
|
||||
smem \
|
||||
"
|
||||
RDEPENDS_packagegroup-meta-oe-extended_remove_libc-musl = "lcdproc"
|
||||
RDEPENDS:packagegroup-meta-oe-extended:remove:libc-musl = "lcdproc"
|
||||
|
||||
|
||||
@@ -33,13 +33,13 @@ SRC_URI = "git://github.com/mongodb/mongo.git;branch=v4.4 \
|
||||
file://0001-Use-explicit-typecast-to-size_t.patch \
|
||||
file://PTHREAD_STACK_MIN.patch \
|
||||
"
|
||||
SRC_URI_append_libc-musl ="\
|
||||
SRC_URI:append:libc-musl ="\
|
||||
file://0001-Mark-one-of-strerror_r-implementation-glibc-specific.patch \
|
||||
file://0002-Fix-default-stack-size-to-256K.patch \
|
||||
file://0004-wiredtiger-Disable-strtouq-on-musl.patch \
|
||||
"
|
||||
|
||||
SRC_URI_append_toolchain-clang = "\
|
||||
SRC_URI:append:toolchain-clang = "\
|
||||
file://0001-asio-Dont-use-experimental-with-clang.patch \
|
||||
"
|
||||
|
||||
@@ -51,20 +51,20 @@ COMPATIBLE_HOST ?= '(x86_64|i.86|powerpc64|arm|aarch64).*-linux'
|
||||
PACKAGECONFIG ??= "tcmalloc system-pcre"
|
||||
# gperftools compilation fails for arm below v7 because of missing support of
|
||||
# dmb operation. So we use system-allocator instead of tcmalloc
|
||||
PACKAGECONFIG_remove_armv6 = "tcmalloc"
|
||||
PACKAGECONFIG_remove_libc-musl = "tcmalloc"
|
||||
PACKAGECONFIG_remove_riscv64 = "tcmalloc"
|
||||
PACKAGECONFIG_remove_riscv32 = "tcmalloc"
|
||||
PACKAGECONFIG:remove:armv6 = "tcmalloc"
|
||||
PACKAGECONFIG:remove:libc-musl = "tcmalloc"
|
||||
PACKAGECONFIG:remove:riscv64 = "tcmalloc"
|
||||
PACKAGECONFIG:remove:riscv32 = "tcmalloc"
|
||||
|
||||
PACKAGECONFIG[tcmalloc] = "--use-system-tcmalloc,--allocator=system,gperftools,"
|
||||
PACKAGECONFIG[shell] = ",--js-engine=none,,"
|
||||
PACKAGECONFIG[system-pcre] = "--use-system-pcre,,libpcre,"
|
||||
|
||||
MONGO_ARCH ?= "${HOST_ARCH}"
|
||||
MONGO_ARCH_powerpc64le = "ppc64le"
|
||||
MONGO_ARCH:powerpc64le = "ppc64le"
|
||||
WIREDTIGER ?= "off"
|
||||
WIREDTIGER_x86-64 = "on"
|
||||
WIREDTIGER_aarch64 = "on"
|
||||
WIREDTIGER:x86-64 = "on"
|
||||
WIREDTIGER:aarch64 = "on"
|
||||
|
||||
EXTRA_OESCONS = "PREFIX=${prefix} \
|
||||
DESTDIR=${D} \
|
||||
@@ -85,7 +85,7 @@ EXTRA_OESCONS = "PREFIX=${prefix} \
|
||||
|
||||
|
||||
USERADD_PACKAGES = "${PN}"
|
||||
USERADD_PARAM_${PN} = "--system --no-create-home --home-dir /var/run/${BPN} --shell /bin/false --user-group ${BPN}"
|
||||
USERADD_PARAM:${PN} = "--system --no-create-home --home-dir /var/run/${BPN} --shell /bin/false --user-group ${BPN}"
|
||||
|
||||
|
||||
scons_do_compile() {
|
||||
@@ -123,6 +123,6 @@ scons_do_install() {
|
||||
chown ${PN}:${PN} ${D}${localstatedir}/log/${BPN}
|
||||
}
|
||||
|
||||
CONFFILES_${PN} = "${sysconfdir}/mongod.conf"
|
||||
CONFFILES:${PN} = "${sysconfdir}/mongod.conf"
|
||||
|
||||
SYSTEMD_SERVICE_${PN} = "mongod.service"
|
||||
SYSTEMD_SERVICE:${PN} = "mongod.service"
|
||||
|
||||
@@ -11,16 +11,16 @@ S = "${WORKDIR}/git"
|
||||
|
||||
inherit cmake python3native
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
install -Dm 0755 ${S}/generator/nanopb_generator.py ${D}${bindir}/nanopb_generator.py
|
||||
install -Dm 0755 ${S}/generator/protoc-gen-nanopb ${D}${bindir}/protoc-gen-nanopb
|
||||
install -Dm 0755 ${S}/generator/proto/__init__.py ${D}${PYTHON_SITEPACKAGES_DIR}/proto/__init__.py
|
||||
}
|
||||
|
||||
FILES_${PN} += "${PYTHON_SITEPACKAGES_DIR}"
|
||||
FILES_${PN}-dev += "${libdir}/cmake/${BPN}"
|
||||
FILES:${PN} += "${PYTHON_SITEPACKAGES_DIR}"
|
||||
FILES:${PN}-dev += "${libdir}/cmake/${BPN}"
|
||||
|
||||
RDEPENDS_${PN} += "\
|
||||
RDEPENDS:${PN} += "\
|
||||
${PYTHON_PN}-protobuf \
|
||||
protobuf-compiler \
|
||||
"
|
||||
|
||||
@@ -24,9 +24,9 @@ inherit autotools pkgconfig update-rc.d
|
||||
|
||||
LCD_DRIVERS ?= "all,!irman,!svga${SERIALVFD}"
|
||||
SERIALVFD ?= ""
|
||||
SERIALVFD_libc-musl = ",!serialVFD"
|
||||
SERIALVFD_libc-musl_x86 = ""
|
||||
SERIALVFD_libc-musl_x86-64 = ""
|
||||
SERIALVFD:libc-musl = ",!serialVFD"
|
||||
SERIALVFD:libc-musl:x86 = ""
|
||||
SERIALVFD:libc-musl:x86-64 = ""
|
||||
|
||||
LCD_DEFAULT_DRIVER ?= "curses"
|
||||
|
||||
@@ -37,7 +37,7 @@ PACKAGECONFIG[g15] = ",,libg15 g15daemon libg15render,"
|
||||
PACKAGECONFIG[hid] = "--enable-libhid,--disable-libhid,libhid"
|
||||
PACKAGECONFIG[png] = "--enable-libpng,--disable-libpng,libpng"
|
||||
|
||||
LCD_DRIVERS_append = "${@bb.utils.contains('PACKAGECONFIG', 'g15', '', ',!g15', d)}"
|
||||
LCD_DRIVERS:append = "${@bb.utils.contains('PACKAGECONFIG', 'g15', '', ',!g15', d)}"
|
||||
|
||||
EXTRA_OECONF = "--enable-drivers='${LCD_DRIVERS}'"
|
||||
|
||||
@@ -74,31 +74,31 @@ do_install () {
|
||||
|
||||
PACKAGES =+ "lcdd lcdvc"
|
||||
|
||||
RRECOMMENDS_${PN} = "lcdd"
|
||||
RRECOMMENDS:${PN} = "lcdd"
|
||||
|
||||
FILES_lcdd = "${sysconfdir}/LCDd.conf \
|
||||
FILES:lcdd = "${sysconfdir}/LCDd.conf \
|
||||
${sbindir}/LCDd \
|
||||
${sysconfdir}/init.d/lcdd"
|
||||
|
||||
CONFFILES_lcdd = "${sysconfdir}/LCDd.conf"
|
||||
CONFFILES_${PN} = "${sysconfdir}/lcdproc.conf"
|
||||
CONFFILES_lcdvc = "${sysconfdir}/lcdvc.conf"
|
||||
FILES_lcdvc = "${sysconfdir}/lcdvc.conf ${sbindir}/lcdvc"
|
||||
CONFFILES:lcdd = "${sysconfdir}/LCDd.conf"
|
||||
CONFFILES:${PN} = "${sysconfdir}/lcdproc.conf"
|
||||
CONFFILES:lcdvc = "${sysconfdir}/lcdvc.conf"
|
||||
FILES:lcdvc = "${sysconfdir}/lcdvc.conf ${sbindir}/lcdvc"
|
||||
|
||||
# Driver packages
|
||||
|
||||
# USB / no USB trickery
|
||||
|
||||
RCONFLICTS_lcdd-driver-hd47780nousb = "lcdd-driver-hd44780"
|
||||
RCONFLICTS_lcdd-driver-hd47780 = "lcdd-driver-hd44780nousb"
|
||||
RCONFLICTS:lcdd-driver-hd47780nousb = "lcdd-driver-hd44780"
|
||||
RCONFLICTS:lcdd-driver-hd47780 = "lcdd-driver-hd44780nousb"
|
||||
|
||||
INITSCRIPT_PACKAGES = "lcdd lcdproc"
|
||||
INITSCRIPT_NAME_lcdd = "lcdd"
|
||||
INITSCRIPT_NAME_lcdproc = "lcdproc"
|
||||
INITSCRIPT_PARAMS_lcdd = "defaults 70 21"
|
||||
INITSCRIPT_PARAMS_lcdproc = "defaults 71 20"
|
||||
INITSCRIPT_NAME:lcdd = "lcdd"
|
||||
INITSCRIPT_NAME:lcdproc = "lcdproc"
|
||||
INITSCRIPT_PARAMS:lcdd = "defaults 70 21"
|
||||
INITSCRIPT_PARAMS:lcdproc = "defaults 71 20"
|
||||
|
||||
python populate_packages_prepend() {
|
||||
python populate_packages:prepend() {
|
||||
plugindir = d.expand('${libdir}/lcdproc')
|
||||
do_split_packages(d, plugindir, '(.*)\.so$', 'lcdd-driver-%s', 'LCDd driver for %s', prepend=True)
|
||||
}
|
||||
|
||||
@@ -20,11 +20,11 @@ SRC_URI = " \
|
||||
file://0013-riscv-Disable-atomic-operations.patch \
|
||||
file://0014-remove-JS_VOLATIME_ARM.patch \
|
||||
"
|
||||
SRC_URI_append_libc-musl = " \
|
||||
SRC_URI:append:libc-musl = " \
|
||||
file://musl/0001-support-musl.patch \
|
||||
file://musl/0002-js-Fix-build-with-musl.patch \
|
||||
"
|
||||
SRC_URI_append_mipsarchn32 = " \
|
||||
SRC_URI:append:mipsarchn32 = " \
|
||||
file://mipsarchn32/0001-fix-compiling-failure-on-mips64-n32-bsp.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "69a0be9ce695e5dc4941ed0c78ef00c2"
|
||||
@@ -35,7 +35,7 @@ S = "${WORKDIR}/firefox-${@d.getVar("PV").replace("esr", "")}"
|
||||
inherit autotools pkgconfig perlnative python3native
|
||||
|
||||
inherit features_check
|
||||
CONFLICT_DISTRO_FEATURES_mipsarchn32 = "ld-is-gold"
|
||||
CONFLICT_DISTRO_FEATURES:mipsarchn32 = "ld-is-gold"
|
||||
|
||||
DEPENDS += " \
|
||||
nspr zlib autoconf-2.13-native \
|
||||
@@ -62,18 +62,18 @@ EXTRA_OECONF = " \
|
||||
"
|
||||
|
||||
# Without this, JS_Init() will fail for mips64.
|
||||
EXTRA_OECONF_append_mipsarch = " --with-intl-api=build"
|
||||
EXTRA_OECONF_append_powerpc = " --with-intl-api=build"
|
||||
EXTRA_OECONF:append:mipsarch = " --with-intl-api=build"
|
||||
EXTRA_OECONF:append:powerpc = " --with-intl-api=build"
|
||||
|
||||
EXTRA_OECONF_append_mipsarch = " --disable-ion"
|
||||
EXTRA_OECONF_append_riscv64 = " --disable-ion"
|
||||
EXTRA_OECONF_append_riscv32 = " --disable-ion"
|
||||
EXTRA_OECONF:append:mipsarch = " --disable-ion"
|
||||
EXTRA_OECONF:append:riscv64 = " --disable-ion"
|
||||
EXTRA_OECONF:append:riscv32 = " --disable-ion"
|
||||
|
||||
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}"
|
||||
PACKAGECONFIG[x11] = "--x-includes=${STAGING_INCDIR} --x-libraries=${STAGING_LIBDIR},--x-includes=no --x-libraries=no,virtual/libx11"
|
||||
|
||||
EXTRA_OEMAKE_task-compile += "BUILD_OPT=1 OS_LDFLAGS='-Wl,-latomic ${LDFLAGS}'"
|
||||
EXTRA_OEMAKE_task-install += "STATIC_LIBRARY_NAME=js_static"
|
||||
EXTRA_OEMAKE:task-compile += "BUILD_OPT=1 OS_LDFLAGS='-Wl,-latomic ${LDFLAGS}'"
|
||||
EXTRA_OEMAKE:task-install += "STATIC_LIBRARY_NAME=js_static"
|
||||
|
||||
export HOST_CC = "${BUILD_CC}"
|
||||
export HOST_CXX = "${BUILD_CXX}"
|
||||
@@ -110,12 +110,12 @@ do_configure() {
|
||||
touch ${B}/config.status
|
||||
}
|
||||
|
||||
do_compile_prepend() {
|
||||
do_compile:prepend() {
|
||||
export SHELL="/bin/sh"
|
||||
export PYTHONPATH=`cat ${B}/PYTHONPATH`
|
||||
}
|
||||
|
||||
do_install_prepend() {
|
||||
do_install:prepend() {
|
||||
export SHELL="/bin/sh"
|
||||
export PYTHONPATH=`cat ${B}/PYTHONPATH`
|
||||
}
|
||||
@@ -124,15 +124,15 @@ inherit multilib_script multilib_header
|
||||
|
||||
MULTILIB_SCRIPTS += " ${PN}-dev:${bindir}/js60-config"
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
oe_multilib_header mozjs-60/js-config.h
|
||||
sed -e 's@${STAGING_DIR_HOST}@@g' \
|
||||
-i ${D}${bindir}/js60-config
|
||||
}
|
||||
|
||||
PACKAGES =+ "lib${BPN}"
|
||||
FILES_lib${BPN} += "${libdir}/lib*.so"
|
||||
FILES_${PN}-dev += "${bindir}/js60-config"
|
||||
FILES:lib${BPN} += "${libdir}/lib*.so"
|
||||
FILES:${PN}-dev += "${bindir}/js60-config"
|
||||
|
||||
# Fails to build with thumb-1 (qemuarm)
|
||||
#| {standard input}: Assembler messages:
|
||||
@@ -141,7 +141,7 @@ FILES_${PN}-dev += "${bindir}/js60-config"
|
||||
#| {standard input}:2174: Error: unshifted register required -- `orr r1,r1,#(1<<20)'
|
||||
#| {standard input}:2176: Error: instruction not supported in Thumb16 mode -- `subs r2,r2,#0x300'
|
||||
#| {standard input}:2178: Error: instruction not supported in Thumb16 mode -- `subs r5,r2,#52'
|
||||
ARM_INSTRUCTION_SET_armv5 = "arm"
|
||||
ARM_INSTRUCTION_SET_armv4 = "arm"
|
||||
ARM_INSTRUCTION_SET:armv5 = "arm"
|
||||
ARM_INSTRUCTION_SET:armv4 = "arm"
|
||||
|
||||
DISABLE_STATIC = ""
|
||||
|
||||
@@ -33,11 +33,11 @@ do_install() {
|
||||
install -m 0644 ${S}/smem.8 ${D}/${mandir}/man8/
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} = "python3-core python3-compression"
|
||||
RRECOMMENDS_${PN} = "python3-matplotlib python3-numpy"
|
||||
RDEPENDS:${PN} = "python3-core python3-compression"
|
||||
RRECOMMENDS:${PN} = "python3-matplotlib python3-numpy"
|
||||
|
||||
PACKAGE_BEFORE_PN = "smemcap"
|
||||
|
||||
FILES_smemcap = "${bindir}/smemcap"
|
||||
FILES:smemcap = "${bindir}/smemcap"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
+3
-3
@@ -1,6 +1,6 @@
|
||||
RDEPENDS_packagegroup-meta-oe-devtools += "\
|
||||
RDEPENDS:packagegroup-meta-oe-devtools += "\
|
||||
valijson \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-support_append_x86 = "${@bb.utils.contains('BBFILE_COLLECTIONS', 'filesystems-layer', ' open-vm-tools', '', d)}"
|
||||
RDEPENDS_packagegroup-meta-oe-support_append_x86-64 = "${@bb.utils.contains('BBFILE_COLLECTIONS', 'filesystems-layer', ' open-vm-tools', '', d)}"
|
||||
RDEPENDS:packagegroup-meta-oe-support:append:x86 = "${@bb.utils.contains('BBFILE_COLLECTIONS', 'filesystems-layer', ' open-vm-tools', '', d)}"
|
||||
RDEPENDS:packagegroup-meta-oe-support:append:x86-64 = "${@bb.utils.contains('BBFILE_COLLECTIONS', 'filesystems-layer', ' open-vm-tools', '', d)}"
|
||||
|
||||
@@ -15,7 +15,7 @@ EXTRA_OECMAKE = "-DINSTALL_HEADERS=1 -DBUILD_TESTS=0"
|
||||
DEPENDS = "curlpp"
|
||||
|
||||
# valijson is a header only C++ library, so the main package will be empty.
|
||||
RDEPENDS_${PN}-dev = ""
|
||||
RDEPENDS:${PN}-dev = ""
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
RDEPENDS_packagegroup-meta-oe-support += "debsums rasdaemon"
|
||||
RDEPENDS:packagegroup-meta-oe-support += "debsums rasdaemon"
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
SUMMARY = "Miscellaneous utilities specific to Debian"
|
||||
SUMMARY_${PN}-cron = "Cron scripts to control automatic debsum checking"
|
||||
SUMMARY:${PN}-cron = "Cron scripts to control automatic debsum checking"
|
||||
DESCRIPTION = "A tool for verification of installed package files against \
|
||||
MD5 checksums debsums can verify the integrity of installed package files \
|
||||
against MD5 checksums installed by the package, or generated from a .deb \
|
||||
archive."
|
||||
DESCRIPTION_${PN}-cron = "Cron scripts to control automatic system integrity \
|
||||
DESCRIPTION:${PN}-cron = "Cron scripts to control automatic system integrity \
|
||||
checking via debsums."
|
||||
SECTION = "base"
|
||||
LICENSE = "GPLv2"
|
||||
@@ -44,7 +44,7 @@ do_install() {
|
||||
|
||||
PACKAGES =+ "${PN}-cron"
|
||||
|
||||
RDEPENDS_${PN} = "dpkg dpkg-perl libfile-fnmatch-perl perl \
|
||||
RDEPENDS:${PN} = "dpkg dpkg-perl libfile-fnmatch-perl perl \
|
||||
perl-module-constant perl-module-digest-md5 \
|
||||
perl-module-errno perl-module-fcntl \
|
||||
perl-module-file-basename perl-module-file-copy \
|
||||
@@ -53,4 +53,4 @@ RDEPENDS_${PN} = "dpkg dpkg-perl libfile-fnmatch-perl perl \
|
||||
perl-module-file-temp perl-module-getopt-long \
|
||||
perl-module-posix"
|
||||
|
||||
FILES_${PN}-cron = "${sysconfdir}/cron.*"
|
||||
FILES:${PN}-cron = "${sysconfdir}/cron.*"
|
||||
|
||||
@@ -12,7 +12,7 @@ SRCREV = "aa96737648d867a3d73e4151d05b54bbab494605"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
RDEPENDS_${BPN} = "perl perl-module-file-basename perl-module-file-find perl-module-file-spec perl-module-getopt-long \
|
||||
RDEPENDS:${BPN} = "perl perl-module-file-basename perl-module-file-find perl-module-file-spec perl-module-getopt-long \
|
||||
perl-module-posix perl-module-file-glob libdbi-perl libdbd-sqlite-perl"
|
||||
|
||||
inherit autotools pkgconfig update-rc.d systemd
|
||||
@@ -29,27 +29,27 @@ PACKAGECONFIG[hisi-ns-decode] = "--enable-hisi-ns-decode,--disable-hisi-ns-decod
|
||||
PACKAGECONFIG[non-standard] = "--enable-non-standard,--disable-non-standard"
|
||||
PACKAGECONFIG[abrt-report] = "--enable-abrt-report,--disable-abrt-report"
|
||||
|
||||
DEPENDS_append_libc-musl = " argp-standalone"
|
||||
LDFLAGS_append_libc-musl = " -largp"
|
||||
DEPENDS:append:libc-musl = " argp-standalone"
|
||||
LDFLAGS:append:libc-musl = " -largp"
|
||||
|
||||
do_configure_prepend () {
|
||||
do_configure:prepend () {
|
||||
( cd ${S}; autoreconf -vfi )
|
||||
}
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/rasdaemon
|
||||
install -d ${D}${systemd_unitdir}/system
|
||||
install -m 0644 ${WORKDIR}/rasdaemon.service ${D}${systemd_unitdir}/system
|
||||
}
|
||||
|
||||
FILES_${PN} += "${sbindir}/rasdaemon \
|
||||
FILES:${PN} += "${sbindir}/rasdaemon \
|
||||
${sysconfdir}/init.d \
|
||||
${systemd_unitdir}/system/rasdaemon.service"
|
||||
|
||||
SYSTEMD_SERVICE_${PN} = "rasdaemon.service"
|
||||
SYSTEMD_SERVICE:${PN} = "rasdaemon.service"
|
||||
SYSTEMD_AUTO_ENABLE = "enable"
|
||||
|
||||
INITSCRIPT_PACKAGES = "${PN}"
|
||||
INITSCRIPT_NAME_${PN} = "rasdaemon"
|
||||
INITSCRIPT_PARAMS_${PN} = "defaults 89"
|
||||
INITSCRIPT_NAME:${PN} = "rasdaemon"
|
||||
INITSCRIPT_PARAMS:${PN} = "defaults 89"
|
||||
|
||||
@@ -1,58 +1,58 @@
|
||||
ARPHIC PUBLIC LICENSE
|
||||
|
||||
Copyright (C) 1999 Arphic Technology Co., Ltd.
|
||||
11Fl. No.168, Yung Chi Rd., Taipei, 110 Taiwan
|
||||
All rights reserved except as specified below.
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is forbidden.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your freedom to share and change it. By contrast, the ARPHIC PUBLIC LICENSE specifically permits and encourages you to use this software, provided that you give the recipients all the rights that we gave you and make sure they can get the modifications of this software.
|
||||
|
||||
Legal Terms
|
||||
|
||||
0. Definitions:
|
||||
Throughout this License, "Font" means the TrueType fonts "AR PL Mingti2L Big5", "AR PL KaitiM Big5" (BIG-5 character set) and "AR PL SungtiL GB", "AR PL KaitiM GB" (GB character set) which are originally distributed by Arphic, and the derivatives of those fonts created through any modification including modifying glyph, reordering glyph, converting format, changing font name, or adding/deleting some characters in/from glyph table.
|
||||
|
||||
"PL" means "Public License".
|
||||
|
||||
"Copyright Holder" means whoever is named in the copyright or copyrights for the Font.
|
||||
|
||||
"You" means the licensee, or person copying, redistributing or modifying the Font.
|
||||
|
||||
"Freely Available" means that you have the freedom to copy or modify the Font as well as redistribute copies of the Font under the same conditions you received, not price. If you wish, you can charge for this service.
|
||||
|
||||
1. Copying & Distribution
|
||||
You may copy and distribute verbatim copies of this Font in any medium, without restriction, provided that you retain this license file (ARPHICPL.TXT) unaltered in all copies.
|
||||
|
||||
2. Modification
|
||||
You may otherwise modify your copy of this Font in any way, including modifying glyph, reordering glyph, converting format, changing font name, or adding/deleting some characters in/from glyph table, and copy and distribute such modifications under the terms of Section 1 above, provided that the following conditions are met:
|
||||
|
||||
a) You must insert a prominent notice in each modified file stating how and when you changed that file.
|
||||
|
||||
b) You must make such modifications Freely Available as a whole to all third parties under the terms of this License, such as by offering access to copy the modifications from a designated place, or distributing the modifications on a medium customarily used for software interchange.
|
||||
|
||||
c) If the modified fonts normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the Font under these conditions, and telling the user how to view a copy of this License.
|
||||
|
||||
These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Font, and can be reasonably considered independent and separate works in themselves, then this License and its terms, do not apply to those sections when you distribute them as separate works. Therefore, mere aggregation of another work not based on the Font with the Font on a volume of a storage or distribution medium does not bring the other work under the scope of this License.
|
||||
|
||||
3. Condition Subsequent
|
||||
You may not copy, modify, sublicense, or distribute the Font except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Font will automatically retroactively void your rights under this License. However, parties who have received copies or rights from you under this License will keep their licenses valid so long as such parties remain in full compliance.
|
||||
|
||||
4. Acceptance
|
||||
You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to copy, modify, sublicense or distribute the Font. These actions are prohibited by law if you do not accept this License. Therefore, by copying, modifying, sublicensing or distributing the Font, you indicate your acceptance of this License and all its terms and conditions.
|
||||
|
||||
5. Automatic Receipt
|
||||
Each time you redistribute the Font, the recipient automatically receives a license from the original licensor to copy, distribute or modify the Font subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License.
|
||||
|
||||
6. Contradiction
|
||||
If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Font at all. For example, if a patent license would not permit royalty-free redistribution of the Font by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Font.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
7. NO WARRANTY
|
||||
BECAUSE THE FONT IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE FONT, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS OR OTHER PARTIES PROVIDE THE FONT "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE FONT IS WITH YOU. SHOULD THE FONT PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
8. DAMAGES WAIVER
|
||||
UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING, IN NO EVENT WILL ANY COPYRIGHTT HOLDERS, OR OTHER PARTIES WHO MAY COPY, MODIFY OR REDISTRIBUTE THE FONT AS PERMITTED ABOVE, BE LIABLE TO YOU FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, INCIDENTAL, SPECIAL OR EXEMPLARY DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE FONT (INCLUDING BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS INTERRUPTION), EVEN IF SUCH HOLDERS OR OTHER PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
ARPHIC PUBLIC LICENSE
|
||||
|
||||
Copyright (C) 1999 Arphic Technology Co., Ltd.
|
||||
11Fl. No.168, Yung Chi Rd., Taipei, 110 Taiwan
|
||||
All rights reserved except as specified below.
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is forbidden.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your freedom to share and change it. By contrast, the ARPHIC PUBLIC LICENSE specifically permits and encourages you to use this software, provided that you give the recipients all the rights that we gave you and make sure they can get the modifications of this software.
|
||||
|
||||
Legal Terms
|
||||
|
||||
0. Definitions:
|
||||
Throughout this License, "Font" means the TrueType fonts "AR PL Mingti2L Big5", "AR PL KaitiM Big5" (BIG-5 character set) and "AR PL SungtiL GB", "AR PL KaitiM GB" (GB character set) which are originally distributed by Arphic, and the derivatives of those fonts created through any modification including modifying glyph, reordering glyph, converting format, changing font name, or adding/deleting some characters in/from glyph table.
|
||||
|
||||
"PL" means "Public License".
|
||||
|
||||
"Copyright Holder" means whoever is named in the copyright or copyrights for the Font.
|
||||
|
||||
"You" means the licensee, or person copying, redistributing or modifying the Font.
|
||||
|
||||
"Freely Available" means that you have the freedom to copy or modify the Font as well as redistribute copies of the Font under the same conditions you received, not price. If you wish, you can charge for this service.
|
||||
|
||||
1. Copying & Distribution
|
||||
You may copy and distribute verbatim copies of this Font in any medium, without restriction, provided that you retain this license file (ARPHICPL.TXT) unaltered in all copies.
|
||||
|
||||
2. Modification
|
||||
You may otherwise modify your copy of this Font in any way, including modifying glyph, reordering glyph, converting format, changing font name, or adding/deleting some characters in/from glyph table, and copy and distribute such modifications under the terms of Section 1 above, provided that the following conditions are met:
|
||||
|
||||
a) You must insert a prominent notice in each modified file stating how and when you changed that file.
|
||||
|
||||
b) You must make such modifications Freely Available as a whole to all third parties under the terms of this License, such as by offering access to copy the modifications from a designated place, or distributing the modifications on a medium customarily used for software interchange.
|
||||
|
||||
c) If the modified fonts normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the Font under these conditions, and telling the user how to view a copy of this License.
|
||||
|
||||
These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Font, and can be reasonably considered independent and separate works in themselves, then this License and its terms, do not apply to those sections when you distribute them as separate works. Therefore, mere aggregation of another work not based on the Font with the Font on a volume of a storage or distribution medium does not bring the other work under the scope of this License.
|
||||
|
||||
3. Condition Subsequent
|
||||
You may not copy, modify, sublicense, or distribute the Font except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Font will automatically retroactively void your rights under this License. However, parties who have received copies or rights from you under this License will keep their licenses valid so long as such parties remain in full compliance.
|
||||
|
||||
4. Acceptance
|
||||
You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to copy, modify, sublicense or distribute the Font. These actions are prohibited by law if you do not accept this License. Therefore, by copying, modifying, sublicensing or distributing the Font, you indicate your acceptance of this License and all its terms and conditions.
|
||||
|
||||
5. Automatic Receipt
|
||||
Each time you redistribute the Font, the recipient automatically receives a license from the original licensor to copy, distribute or modify the Font subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License.
|
||||
|
||||
6. Contradiction
|
||||
If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Font at all. For example, if a patent license would not permit royalty-free redistribution of the Font by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Font.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
7. NO WARRANTY
|
||||
BECAUSE THE FONT IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE FONT, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS OR OTHER PARTIES PROVIDE THE FONT "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE FONT IS WITH YOU. SHOULD THE FONT PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
8. DAMAGES WAIVER
|
||||
UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING, IN NO EVENT WILL ANY COPYRIGHTT HOLDERS, OR OTHER PARTIES WHO MAY COPY, MODIFY OR REDISTRIBUTE THE FONT AS PERMITTED ABOVE, BE LIABLE TO YOU FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, INCIDENTAL, SPECIAL OR EXEMPLARY DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE FONT (INCLUDING BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS INTERRUPTION), EVEN IF SUCH HOLDERS OR OTHER PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
@@ -25,7 +25,7 @@ do_install () {
|
||||
|
||||
PACKAGES =+ "bonnie-scripts"
|
||||
|
||||
FILES_${PN} = "${sbindir}"
|
||||
FILES_bonnie-scripts = "${bindir}"
|
||||
FILES:${PN} = "${sbindir}"
|
||||
FILES:bonnie-scripts = "${bindir}"
|
||||
|
||||
RDEPENDS_bonnie-scripts += "perl"
|
||||
RDEPENDS:bonnie-scripts += "perl"
|
||||
|
||||
@@ -2,7 +2,7 @@ SUMMARY = "A collection of cpuburn programs tuned for different ARM hardware"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://cpuburn-a53.S;beginline=1;endline=22;md5=3b7ccd70144c16d3fe14ac491c2d4a87"
|
||||
|
||||
RPROVIDES_${PN} = "cpuburn-neon"
|
||||
RPROVIDES:${PN} = "cpuburn-neon"
|
||||
PROVIDES += "cpuburn-neon"
|
||||
|
||||
SRCREV = "ad7e646700d14b81413297bda02fb7fe96613c3f"
|
||||
@@ -47,6 +47,6 @@ do_install() {
|
||||
}
|
||||
|
||||
COMPATIBLE_MACHINE ?= "(^$)"
|
||||
COMPATIBLE_MACHINE_armv7a = "(.*)"
|
||||
COMPATIBLE_MACHINE_armv7ve = "(.*)"
|
||||
COMPATIBLE_MACHINE_aarch64 = "(.*)"
|
||||
COMPATIBLE_MACHINE:armv7a = "(.*)"
|
||||
COMPATIBLE_MACHINE:armv7ve = "(.*)"
|
||||
COMPATIBLE_MACHINE:aarch64 = "(.*)"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
SUMMARY = "The dbench (disk) and tbench (TCP) benchmarks"
|
||||
SUMMARY_dbench = "Filesystem load benchmark"
|
||||
SUMMARY_tbench = "TCP load benchmark"
|
||||
SUMMARY:dbench = "Filesystem load benchmark"
|
||||
SUMMARY:tbench = "TCP load benchmark"
|
||||
HOMEPAGE = "http://samba.org/ftp/tridge/dbench/"
|
||||
LICENSE = "GPLv3"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
||||
@@ -16,11 +16,11 @@ inherit autotools
|
||||
|
||||
PACKAGES =+ "tbench"
|
||||
|
||||
RPROVIDES_${PN}-dbg += "tbench-dbg"
|
||||
RPROVIDES:${PN}-dbg += "tbench-dbg"
|
||||
|
||||
TARGET_CC_ARCH += "${LDFLAGS}"
|
||||
|
||||
FILES_tbench = "${bindir}/tbench* ${prefix}/share/client.txt"
|
||||
FILES:tbench = "${bindir}/tbench* ${prefix}/share/client.txt"
|
||||
|
||||
SRC_URI[md5sum] = "1fe56ff71b9a416f8889d7150ac54da4"
|
||||
SRC_URI[sha256sum] = "6001893f34e68a3cfeb5d424e1f2bfef005df96a22d86f35dc770c5bccf3aa8a"
|
||||
|
||||
@@ -12,12 +12,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
||||
|
||||
DEPENDS = "libaio zlib coreutils-native"
|
||||
DEPENDS += "${@bb.utils.contains('MACHINE_FEATURES', 'pmem', 'pmdk', '', d)}"
|
||||
RDEPENDS_${PN} = "python3-core bash"
|
||||
RDEPENDS:${PN} = "python3-core bash"
|
||||
|
||||
PACKAGECONFIG_NUMA = "numa"
|
||||
# ARM does not currently support NUMA
|
||||
PACKAGECONFIG_NUMA_arm = ""
|
||||
PACKAGECONFIG_NUMA_armeb = ""
|
||||
PACKAGECONFIG_NUMA:arm = ""
|
||||
PACKAGECONFIG_NUMA:armeb = ""
|
||||
|
||||
PACKAGECONFIG ??= "${PACKAGECONFIG_NUMA}"
|
||||
PACKAGECONFIG[numa] = ",--disable-numa,numactl"
|
||||
|
||||
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
|
||||
file://COPYING.SGI;beginline=5;md5=269cdab4af6748677acce51d9aa13552"
|
||||
|
||||
DEPENDS = "libpng jpeg udev"
|
||||
DEPENDS_append = " ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland-native wayland-protocols', '', d)}"
|
||||
DEPENDS:append = " ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland-native wayland-protocols', '', d)}"
|
||||
|
||||
PV = "2021.02+${SRCPV}"
|
||||
|
||||
|
||||
@@ -23,11 +23,11 @@ S = "${WORKDIR}/${BPN}_${PV}/src/current"
|
||||
# explicitly listed below. Another, the iozone3 Makefile
|
||||
# needs to be told about the cross-compiler explicitly here.
|
||||
#
|
||||
EXTRA_OEMAKE_powerpc = "linux-powerpc CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE_powerpc64 = "linux-powerpc64 CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE_powerpc64le = "linux-powerpc64 CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE_x86-64 = "linux-AMD64 CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE_arm = "linux-arm CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE:powerpc = "linux-powerpc CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE:powerpc64 = "linux-powerpc64 CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE:powerpc64le = "linux-powerpc64 CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE:x86-64 = "linux-AMD64 CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE:arm = "linux-arm CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE = "linux CC='${CC}' GCC='${CC}'"
|
||||
|
||||
TARGET_CC_ARCH += "${LDFLAGS}"
|
||||
@@ -55,7 +55,7 @@ do_install() {
|
||||
install -m 0644 ${WORKDIR}/${BPN}_${PV}/docs/Run_rules.doc ${D}${datadir}/doc/${BPN}/
|
||||
}
|
||||
|
||||
FILES_${PN} += "${datadir}/doc/${PN}/copyright.txt"
|
||||
FILES:${PN} += "${datadir}/doc/${PN}/copyright.txt"
|
||||
|
||||
# LICENSE:
|
||||
#
|
||||
|
||||
@@ -4,8 +4,8 @@ LICENSE = "LGPLv2.1"
|
||||
LIC_FILES_CHKSUM = "file://LGPL-2.1;md5=2d5025d4aa3495befef8f17206a5b0a1"
|
||||
|
||||
DEPENDS = "sysfsutils"
|
||||
RDEPENDS_${PN} += "bash python3-core"
|
||||
RDEPENDS_${PN}-tests += "bash python3-core"
|
||||
RDEPENDS:${PN} += "bash python3-core"
|
||||
RDEPENDS:${PN}-tests += "bash python3-core"
|
||||
|
||||
PV = "2.23"
|
||||
PE = "1"
|
||||
@@ -37,9 +37,9 @@ COMPATIBLE_HOST = "(i.86|x86_64|powerpc|powerpc64|aarch64|arm).*-linux*"
|
||||
|
||||
LIBARGS = "LIB32=${baselib} LIB64=${baselib}"
|
||||
LIBHUGETLBFS_ARCH = "${TARGET_ARCH}"
|
||||
LIBHUGETLBFS_ARCH_powerpc = "ppc"
|
||||
LIBHUGETLBFS_ARCH_powerpc64 = "ppc64"
|
||||
LIBHUGETLBFS_ARCH_powerpc64le = "ppc64le"
|
||||
LIBHUGETLBFS_ARCH:powerpc = "ppc"
|
||||
LIBHUGETLBFS_ARCH:powerpc64 = "ppc64"
|
||||
LIBHUGETLBFS_ARCH:powerpc64le = "ppc64le"
|
||||
EXTRA_OEMAKE = "'ARCH=${LIBHUGETLBFS_ARCH}' 'OPT=${CFLAGS}' 'CC=${CC}' ${LIBARGS} BUILDTYPE=NATIVEONLY V=2"
|
||||
PARALLEL_MAKE = ""
|
||||
CFLAGS += "-fexpensive-optimizations -frename-registers -fomit-frame-pointer -g0"
|
||||
@@ -65,12 +65,12 @@ do_install() {
|
||||
|
||||
|
||||
PACKAGES =+ "${PN}-tests "
|
||||
FILES_${PN} += "${libdir}/*.so"
|
||||
FILES_${PN}-dev = "${includedir}"
|
||||
FILES_${PN}-dbg += "${libdir}/libhugetlbfs/tests/obj32/.debug ${libdir}/libhugetlbfs/tests/obj64/.debug"
|
||||
FILES_${PN}-tests += "${libdir}/libhugetlbfs/tests"
|
||||
FILES:${PN} += "${libdir}/*.so"
|
||||
FILES:${PN}-dev = "${includedir}"
|
||||
FILES:${PN}-dbg += "${libdir}/libhugetlbfs/tests/obj32/.debug ${libdir}/libhugetlbfs/tests/obj64/.debug"
|
||||
FILES:${PN}-tests += "${libdir}/libhugetlbfs/tests"
|
||||
|
||||
INSANE_SKIP_${PN} = "dev-so"
|
||||
INSANE_SKIP:${PN} = "dev-so"
|
||||
|
||||
INHIBIT_PACKAGE_STRIP = "1"
|
||||
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
|
||||
|
||||
@@ -83,7 +83,7 @@ do_install () {
|
||||
install -m 0644 ${S}/src/webpage-lm.tar ${D}${datadir}/lmbench
|
||||
}
|
||||
|
||||
pkg_postinst_${PN} () {
|
||||
pkg_postinst:${PN} () {
|
||||
if [ -z "$D" ]; then
|
||||
if command -v systemd-tmpfiles >/dev/null; then
|
||||
systemd-tmpfiles --create ${sysconfdir}/tmpfiles.d/lmbench.conf
|
||||
@@ -93,9 +93,9 @@ pkg_postinst_${PN} () {
|
||||
fi
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} = "perl"
|
||||
FILES_${PN} += "${datadir}/lmbench"
|
||||
RDEPENDS:${PN} = "perl"
|
||||
FILES:${PN} += "${datadir}/lmbench"
|
||||
|
||||
ALTERNATIVE_${PN} = "stream"
|
||||
ALTERNATIVE:${PN} = "stream"
|
||||
ALTERNATIVE_LINK_NAME[stream] = "${bindir}/stream"
|
||||
|
||||
|
||||
@@ -27,11 +27,11 @@ do_install() {
|
||||
# continual target reboots if they encounter network problems.
|
||||
#
|
||||
SYSTEMD_AUTO_ENABLE = "disable"
|
||||
SYSTEMD_SERVICE_${PN} = "phoromatic-client.service phoromatic-server.service"
|
||||
SYSTEMD_SERVICE:${PN} = "phoromatic-client.service phoromatic-server.service"
|
||||
|
||||
RDEPENDS_${PN} += "bash python3-core php-cli util-linux-lscpu os-release lsb-release"
|
||||
RDEPENDS:${PN} += "bash python3-core php-cli util-linux-lscpu os-release lsb-release"
|
||||
|
||||
FILES_${PN} += " \
|
||||
FILES:${PN} += " \
|
||||
${datadir}/phoronix-test-suite \
|
||||
${datadir}/appdata/phoronix-test-suite.appdata.xml \
|
||||
${datadir}/icons/hicolor/48x48/apps/phoronix-test-suite.png \
|
||||
|
||||
@@ -23,11 +23,11 @@ do_install() {
|
||||
install -m0755 ${S}/process_config.sh ${D}/opt/S-suite
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} = "bash bc coreutils gawk g++ gcc fio libaio libaio-dev sysstat \
|
||||
RDEPENDS:${PN} = "bash bc coreutils gawk g++ gcc fio libaio libaio-dev sysstat \
|
||||
git"
|
||||
|
||||
FILES_${PN} = "/opt/S-suite/"
|
||||
FILES:${PN} = "/opt/S-suite/"
|
||||
|
||||
# added to INSANE_SKIP since s-suite have an runtime
|
||||
# dependency (RDEPENDS) on libaio-dev.
|
||||
INSANE_SKIP_${PN} += "dev-deps"
|
||||
INSANE_SKIP:${PN} += "dev-deps"
|
||||
|
||||
@@ -23,6 +23,6 @@ PACKAGECONFIG[mysql] = "--with-mysql \
|
||||
--with-mysql-libs=${STAGING_LIBDIR}, \
|
||||
--without-mysql,mysql5"
|
||||
|
||||
do_configure_prepend() {
|
||||
do_configure:prepend() {
|
||||
touch ${S}/NEWS ${S}/AUTHORS
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ do_install() {
|
||||
oe_runmake install
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
RDEPENDS:${PN} = "\
|
||||
perl \
|
||||
perl-module-exporter-heavy \
|
||||
perl-module-getopt-long \
|
||||
|
||||
@@ -14,7 +14,7 @@ SRC_URI = "git://github.com/emagii/cpufrequtils.git \
|
||||
file://0001-dont-unset-cflags.patch \
|
||||
"
|
||||
|
||||
EXTRA_OEMAKE_append = " ${@['', 'NLS=false']['${USE_NLS}' == 'no']} "
|
||||
EXTRA_OEMAKE:append = " ${@['', 'NLS=false']['${USE_NLS}' == 'no']} "
|
||||
|
||||
PR = "r5"
|
||||
|
||||
|
||||
@@ -19,19 +19,19 @@ SRC_URI = "git://github.com/grondo/edac-utils \
|
||||
|
||||
inherit autotools-brokensep systemd
|
||||
|
||||
do_configure_prepend () {
|
||||
do_configure:prepend () {
|
||||
touch ${S}/ChangeLog
|
||||
${S}/bootstrap
|
||||
}
|
||||
|
||||
RDEPENDS_${PN}_x86 = "dmidecode"
|
||||
RDEPENDS_${PN}_x86-64 = "dmidecode"
|
||||
RDEPENDS_${PN}_arm = "dmidecode"
|
||||
RDEPENDS_${PN}_aarch64 = "dmidecode"
|
||||
RDEPENDS_${PN}_powerpc = "dmidecode"
|
||||
RDEPENDS_${PN}_powerpc64 = "dmidecode"
|
||||
RDEPENDS_${PN}_powerpc64le = "dmidecode"
|
||||
RDEPENDS_${PN}_append = " \
|
||||
RDEPENDS:${PN}:x86 = "dmidecode"
|
||||
RDEPENDS:${PN}:x86-64 = "dmidecode"
|
||||
RDEPENDS:${PN}:arm = "dmidecode"
|
||||
RDEPENDS:${PN}:aarch64 = "dmidecode"
|
||||
RDEPENDS:${PN}:powerpc = "dmidecode"
|
||||
RDEPENDS:${PN}:powerpc64 = "dmidecode"
|
||||
RDEPENDS:${PN}:powerpc64le = "dmidecode"
|
||||
RDEPENDS:${PN}:append = " \
|
||||
perl \
|
||||
perl-module-file-basename \
|
||||
perl-module-file-find \
|
||||
@@ -42,11 +42,11 @@ RDEPENDS_${PN}_append = " \
|
||||
perl-module-file-glob \
|
||||
"
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
install -d ${D}${systemd_unitdir}/system
|
||||
install -m 644 ${WORKDIR}/edac.service ${D}/${systemd_unitdir}/system
|
||||
sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}/${systemd_unitdir}/system/edac.service
|
||||
}
|
||||
|
||||
SYSTEMD_SERVICE_${PN} = "edac.service"
|
||||
SYSTEMD_AUTO_ENABLE_${PN} = "disable"
|
||||
SYSTEMD_SERVICE:${PN} = "edac.service"
|
||||
SYSTEMD_AUTO_ENABLE:${PN} = "disable"
|
||||
|
||||
@@ -21,13 +21,13 @@ inherit pkgconfig autotools systemd features_check
|
||||
|
||||
REQUIRED_DISTRO_FEATURES = "systemd"
|
||||
|
||||
SYSTEMD_SERVICE_${PN} = "firmwared.service"
|
||||
SYSTEMD_SERVICE:${PN} = "firmwared.service"
|
||||
|
||||
do_configure_prepend() {
|
||||
do_configure:prepend() {
|
||||
${S}/autogen.sh
|
||||
}
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/firmwared.service ${D}${systemd_system_unitdir}
|
||||
sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_system_unitdir}/firmwared.service
|
||||
|
||||
@@ -21,7 +21,7 @@ SRC_URI[sha256sum] = "61980551e46b2eaa9e17ad31cbc1a638074611fc33bff34163d10c7a67
|
||||
|
||||
inherit update-rc.d
|
||||
|
||||
RRECOMMENDS_${PN} = "\
|
||||
RRECOMMENDS:${PN} = "\
|
||||
kernel-module-pxaficp-ir \
|
||||
kernel-module-irda \
|
||||
kernel-module-ircomm \
|
||||
|
||||
@@ -13,7 +13,7 @@ DEPENDS = "sg3-utils udev"
|
||||
|
||||
inherit autotools systemd
|
||||
|
||||
SYSTEMD_SERVICE_${PN} = "ledmon.service"
|
||||
SYSTEMD_SERVICE:${PN} = "ledmon.service"
|
||||
|
||||
# 0.93
|
||||
SRC_URI = "git://github.com/intel/ledmon;branch=master \
|
||||
@@ -24,7 +24,7 @@ SRC_URI = "git://github.com/intel/ledmon;branch=master \
|
||||
SRCREV = "1d72f9cb5c9163b2ecdf19709935720e65f5b90e"
|
||||
|
||||
COMPATIBLE_HOST = "(i.86|x86_64).*-linux"
|
||||
COMPATIBLE_HOST_libc-musl = "null"
|
||||
COMPATIBLE_HOST:libc-musl = "null"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
EXTRA_OEMAKE = "CC='${CC}' LDFLAGS='${LDFLAGS}' CFLAGS='${CFLAGS}'"
|
||||
@@ -33,7 +33,7 @@ EXTRA_OEMAKE = "CC='${CC}' LDFLAGS='${LDFLAGS}' CFLAGS='${CFLAGS}'"
|
||||
# We need to add this include path in CFLAGS.
|
||||
CFLAGS += "-I${S}/config"
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
|
||||
install -d ${D}${systemd_unitdir}/system
|
||||
install -m 0755 ${S}/systemd/ledmon.service ${D}${systemd_unitdir}/system
|
||||
|
||||
@@ -17,7 +17,7 @@ S = "${WORKDIR}"
|
||||
PACKAGECONFIG ??= "sensord"
|
||||
PACKAGECONFIG[sensord] = ",,"
|
||||
|
||||
RDEPENDS_${PN}-dev = ""
|
||||
RDEPENDS:${PN}-dev = ""
|
||||
|
||||
do_install() {
|
||||
# Install fancontrol configuration file
|
||||
@@ -51,18 +51,18 @@ PACKAGES =+ "${PN}-fancontrol"
|
||||
|
||||
# sensord web cgi support
|
||||
PACKAGES =+ "${@bb.utils.contains('PACKAGECONFIG', 'sensord', '${PN}-cgi', '', d)}"
|
||||
RRECOMMENDS_${PN}-cgi = "lighttpd lighttpd-module-cgi"
|
||||
RDEPENDS_${PN}-cgi = "${PN}-sensord rrdtool"
|
||||
FILES_${PN}-cgi = "/www/*"
|
||||
RRECOMMENDS:${PN}-cgi = "lighttpd lighttpd-module-cgi"
|
||||
RDEPENDS:${PN}-cgi = "${PN}-sensord rrdtool"
|
||||
FILES:${PN}-cgi = "/www/*"
|
||||
|
||||
# libsensors configuration file
|
||||
FILES_${PN}-libsensors = "${sysconfdir}/sensors.d/sensors.conf"
|
||||
FILES:${PN}-libsensors = "${sysconfdir}/sensors.d/sensors.conf"
|
||||
|
||||
# sensord logging daemon configuration files
|
||||
FILES_${PN}-sensord = "\
|
||||
FILES:${PN}-sensord = "\
|
||||
${sysconfdir}/sensord.conf \
|
||||
${sysconfdir}/sysconfig/sensord \
|
||||
"
|
||||
|
||||
# fancontrol script configuration file
|
||||
FILES_${PN}-fancontrol = "${sysconfdir}/fancontrol"
|
||||
FILES:${PN}-fancontrol = "${sysconfdir}/fancontrol"
|
||||
|
||||
@@ -19,7 +19,7 @@ SRCREV = "1667b850a1ce38151dae17156276f981be6fb557"
|
||||
|
||||
inherit update-rc.d systemd
|
||||
|
||||
RDEPENDS_${PN}-dev = ""
|
||||
RDEPENDS:${PN}-dev = ""
|
||||
|
||||
PACKAGECONFIG ??= "sensord"
|
||||
PACKAGECONFIG[sensord] = "sensord,,rrdtool"
|
||||
@@ -28,19 +28,19 @@ INITSCRIPT_PACKAGES = "\
|
||||
${PN}-fancontrol \
|
||||
${@bb.utils.contains('PACKAGECONFIG', 'sensord', '${PN}-sensord', '', d)} \
|
||||
"
|
||||
INITSCRIPT_NAME_${PN}-fancontrol = "fancontrol"
|
||||
INITSCRIPT_NAME_${PN}-sensord = "sensord"
|
||||
INITSCRIPT_PARAMS_${PN}-fancontrol = "defaults 66"
|
||||
INITSCRIPT_PARAMS_${PN}-sensord = "defaults 67"
|
||||
INITSCRIPT_NAME:${PN}-fancontrol = "fancontrol"
|
||||
INITSCRIPT_NAME:${PN}-sensord = "sensord"
|
||||
INITSCRIPT_PARAMS:${PN}-fancontrol = "defaults 66"
|
||||
INITSCRIPT_PARAMS:${PN}-sensord = "defaults 67"
|
||||
|
||||
SYSTEMD_PACKAGES = "\
|
||||
${PN} \
|
||||
${PN}-fancontrol \
|
||||
${@bb.utils.contains('PACKAGECONFIG', 'sensord', '${PN}-sensord', '', d)} \
|
||||
"
|
||||
SYSTEMD_SERVICE_${PN} = "lm_sensors.service"
|
||||
SYSTEMD_SERVICE_${PN}-fancontrol = "fancontrol.service"
|
||||
SYSTEMD_SERVICE_${PN}-sensord = "sensord.service"
|
||||
SYSTEMD_SERVICE:${PN} = "lm_sensors.service"
|
||||
SYSTEMD_SERVICE:${PN}-fancontrol = "fancontrol.service"
|
||||
SYSTEMD_SERVICE:${PN}-sensord = "sensord.service"
|
||||
SYSTEMD_AUTO_ENABLE = "disable"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
@@ -85,10 +85,10 @@ do_install() {
|
||||
fi
|
||||
}
|
||||
|
||||
RPROVIDES_${PN}-dbg += "${PN}-libsensors-dbg ${PN}-sensors-dbg ${PN}-sensord-dbg ${PN}-isatools-dbg"
|
||||
RPROVIDES:${PN}-dbg += "${PN}-libsensors-dbg ${PN}-sensors-dbg ${PN}-sensord-dbg ${PN}-isatools-dbg"
|
||||
|
||||
ALLOW_EMPTY_${PN} = "1"
|
||||
RDEPENDS_${PN} += " \
|
||||
ALLOW_EMPTY:${PN} = "1"
|
||||
RDEPENDS:${PN} += " \
|
||||
${PN}-libsensors \
|
||||
${PN}-sensors \
|
||||
${@bb.utils.contains('PACKAGECONFIG', 'sensord', '${PN}-sensord', '', d)} \
|
||||
@@ -125,44 +125,44 @@ PACKAGES =+ "${PN}-isatools ${PN}-isatools-doc"
|
||||
|
||||
|
||||
# libsensors files
|
||||
FILES_${PN}-libsensors = "${libdir}/libsensors.so.* ${sysconfdir}/sensors3.conf ${sysconfdir}/sensors.d"
|
||||
FILES_${PN}-libsensors-dev = "${libdir}/libsensors.so ${includedir}"
|
||||
FILES_${PN}-libsensors-staticdev = "${libdir}/libsensors.a"
|
||||
FILES_${PN}-libsensors-doc = "${mandir}/man3"
|
||||
RRECOMMENDS_${PN}-libsensors = "lmsensors-config-libsensors"
|
||||
FILES:${PN}-libsensors = "${libdir}/libsensors.so.* ${sysconfdir}/sensors3.conf ${sysconfdir}/sensors.d"
|
||||
FILES:${PN}-libsensors-dev = "${libdir}/libsensors.so ${includedir}"
|
||||
FILES:${PN}-libsensors-staticdev = "${libdir}/libsensors.a"
|
||||
FILES:${PN}-libsensors-doc = "${mandir}/man3"
|
||||
RRECOMMENDS:${PN}-libsensors = "lmsensors-config-libsensors"
|
||||
|
||||
# sensors command files
|
||||
FILES_${PN}-sensors = "${bindir}/sensors"
|
||||
FILES_${PN}-sensors-doc = "${mandir}/man1 ${mandir}/man5"
|
||||
RDEPENDS_${PN}-sensors = "${PN}-libsensors"
|
||||
FILES:${PN}-sensors = "${bindir}/sensors"
|
||||
FILES:${PN}-sensors-doc = "${mandir}/man1 ${mandir}/man5"
|
||||
RDEPENDS:${PN}-sensors = "${PN}-libsensors"
|
||||
|
||||
# sensord logging daemon
|
||||
FILES_${PN}-sensord = "${sbindir}/sensord ${INIT_D_DIR}/sensord ${systemd_system_unitdir}/sensord.service"
|
||||
FILES_${PN}-sensord-doc = "${mandir}/man8/sensord.8"
|
||||
RDEPENDS_${PN}-sensord = "${PN}-sensors rrdtool"
|
||||
RRECOMMENDS_${PN}-sensord = "lmsensors-config-sensord"
|
||||
FILES:${PN}-sensord = "${sbindir}/sensord ${INIT_D_DIR}/sensord ${systemd_system_unitdir}/sensord.service"
|
||||
FILES:${PN}-sensord-doc = "${mandir}/man8/sensord.8"
|
||||
RDEPENDS:${PN}-sensord = "${PN}-sensors rrdtool"
|
||||
RRECOMMENDS:${PN}-sensord = "lmsensors-config-sensord"
|
||||
|
||||
# fancontrol script files
|
||||
FILES_${PN}-fancontrol = "${sbindir}/fancontrol ${INIT_D_DIR}/fancontrol"
|
||||
FILES_${PN}-fancontrol-doc = "${mandir}/man8/fancontrol.8"
|
||||
RDEPENDS_${PN}-fancontrol = "bash"
|
||||
RRECOMMENDS_${PN}-fancontrol = "lmsensors-config-fancontrol"
|
||||
FILES:${PN}-fancontrol = "${sbindir}/fancontrol ${INIT_D_DIR}/fancontrol"
|
||||
FILES:${PN}-fancontrol-doc = "${mandir}/man8/fancontrol.8"
|
||||
RDEPENDS:${PN}-fancontrol = "bash"
|
||||
RRECOMMENDS:${PN}-fancontrol = "lmsensors-config-fancontrol"
|
||||
|
||||
# sensors-detect script files
|
||||
FILES_${PN}-sensorsdetect = "${sbindir}/sensors-detect"
|
||||
FILES_${PN}-sensorsdetect-doc = "${mandir}/man8/sensors-detect.8"
|
||||
RDEPENDS_${PN}-sensorsdetect = "${PN}-sensors perl perl-modules"
|
||||
FILES:${PN}-sensorsdetect = "${sbindir}/sensors-detect"
|
||||
FILES:${PN}-sensorsdetect-doc = "${mandir}/man8/sensors-detect.8"
|
||||
RDEPENDS:${PN}-sensorsdetect = "${PN}-sensors perl perl-modules"
|
||||
|
||||
# sensors-conf-convert script files
|
||||
FILES_${PN}-sensorsconfconvert = "${bindir}/sensors-conf-convert"
|
||||
FILES_${PN}-sensorsconfconvert-doc = "${mandir}/man8/sensors-conf-convert.8"
|
||||
RDEPENDS_${PN}-sensorsconfconvert = "${PN}-sensors perl perl-modules"
|
||||
FILES:${PN}-sensorsconfconvert = "${bindir}/sensors-conf-convert"
|
||||
FILES:${PN}-sensorsconfconvert-doc = "${mandir}/man8/sensors-conf-convert.8"
|
||||
RDEPENDS:${PN}-sensorsconfconvert = "${PN}-sensors perl perl-modules"
|
||||
|
||||
# pwmconfig script files
|
||||
FILES_${PN}-pwmconfig = "${sbindir}/pwmconfig"
|
||||
FILES_${PN}-pwmconfig-doc = "${mandir}/man8/pwmconfig.8"
|
||||
RDEPENDS_${PN}-pwmconfig = "${PN}-fancontrol bash"
|
||||
FILES:${PN}-pwmconfig = "${sbindir}/pwmconfig"
|
||||
FILES:${PN}-pwmconfig-doc = "${mandir}/man8/pwmconfig.8"
|
||||
RDEPENDS:${PN}-pwmconfig = "${PN}-fancontrol bash"
|
||||
|
||||
# isadump and isaset helper program files
|
||||
FILES_${PN}-isatools = "${sbindir}/isa*"
|
||||
FILES_${PN}-isatools-doc = "${mandir}/man8/isa*"
|
||||
FILES:${PN}-isatools = "${sbindir}/isa*"
|
||||
FILES:${PN}-isatools-doc = "${mandir}/man8/isa*"
|
||||
|
||||
@@ -19,15 +19,15 @@ do_install() {
|
||||
UDEVDIR=${nonarch_base_libdir}/udev SYSTEMDDIR=${systemd_unitdir}
|
||||
}
|
||||
|
||||
pkg_postinst_ontarget_${PN}() {
|
||||
pkg_postinst_ontarget:${PN}() {
|
||||
${sbindir}/nvme gen-hostnqn > ${sysconfdir}/nvme/hostnqn
|
||||
${bindir}/uuidgen > ${sysconfdir}/nvme/hostid
|
||||
}
|
||||
|
||||
PACKAGES =+ "${PN}-dracut ${PN}-zsh-completion"
|
||||
|
||||
FILES_${PN} += "${systemd_system_unitdir}"
|
||||
FILES_${PN}-dracut = "${nonarch_libdir}/dracut/dracut.conf.d"
|
||||
FILES_${PN}-zsh-completion = "${datadir}/zsh/site-functions"
|
||||
FILES:${PN} += "${systemd_system_unitdir}"
|
||||
FILES:${PN}-dracut = "${nonarch_libdir}/dracut/dracut.conf.d"
|
||||
FILES:${PN}-zsh-completion = "${datadir}/zsh/site-functions"
|
||||
|
||||
RDEPENDS_${PN} = "util-linux-uuidgen"
|
||||
RDEPENDS:${PN} = "util-linux-uuidgen"
|
||||
|
||||
@@ -6,7 +6,7 @@ LICENSE = "GPLv2"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
||||
|
||||
DEPENDS = "udev sysfsutils flex-native bison-native"
|
||||
RDEPENDS_${PN} = "udev module-init-tools"
|
||||
RDEPENDS:${PN} = "udev module-init-tools"
|
||||
|
||||
PR = "r1"
|
||||
|
||||
@@ -38,4 +38,4 @@ do_install () {
|
||||
oe_runmake 'DESTDIR=${D}' install
|
||||
}
|
||||
|
||||
CONFFILES_${PN} += "${sysconfdir}/pcmcia/config.opts"
|
||||
CONFFILES:${PN} += "${sysconfdir}/pcmcia/config.opts"
|
||||
|
||||
@@ -17,6 +17,6 @@ do_install() {
|
||||
fi
|
||||
}
|
||||
|
||||
ALLOW_EMPTY_${PN} = "1"
|
||||
ALLOW_EMPTY:${PN} = "1"
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
INHIBIT_DEFAULT_DEPS = "1"
|
||||
|
||||
@@ -14,7 +14,7 @@ SRC_URI = "https://github.com/DOCGroup/ACE_TAO/releases/download/ACE%2BTAO-6_5_1
|
||||
|
||||
SRC_URI[sha256sum] = "ccd94fa45df1e8bb1c901d02c0a64c1626497e5eeda2f057fcf0a1578dae2148"
|
||||
|
||||
COMPATIBLE_HOST_libc-musl = "null"
|
||||
COMPATIBLE_HOST:libc-musl = "null"
|
||||
|
||||
S = "${WORKDIR}/ACE_wrappers"
|
||||
B = "${WORKDIR}/ACE_wrappers/ace"
|
||||
@@ -22,8 +22,8 @@ export ACE_ROOT="${WORKDIR}/ACE_wrappers"
|
||||
|
||||
inherit pkgconfig
|
||||
|
||||
CXXFLAGS_append = " -fpermissive -Wnodeprecated-declarations"
|
||||
CXX_append = " -ffile-prefix-map=${WORKDIR}= -fdebug-prefix-map=${WORKDIR}= "
|
||||
CXXFLAGS:append = " -fpermissive -Wnodeprecated-declarations"
|
||||
CXX:append = " -ffile-prefix-map=${WORKDIR}= -fdebug-prefix-map=${WORKDIR}= "
|
||||
EXTRA_OEMAKE += "INSTALL_LIB=${baselib}"
|
||||
|
||||
do_install() {
|
||||
|
||||
@@ -15,7 +15,7 @@ SRC_URI[sha256sum] = "de67caa102aa4c8fbed5300e5a0262e40411c4cc79f4379a8d34eed797
|
||||
|
||||
inherit distutils3 cmake gettext
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
# these files seem to only be used by symbian and trigger QA warnings
|
||||
rm -rf ${D}/usr/share/gammu
|
||||
#install default configuration files
|
||||
@@ -42,19 +42,19 @@ EXTRA_OECMAKE = " \
|
||||
|
||||
PACKAGES =+ "${PN}-smsd libgammu libgsmsd python-${PN}"
|
||||
|
||||
FILES_${PN} = "${bindir}/gammu ${bindir}/jadmaker ${sysconfdir}/bash_completion.d/gammu \
|
||||
FILES:${PN} = "${bindir}/gammu ${bindir}/jadmaker ${sysconfdir}/bash_completion.d/gammu \
|
||||
${bindir}/gammu-detect ${sysconfdir}/gammurc"
|
||||
CONFFILES_${PN} = "${sysconfdir}/gammurc"
|
||||
FILES_${PN}-smsd = "${bindir}/gammu-smsd* ${sysconfdir}/gammu-smsdrc"
|
||||
CONFFILES_${PN}-smsd = "${sysconfdir}/gammu-smsdrc"
|
||||
FILES_${PN}-dev += "${bindir}/gammu-config ${libdir}/*.so"
|
||||
FILES_${PN}-dbg += "${bindir}/.debug ${libdir}/.debug ${PYTHON_SITEPACKAGES_DIR}/gammu/.debug"
|
||||
FILES_libgammu = "${libdir}/libGammu.so.*"
|
||||
FILES_libgsmsd = "${libdir}/libgsmsd.so.*"
|
||||
FILES_python-${PN} = "${PYTHON_SITEPACKAGES_DIR}/gammu/*.??"
|
||||
CONFFILES:${PN} = "${sysconfdir}/gammurc"
|
||||
FILES:${PN}-smsd = "${bindir}/gammu-smsd* ${sysconfdir}/gammu-smsdrc"
|
||||
CONFFILES:${PN}-smsd = "${sysconfdir}/gammu-smsdrc"
|
||||
FILES:${PN}-dev += "${bindir}/gammu-config ${libdir}/*.so"
|
||||
FILES:${PN}-dbg += "${bindir}/.debug ${libdir}/.debug ${PYTHON_SITEPACKAGES_DIR}/gammu/.debug"
|
||||
FILES:libgammu = "${libdir}/libGammu.so.*"
|
||||
FILES:libgsmsd = "${libdir}/libgsmsd.so.*"
|
||||
FILES:python-${PN} = "${PYTHON_SITEPACKAGES_DIR}/gammu/*.??"
|
||||
|
||||
RDEPENDS_${PN} += "bash"
|
||||
RDEPENDS_${PN}-dev += "bash"
|
||||
RDEPENDS:${PN} += "bash"
|
||||
RDEPENDS:${PN}-dev += "bash"
|
||||
|
||||
# Fails to build with thumb-1 (qemuarm)
|
||||
# gammu-1.32.0/libgammu/service/sms/gsmems.c:542:1: internal compiler error: in patch_jump_insn, at cfgrtl.c:1275
|
||||
|
||||
@@ -28,5 +28,5 @@ EXTRA_OECMAKE += "-DGATTLIB_BUILD_DOCS=OFF"
|
||||
|
||||
inherit pkgconfig cmake
|
||||
|
||||
FILES_${PN} = "${libdir}/*"
|
||||
FILES_${PN}-dev = "${includedir}/*"
|
||||
FILES:${PN} = "${libdir}/*"
|
||||
FILES:${PN}-dev = "${includedir}/*"
|
||||
|
||||
@@ -21,4 +21,4 @@ PACKAGECONFIG[swig] = "--with-swig,--without-swig, swig"
|
||||
|
||||
EXTRA_OECONF = "--without-python"
|
||||
|
||||
RDEPENDS_${PN} += "bash"
|
||||
RDEPENDS:${PN} += "bash"
|
||||
|
||||
@@ -31,10 +31,10 @@ CONFLICT_DISTRO_FEATURES = "openssl-no-weak-ciphers"
|
||||
|
||||
INITSCRIPT_NAME = "hostapd"
|
||||
|
||||
SYSTEMD_SERVICE_${PN} = "hostapd.service"
|
||||
SYSTEMD_AUTO_ENABLE_${PN} = "disable"
|
||||
SYSTEMD_SERVICE:${PN} = "hostapd.service"
|
||||
SYSTEMD_AUTO_ENABLE:${PN} = "disable"
|
||||
|
||||
do_configure_append() {
|
||||
do_configure:append() {
|
||||
install -m 0644 ${WORKDIR}/defconfig ${B}/.config
|
||||
}
|
||||
|
||||
@@ -54,4 +54,4 @@ do_install() {
|
||||
sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/hostapd.service
|
||||
}
|
||||
|
||||
CONFFILES_${PN} += "${sysconfdir}/hostapd.conf"
|
||||
CONFFILES:${PN} += "${sysconfdir}/hostapd.conf"
|
||||
|
||||
@@ -10,7 +10,7 @@ SRC_URI = "http://0pointer.de/lennart/projects/ifplugd/ifplugd-${PV}.tar.gz \
|
||||
file://0001-src-interface.h-Make-declarations-as-extern.patch \
|
||||
"
|
||||
|
||||
SRC_URI_append_libc-musl = " file://Fix-build-with-musl.patch"
|
||||
SRC_URI:append:libc-musl = " file://Fix-build-with-musl.patch"
|
||||
|
||||
SRC_URI[md5sum] = "df6f4bab52f46ffd6eb1f5912d4ccee3"
|
||||
SRC_URI[sha256sum] = "474754ac4ab32d738cbf2a4a3e87ee0a2c71b9048a38bdcd7df1e4f9fd6541f0"
|
||||
@@ -22,6 +22,6 @@ EXTRA_OECONF = "--disable-lynx --with-initdir=${sysconfdir}/init.d"
|
||||
INITSCRIPT_NAME = "ifplugd"
|
||||
INITSCRIPT_PARAMS = "defaults"
|
||||
|
||||
CONFFILES_${PN} = "${sysconfdir}/ifplugd/ifplugd.conf"
|
||||
CONFFILES:${PN} = "${sysconfdir}/ifplugd/ifplugd.conf"
|
||||
|
||||
RDEPENDS_${PN} += "bash"
|
||||
RDEPENDS:${PN} += "bash"
|
||||
|
||||
@@ -19,4 +19,4 @@ EXTRA_OECONF += "--with-textui \
|
||||
--with-perl=no \
|
||||
--enable-true-color"
|
||||
|
||||
FILES_${PN}-staticdev += "${libdir}/${BPN}/modules/*.a"
|
||||
FILES:${PN}-staticdev += "${libdir}/${BPN}/modules/*.a"
|
||||
|
||||
@@ -26,29 +26,29 @@ PACKAGECONFIG[systemd] = "--with-systemd-unitdir=${systemd_system_unitdir},--dis
|
||||
|
||||
EXTRA_OECONF = "--enable-external-ell"
|
||||
|
||||
SYSTEMD_SERVICE_${PN} = " \
|
||||
SYSTEMD_SERVICE:${PN} = " \
|
||||
iwd.service \
|
||||
${@bb.utils.contains('PACKAGECONFIG', 'wired', 'ead.service', '', d)} \
|
||||
"
|
||||
|
||||
do_configure_prepend() {
|
||||
do_configure:prepend() {
|
||||
install -d ${S}/build-aux
|
||||
}
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
# If client and monitor are disabled, bindir is empty, causing a QA error
|
||||
rmdir --ignore-fail-on-non-empty ${D}/${bindir}
|
||||
}
|
||||
|
||||
FILES_${PN} += " \
|
||||
FILES:${PN} += " \
|
||||
${datadir}/dbus-1 \
|
||||
${nonarch_libdir}/modules-load.d \
|
||||
${systemd_unitdir}/network \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN} = "dbus"
|
||||
RDEPENDS:${PN} = "dbus"
|
||||
|
||||
RRECOMMENDS_${PN} = "\
|
||||
RRECOMMENDS:${PN} = "\
|
||||
kernel-module-pkcs7-message \
|
||||
kernel-module-pkcs8-key-parser \
|
||||
kernel-module-x509-key-parser \
|
||||
|
||||
@@ -52,9 +52,9 @@ CACHED_CONFIGUREVARS += "krb5_cv_attr_constructor_destructor=yes ac_cv_func_regc
|
||||
ac_cv_printf_positional=yes ac_cv_file__etc_environment=yes \
|
||||
ac_cv_file__etc_TIMEZONE=no"
|
||||
|
||||
CFLAGS_append = " -fPIC -DDESTRUCTOR_ATTR_WORKS=1 -I${STAGING_INCDIR}/et"
|
||||
CFLAGS_append_riscv64 = " -D_REENTRANT -pthread"
|
||||
LDFLAGS_append = " -pthread"
|
||||
CFLAGS:append = " -fPIC -DDESTRUCTOR_ATTR_WORKS=1 -I${STAGING_INCDIR}/et"
|
||||
CFLAGS:append:riscv64 = " -D_REENTRANT -pthread"
|
||||
LDFLAGS:append = " -pthread"
|
||||
|
||||
do_configure() {
|
||||
gnu-configize --force
|
||||
@@ -62,7 +62,7 @@ do_configure() {
|
||||
oe_runconf
|
||||
}
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
rm -rf ${D}/${localstatedir}/run
|
||||
rm -f ${D}${bindir}/sclient
|
||||
rm -f ${D}${bindir}/sim_client
|
||||
@@ -118,23 +118,23 @@ PACKAGES =+ "${PN}-admin-server \
|
||||
libkrb5support \
|
||||
libverto"
|
||||
|
||||
FILES_${PN} = "${libdir}/krb5/plugins/preauth/test.so"
|
||||
FILES_${PN}-doc += "${datadir}/examples"
|
||||
FILES_${PN}-dbg += "${libdir}/krb5/plugins/*/.debug"
|
||||
FILES:${PN} = "${libdir}/krb5/plugins/preauth/test.so"
|
||||
FILES:${PN}-doc += "${datadir}/examples"
|
||||
FILES:${PN}-dbg += "${libdir}/krb5/plugins/*/.debug"
|
||||
|
||||
FILES_${PN}-admin-server = "${sbindir}/kadmin.local \
|
||||
FILES:${PN}-admin-server = "${sbindir}/kadmin.local \
|
||||
${sbindir}/kadmind \
|
||||
${sbindir}/kprop \
|
||||
${sysconfdir}/default/krb5-admin-server \
|
||||
${sysconfdir}/init.d/krb5-admin-server \
|
||||
${systemd_system_unitdir}/krb5-admin-server.service"
|
||||
|
||||
FILES_${PN}-gss-samples = "${bindir}/gss-client \
|
||||
FILES:${PN}-gss-samples = "${bindir}/gss-client \
|
||||
${sbindir}/gss-server"
|
||||
|
||||
FILES_${PN}-k5tls = "${libdir}/krb5/plugins/tls/k5tls.so"
|
||||
FILES:${PN}-k5tls = "${libdir}/krb5/plugins/tls/k5tls.so"
|
||||
|
||||
FILES_${PN}-kdc = "${libdir}/krb5/plugins/kdb/db2.so \
|
||||
FILES:${PN}-kdc = "${libdir}/krb5/plugins/kdb/db2.so \
|
||||
${localstatedir}/krb5kdc \
|
||||
${sbindir}/kdb5_util \
|
||||
${sbindir}/kproplog \
|
||||
@@ -145,41 +145,41 @@ FILES_${PN}-kdc = "${libdir}/krb5/plugins/kdb/db2.so \
|
||||
${sysconfdir}/tmpfiles.d/krb5.conf \
|
||||
${systemd_system_unitdir}/krb5-kdc.service"
|
||||
|
||||
FILES_${PN}-kdc-ldap = "${libdir}/krb5/libkdb_ldap${SOLIBS} \
|
||||
FILES:${PN}-kdc-ldap = "${libdir}/krb5/libkdb_ldap${SOLIBS} \
|
||||
${libdir}/krb5/plugins/kdb/kldap.so \
|
||||
${sbindir}/kdb5_ldap_util"
|
||||
|
||||
FILES_${PN}-kpropd = "${sbindir}/kpropd"
|
||||
FILES_${PN}-otp = "${libdir}/krb5/plugins/preauth/otp.so"
|
||||
FILES_${PN}-pkinit = "${libdir}/krb5/plugins/preauth/pkinit.so"
|
||||
FILES_${PN}-spake = "${libdir}/krb5/plugins/preauth/spake.so"
|
||||
FILES_${PN}-user = "${bindir}/k*"
|
||||
FILES:${PN}-kpropd = "${sbindir}/kpropd"
|
||||
FILES:${PN}-otp = "${libdir}/krb5/plugins/preauth/otp.so"
|
||||
FILES:${PN}-pkinit = "${libdir}/krb5/plugins/preauth/pkinit.so"
|
||||
FILES:${PN}-spake = "${libdir}/krb5/plugins/preauth/spake.so"
|
||||
FILES:${PN}-user = "${bindir}/k*"
|
||||
|
||||
FILES_libgssapi-krb5 = "${libdir}/libgssapi_krb5${SOLIBS}"
|
||||
FILES_libgssrpc = "${libdir}/libgssrpc${SOLIBS}"
|
||||
FILES_libk5crypto = "${libdir}/libk5crypto${SOLIBS}"
|
||||
FILES_libkadm5clnt-mit = "${libdir}/libkadm5clnt_mit${SOLIBS}"
|
||||
FILES_libkadm5srv-mit = "${libdir}/libkadm5srv_mit${SOLIBS}"
|
||||
FILES_libkdb5 = "${libdir}/libkdb5${SOLIBS}"
|
||||
FILES_libkrad = "${libdir}/libkrad${SOLIBS}"
|
||||
FILES_libkrb5 = "${libdir}/libkrb5${SOLIBS} \
|
||||
FILES:libgssapi-krb5 = "${libdir}/libgssapi_krb5${SOLIBS}"
|
||||
FILES:libgssrpc = "${libdir}/libgssrpc${SOLIBS}"
|
||||
FILES:libk5crypto = "${libdir}/libk5crypto${SOLIBS}"
|
||||
FILES:libkadm5clnt-mit = "${libdir}/libkadm5clnt_mit${SOLIBS}"
|
||||
FILES:libkadm5srv-mit = "${libdir}/libkadm5srv_mit${SOLIBS}"
|
||||
FILES:libkdb5 = "${libdir}/libkdb5${SOLIBS}"
|
||||
FILES:libkrad = "${libdir}/libkrad${SOLIBS}"
|
||||
FILES:libkrb5 = "${libdir}/libkrb5${SOLIBS} \
|
||||
${libdir}/krb5/plugins/authdata \
|
||||
${libdir}/krb5/plugins/libkrb5"
|
||||
FILES_libkrb5support = "${libdir}/libkrb5support${SOLIBS}"
|
||||
FILES_libverto = "${libdir}/libverto${SOLIBS}"
|
||||
FILES:libkrb5support = "${libdir}/libkrb5support${SOLIBS}"
|
||||
FILES:libverto = "${libdir}/libverto${SOLIBS}"
|
||||
|
||||
RDEPENDS_${PN}-kadmin-server = "${PN}-kdc"
|
||||
RDEPENDS_${PN}-kpropd = "${PN}-kdc"
|
||||
RDEPENDS:${PN}-kadmin-server = "${PN}-kdc"
|
||||
RDEPENDS:${PN}-kpropd = "${PN}-kdc"
|
||||
|
||||
INITSCRIPT_PACKAGES = "${PN}-admin-server ${PN}-kdc"
|
||||
INITSCRIPT_NAME_${PN}-admin-server = "krb5-admin-server"
|
||||
INITSCRIPT_NAME_${PN}-kdc = "krb5-kdc"
|
||||
INITSCRIPT_NAME:${PN}-admin-server = "krb5-admin-server"
|
||||
INITSCRIPT_NAME:${PN}-kdc = "krb5-kdc"
|
||||
|
||||
SYSTEMD_PACKAGES = "${PN}-admin-server ${PN}-kdc"
|
||||
SYSTEMD_SERVICE_${PN}-admin-server = "krb5-admin-server.service"
|
||||
SYSTEMD_SERVICE_${PN}-kdc = "krb5-kdc.service"
|
||||
SYSTEMD_SERVICE:${PN}-admin-server = "krb5-admin-server.service"
|
||||
SYSTEMD_SERVICE:${PN}-kdc = "krb5-kdc.service"
|
||||
|
||||
pkg_postinst_${PN}-kdc () {
|
||||
pkg_postinst:${PN}-kdc () {
|
||||
if [ -z "$D" ]; then
|
||||
if command -v systemd-tmpfiles >/dev/null; then
|
||||
systemd-tmpfiles --create ${sysconfdir}/tmpfiles.d/krb5.conf
|
||||
|
||||
@@ -12,7 +12,7 @@ inherit autotools
|
||||
|
||||
EXTRA_OECONF += "--with-pic"
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
# Avoid conflicting with libevent. The provided compatibility layer is
|
||||
# still basic so drop it for now.
|
||||
rm ${D}${includedir}/event.h
|
||||
|
||||
@@ -16,10 +16,10 @@ LIC_FILES_CHKSUM = "\
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
DEPENDS = "libusb1 gettext-native"
|
||||
DEPENDS_append_class-target = " ${BPN}-native"
|
||||
DEPENDS:append:class-target = " ${BPN}-native"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz"
|
||||
SRC_URI_append_class-target = " file://0001-Use-native-mtp-hotplug.patch"
|
||||
SRC_URI:append:class-target = " file://0001-Use-native-mtp-hotplug.patch"
|
||||
|
||||
SRC_URI[md5sum] = "7915496daa3f4ea3e095f0161f83d4d4"
|
||||
SRC_URI[sha256sum] = "7280fe50c044c818a06667f45eabca884deab3193caa8682e0b581e847a281f0"
|
||||
@@ -38,13 +38,13 @@ PACKAGECONFIG[mtpz] = "--enable-mtpz,--disable-mtpz,libgcrypt"
|
||||
|
||||
PACKAGES =+ "${BPN}-common ${BPN}-runtime"
|
||||
|
||||
RDEPENDS_${BPN} += "libmtp-common"
|
||||
RRECOMMENDS_${BPN} += "libmtp-runtime ${PN}-bin"
|
||||
RDEPENDS:${BPN} += "libmtp-common"
|
||||
RRECOMMENDS:${BPN} += "libmtp-runtime ${PN}-bin"
|
||||
|
||||
FILES_${BPN}-common = "${nonarch_base_libdir}/udev/rules.d/*"
|
||||
SUMMARY_${BPN}-common = "The udev rules file for MTP devices"
|
||||
FILES:${BPN}-common = "${nonarch_base_libdir}/udev/rules.d/*"
|
||||
SUMMARY:${BPN}-common = "The udev rules file for MTP devices"
|
||||
|
||||
FILES_${BPN}-runtime = "${nonarch_base_libdir}/udev/mtp-probe"
|
||||
RDEPENDS_${BPN}-runtime = "libmtp-common"
|
||||
SUMMARY_${BPN}-runtime = "mtp-probe, used for the MTP udev rules"
|
||||
DESCRIPTION_${BPN}-runtime = "This package provides mtp-probe, a program to probe newly connected device interfaces from userspace to determine if they are MTP devices, used for udev rules."
|
||||
FILES:${BPN}-runtime = "${nonarch_base_libdir}/udev/mtp-probe"
|
||||
RDEPENDS:${BPN}-runtime = "libmtp-common"
|
||||
SUMMARY:${BPN}-runtime = "mtp-probe, used for the MTP udev rules"
|
||||
DESCRIPTION:${BPN}-runtime = "This package provides mtp-probe, a program to probe newly connected device interfaces from userspace to determine if they are MTP devices, used for udev rules."
|
||||
|
||||
@@ -17,9 +17,9 @@ S = "${WORKDIR}/git"
|
||||
|
||||
PACKAGECONFIG ??= "instrumentation"
|
||||
|
||||
PACKAGECONFIG_remove_mipsarch = "instrumentation"
|
||||
PACKAGECONFIG_remove_powerpc = "instrumentation"
|
||||
PACKAGECONFIG_remove_riscv32 = "instrumentation"
|
||||
PACKAGECONFIG:remove:mipsarch = "instrumentation"
|
||||
PACKAGECONFIG:remove:powerpc = "instrumentation"
|
||||
PACKAGECONFIG:remove:riscv32 = "instrumentation"
|
||||
|
||||
PACKAGECONFIG[instrumentation] = "--enable-instrumentation,--disable-instrumentation,"
|
||||
|
||||
@@ -27,6 +27,6 @@ inherit autotools pkgconfig
|
||||
|
||||
EXTRA_OECONF = "--with-zlib=${STAGING_EXECPREFIXDIR}"
|
||||
|
||||
do_configure_prepend() {
|
||||
do_configure:prepend() {
|
||||
(cd ${S}; ./autogen.sh; cd -)
|
||||
}
|
||||
|
||||
@@ -31,13 +31,13 @@ EXTRA_OECMAKE += " \
|
||||
|
||||
PACKAGES =+ "${PN}-testapps ${PN}-evlib-event ${PN}-evlib-uv ${PN}-evlib-ev"
|
||||
|
||||
FILES_${PN}-testapps += "${datadir}/libwebsockets-test-server/* ${bindir}/libwebsockets-test-*"
|
||||
FILES_${PN}-evlib-event += "${libdir}/libwebsockets-evlib_event.so"
|
||||
FILES_${PN}-evlib-uv += "${libdir}/libwebsockets-evlib_uv.so"
|
||||
FILES_${PN}-evlib-ev += "${libdir}/libwebsockets-evlib_ev.so"
|
||||
FILES:${PN}-testapps += "${datadir}/libwebsockets-test-server/* ${bindir}/libwebsockets-test-*"
|
||||
FILES:${PN}-evlib-event += "${libdir}/libwebsockets-evlib_event.so"
|
||||
FILES:${PN}-evlib-uv += "${libdir}/libwebsockets-evlib_uv.so"
|
||||
FILES:${PN}-evlib-ev += "${libdir}/libwebsockets-evlib_ev.so"
|
||||
|
||||
RDEPENDS_${PN} += " ${@bb.utils.contains('PACKAGECONFIG', 'libevent', '${PN}-evlib-event', '', d)}"
|
||||
RDEPENDS_${PN} += " ${@bb.utils.contains('PACKAGECONFIG', 'libuv', '${PN}-evlib-uv', '', d)}"
|
||||
RDEPENDS_${PN} += " ${@bb.utils.contains('PACKAGECONFIG', 'libev', '${PN}-evlib-ev', '', d)}"
|
||||
RDEPENDS:${PN} += " ${@bb.utils.contains('PACKAGECONFIG', 'libevent', '${PN}-evlib-event', '', d)}"
|
||||
RDEPENDS:${PN} += " ${@bb.utils.contains('PACKAGECONFIG', 'libuv', '${PN}-evlib-uv', '', d)}"
|
||||
RDEPENDS:${PN} += " ${@bb.utils.contains('PACKAGECONFIG', 'libev', '${PN}-evlib-ev', '', d)}"
|
||||
|
||||
RDEPENDS_${PN}-dev += " ${@bb.utils.contains('PACKAGECONFIG', 'static', '${PN}-staticdev', '', d)}"
|
||||
RDEPENDS:${PN}-dev += " ${@bb.utils.contains('PACKAGECONFIG', 'static', '${PN}-staticdev', '', d)}"
|
||||
|
||||
@@ -28,5 +28,5 @@ do_install() {
|
||||
|
||||
PACKAGES =+ "${PN}-configs"
|
||||
|
||||
FILES_${PN}-configs = "${docdir}"
|
||||
FILES_${PN}-doc = "${mandir}"
|
||||
FILES:${PN}-configs = "${docdir}"
|
||||
FILES:${PN}-doc = "${mandir}"
|
||||
|
||||
@@ -31,7 +31,7 @@ EXTRA_OECONF = " \
|
||||
--with-udev-base-dir=${nonarch_base_libdir}/udev \
|
||||
"
|
||||
|
||||
FILES_${PN} += " \
|
||||
FILES:${PN} += " \
|
||||
${datadir}/icons \
|
||||
${datadir}/polkit-1 \
|
||||
${datadir}/dbus-1 \
|
||||
@@ -40,14 +40,14 @@ FILES_${PN} += " \
|
||||
${systemd_unitdir}/system \
|
||||
"
|
||||
|
||||
FILES_${PN}-dev += " \
|
||||
FILES:${PN}-dev += " \
|
||||
${libdir}/ModemManager/*.la \
|
||||
"
|
||||
|
||||
FILES_${PN}-staticdev += " \
|
||||
FILES:${PN}-staticdev += " \
|
||||
${libdir}/ModemManager/*.a \
|
||||
"
|
||||
|
||||
FILES_${PN}-dbg += "${libdir}/ModemManager/.debug"
|
||||
FILES:${PN}-dbg += "${libdir}/ModemManager/.debug"
|
||||
|
||||
SYSTEMD_SERVICE_${PN} = "ModemManager.service"
|
||||
SYSTEMD_SERVICE:${PN} = "ModemManager.service"
|
||||
|
||||
@@ -23,7 +23,7 @@ SRC_URI[sha256sum] = "da600573dfa827d88ce114e0fed30210689381bbdcff543c931e4d6a2e
|
||||
inherit autotools pkgconfig
|
||||
|
||||
PACKAGE_BEFORE_PN += "${PN}-server"
|
||||
FILES_${PN}-server = "${bindir}/mosh-server"
|
||||
FILES:${PN}-server = "${bindir}/mosh-server"
|
||||
|
||||
NEEDED_PERL_MODULES = "\
|
||||
perl-module-socket \
|
||||
@@ -34,9 +34,9 @@ NEEDED_PERL_MODULES = "\
|
||||
"
|
||||
|
||||
# mosh uses SSH to authenticate and the client uses OpenSSH-specific features
|
||||
RDEPENDS_${PN} += "openssh-ssh ${NEEDED_PERL_MODULES}"
|
||||
RDEPENDS:${PN} += "openssh-ssh ${NEEDED_PERL_MODULES}"
|
||||
# The server seemed not to work with dropbear either
|
||||
RDEPENDS_${PN}-server += "openssh-sshd ${NEEDED_PERL_MODULES}"
|
||||
RDEPENDS:${PN}-server += "openssh-sshd ${NEEDED_PERL_MODULES}"
|
||||
|
||||
# Fails to build with thumb-1 (qemuarm)
|
||||
#| {standard input}: Assembler messages:
|
||||
|
||||
@@ -14,4 +14,4 @@ inherit features_check autotools-brokensep pkgconfig
|
||||
|
||||
REQUIRED_DISTRO_FEATURES = "x11"
|
||||
|
||||
FILES_${PN} += "${datadir}/dbus-1/"
|
||||
FILES:${PN} += "${datadir}/dbus-1/"
|
||||
|
||||
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a \
|
||||
"
|
||||
|
||||
DEPENDS = "virtual/libusb0"
|
||||
DEPENDS_append_class-target = " bluez5"
|
||||
DEPENDS:append:class-target = " bluez5"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}/${PV}/${BP}-Source.tar.gz \
|
||||
"
|
||||
@@ -24,14 +24,14 @@ EXTRA_OECMAKE += "-DBUILD_DOCUMENTATION=OFF"
|
||||
|
||||
ASNEEDED = ""
|
||||
|
||||
do_install_append () {
|
||||
do_install:append () {
|
||||
rmdir ${D}${bindir}
|
||||
}
|
||||
|
||||
PACKAGES =+ "openobex-apps"
|
||||
FILES_${PN}-apps = "${bindir}/*"
|
||||
FILES_${PN} += "${libdir}/lib*.so.*"
|
||||
FILES_${PN}-dev += "${bindir}/openobex-config"
|
||||
DEBIAN_NOAUTONAME_${PN}-apps = "1"
|
||||
FILES:${PN}-apps = "${bindir}/*"
|
||||
FILES:${PN} += "${libdir}/lib*.so.*"
|
||||
FILES:${PN}-dev += "${bindir}/openobex-config"
|
||||
DEBIAN_NOAUTONAME:${PN}-apps = "1"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
@@ -23,7 +23,7 @@ PACKAGECONFIG ?= ""
|
||||
PACKAGECONFIG[fuse] = "-DENABLE_FUSE=ON,-DENABLE_FUSE=OFF,fuse"
|
||||
PACKAGECONFIG[swig] = "-DENABLE_SWIG=ON,-DENABLE_SWIG=OFF,swig"
|
||||
|
||||
DEPENDS_remove_class-native = "fuse-native"
|
||||
DEPENDS:remove:class-native = "fuse-native"
|
||||
|
||||
S = "${WORKDIR}/${BP}-Source"
|
||||
|
||||
@@ -32,11 +32,11 @@ EXTRA_OECMAKE += "-DCMAKE_SKIP_RPATH=ON \
|
||||
-DENABLE_RUBY=OFF -DENABLE_TCL=OFF \
|
||||
"
|
||||
|
||||
do_compile_class-native () {
|
||||
do_compile:class-native () {
|
||||
oe_runmake crctable
|
||||
}
|
||||
|
||||
do_install_class-native () {
|
||||
do_install:class-native () {
|
||||
install -D -m 0755 ${B}/bfb/crctable ${D}${bindir}/crctable
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ These tools are used at runtime."
|
||||
|
||||
inherit packagegroup
|
||||
|
||||
RDEPENDS_${PN} = " \
|
||||
RDEPENDS:${PN} = " \
|
||||
bluez5-noinst-tools \
|
||||
bluez5-obex \
|
||||
bluez5-testtools \
|
||||
|
||||
@@ -21,11 +21,11 @@ S = "${WORKDIR}/git"
|
||||
|
||||
inherit cmake
|
||||
|
||||
do_configure_prepend() {
|
||||
do_configure:prepend() {
|
||||
sed -i s:\ lib/cmake:\ ${baselib}/cmake:g ${S}/src/CMakeLists.txt
|
||||
}
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
# paho-mqtt installes some thing that we don't want.
|
||||
rm -rf ${D}${prefix}/samples
|
||||
find ${D}${prefix} -maxdepth 1 -type f -delete
|
||||
|
||||
@@ -16,4 +16,4 @@ EXTRA_OECMAKE = "-DBUILD_EXAMPLES=OFF -DBUILD_TOOLS=ON -DBUILD_TOOLS_DOCS=OFF -D
|
||||
inherit cmake pkgconfig
|
||||
|
||||
PACKAGE_BEFORE_PN += "${PN}-tools"
|
||||
FILES_${PN}-tools = "${bindir}"
|
||||
FILES:${PN}-tools = "${bindir}"
|
||||
|
||||
@@ -20,6 +20,6 @@ do_install() {
|
||||
|
||||
inherit update-alternatives
|
||||
|
||||
ALTERNATIVE_${PN} = "rfkill"
|
||||
ALTERNATIVE:${PN} = "rfkill"
|
||||
ALTERNATIVE_PRIORITY = "60"
|
||||
ALTERNATIVE_LINK_NAME[rfkill] = "${sbindir}/rfkill"
|
||||
|
||||
@@ -21,6 +21,6 @@ PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
|
||||
|
||||
inherit autotools pkgconfig
|
||||
|
||||
do_configure_prepend() {
|
||||
do_configure:prepend() {
|
||||
(cd ${S}; ./autogen.sh; cd -)
|
||||
}
|
||||
|
||||
@@ -16,5 +16,5 @@ inherit autotools pkgconfig gettext gobject-introspection vala
|
||||
# configure: error: GObject-Introspection must be enabled for Vala bindings
|
||||
EXTRA_OECONF = "${@bb.utils.contains('GI_DATA_ENABLED', 'True', '--enable-vala-bindings', '--disable-vala-bindings', d)}"
|
||||
|
||||
FILES_${PN} += "${datadir}/telepathy \
|
||||
FILES:${PN} += "${datadir}/telepathy \
|
||||
${datadir}/dbus-1"
|
||||
|
||||
@@ -13,7 +13,7 @@ SRC_URI[sha256sum] = "3013ad4b38d14ee630b8cc8ada5e95ccaa849b9a6fe15d2eaf6d0717d7
|
||||
|
||||
inherit autotools pkgconfig ${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-python2", "pythonnative", "", d)}
|
||||
|
||||
FILES_${PN} += "${datadir}/telepathy \
|
||||
FILES:${PN} += "${datadir}/telepathy \
|
||||
${datadir}/dbus-1"
|
||||
|
||||
python() {
|
||||
|
||||
@@ -42,7 +42,7 @@ PACKAGECONFIG ??= "libevent glib"
|
||||
PACKAGECONFIG[libevent] = "-DWITH_LIBEVENT=ON,-DWITH_LIBEVENT=OFF,libevent"
|
||||
PACKAGECONFIG[glib] = "-DWITH_C_GLIB=ON,-DWITH_C_GLIB=OFF,glib-2.0"
|
||||
|
||||
do_install_append () {
|
||||
do_install:append () {
|
||||
ln -sf thrift ${D}/${bindir}/thrift-compiler
|
||||
}
|
||||
|
||||
@@ -50,14 +50,14 @@ LEAD_SONAME = "libthrift.so.${PV}"
|
||||
|
||||
# thrift packages
|
||||
PACKAGE_BEFORE_PN = "${PN}-compiler lib${BPN} lib${BPN}z lib${BPN}nb lib${BPN}-c-glib"
|
||||
FILES_lib${BPN} = "${libdir}/libthrift.so.*"
|
||||
FILES_lib${BPN}z = "${libdir}/libthriftz.so.*"
|
||||
FILES_lib${BPN}nb = "${libdir}/libthriftnb.so.*"
|
||||
FILES_lib${BPN}-c-glib = "${libdir}/libthrift_c_glib.so.*"
|
||||
FILES_${PN}-compiler = "${bindir}/*"
|
||||
FILES:lib${BPN} = "${libdir}/libthrift.so.*"
|
||||
FILES:lib${BPN}z = "${libdir}/libthriftz.so.*"
|
||||
FILES:lib${BPN}nb = "${libdir}/libthriftnb.so.*"
|
||||
FILES:lib${BPN}-c-glib = "${libdir}/libthrift_c_glib.so.*"
|
||||
FILES:${PN}-compiler = "${bindir}/*"
|
||||
|
||||
# The thrift packages just pulls in some default dependencies but is otherwise empty
|
||||
RRECOMMENDS_${PN} = "${PN}-compiler lib${BPN}"
|
||||
ALLOW_EMPTY_${PN} = "1"
|
||||
RRECOMMENDS_${PN}_class-native = ""
|
||||
RRECOMMENDS_${PN}_class-nativesdk = ""
|
||||
RRECOMMENDS:${PN} = "${PN}-compiler lib${BPN}"
|
||||
ALLOW_EMPTY:${PN} = "1"
|
||||
RRECOMMENDS:${PN}:class-native = ""
|
||||
RRECOMMENDS:${PN}:class-nativesdk = ""
|
||||
|
||||
@@ -5,7 +5,7 @@ LICENSE = "GPL-2.0"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=73f535ddffcf2a0d3af4f381f84f9b33"
|
||||
|
||||
DEPENDS = "curl libevent gnutls openssl libtool intltool-native glib-2.0-native"
|
||||
RDEPENDS_${PN}-web = "${PN}"
|
||||
RDEPENDS:${PN}-web = "${PN}"
|
||||
|
||||
SRC_URI = " \
|
||||
gitsm://github.com/transmission/transmission \
|
||||
@@ -45,7 +45,7 @@ do_configure() {
|
||||
oe_runconf
|
||||
}
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then
|
||||
sed -i '/USERNAME=/c\USERNAME=${TRANSMISSION_USER}' ${WORKDIR}/transmission-daemon
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
@@ -62,12 +62,12 @@ do_install_append() {
|
||||
|
||||
PACKAGES += "${PN}-gtk ${PN}-client ${PN}-web"
|
||||
|
||||
FILES_${PN}-client = "${bindir}/transmission-remote ${bindir}/transmission-cli ${bindir}/transmission-create ${bindir}/transmission-show ${bindir}/transmission-edit"
|
||||
FILES_${PN}-gtk += "${bindir}/transmission-gtk ${datadir}/icons ${datadir}/applications ${datadir}/pixmaps"
|
||||
FILES_${PN}-web = "${datadir}/transmission/web"
|
||||
FILES_${PN} = "${bindir}/transmission-daemon ${sysconfdir}/init.d/transmission-daemon ${datadir}/appdata"
|
||||
FILES:${PN}-client = "${bindir}/transmission-remote ${bindir}/transmission-cli ${bindir}/transmission-create ${bindir}/transmission-show ${bindir}/transmission-edit"
|
||||
FILES:${PN}-gtk += "${bindir}/transmission-gtk ${datadir}/icons ${datadir}/applications ${datadir}/pixmaps"
|
||||
FILES:${PN}-web = "${datadir}/transmission/web"
|
||||
FILES:${PN} = "${bindir}/transmission-daemon ${sysconfdir}/init.d/transmission-daemon ${datadir}/appdata"
|
||||
|
||||
SYSTEMD_SERVICE_${PN} = "transmission-daemon.service"
|
||||
SYSTEMD_SERVICE:${PN} = "transmission-daemon.service"
|
||||
|
||||
# Script transmission-daemon following the guidelines in:
|
||||
# https://trac.transmissionbt.com/wiki/Scripts/initd
|
||||
|
||||
@@ -17,6 +17,6 @@ S = "${WORKDIR}/git"
|
||||
|
||||
EXTRA_OECONF += "--without-preflight"
|
||||
|
||||
FILES_${PN} += "${base_libdir}/udev/rules.d/"
|
||||
FILES:${PN} += "${base_libdir}/udev/rules.d/"
|
||||
|
||||
SYSTEMD_SERVICE_${PN} = "usbmuxd.service"
|
||||
SYSTEMD_SERVICE:${PN} = "usbmuxd.service"
|
||||
|
||||
@@ -36,4 +36,4 @@ do_install () {
|
||||
install -m 0755 ${S}/scripts/sta_reset_parm ${D}${sbindir}
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} = "wpa-supplicant"
|
||||
RDEPENDS:${PN} = "wpa-supplicant"
|
||||
|
||||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=55ca817ccb7d5b5b66355690e9abc605"
|
||||
inherit pkgconfig
|
||||
|
||||
DEPENDS = "wvstreams"
|
||||
RDEPENDS_${PN} = "ppp"
|
||||
RDEPENDS:${PN} = "ppp"
|
||||
|
||||
SRC_URI = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${BPN}/${BP}.tar.bz2 \
|
||||
file://typo_pon.wvdial.1.patch \
|
||||
@@ -16,7 +16,7 @@ SRC_URI = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.
|
||||
SRC_URI[md5sum] = "37e9a2d664effe4efd44c0e1a20136de"
|
||||
SRC_URI[sha256sum] = "99906d9560cbdbc97e1855e7b0a7169f1e11983be3ac539140423f09debced82"
|
||||
|
||||
COMPATIBLE_HOST_libc-musl = "null"
|
||||
COMPATIBLE_HOST:libc-musl = "null"
|
||||
EXTRA_OEMAKE = ""
|
||||
export WVLINK="${LD}"
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ LICENSE = "LGPLv2"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=55ca817ccb7d5b5b66355690e9abc605"
|
||||
|
||||
DEPENDS = "zlib openssl (>= 0.9.8) dbus readline"
|
||||
DEPENDS_append_libc-musl = " argp-standalone libexecinfo"
|
||||
DEPENDS:append:libc-musl = " argp-standalone libexecinfo"
|
||||
|
||||
SRC_URI = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${BPN}/${BP}.tar.gz \
|
||||
file://04_signed_request.diff \
|
||||
@@ -28,31 +28,31 @@ SRC_URI = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.
|
||||
SRC_URI[md5sum] = "2760dac31a43d452a19a3147bfde571c"
|
||||
SRC_URI[sha256sum] = "8403f5fbf83aa9ac0c6ce15d97fd85607488152aa84e007b7d0621b8ebc07633"
|
||||
|
||||
COMPATIBLE_HOST_libc-musl = "null"
|
||||
COMPATIBLE_HOST:libc-musl = "null"
|
||||
|
||||
inherit autotools-brokensep pkgconfig
|
||||
|
||||
TARGET_CFLAGS_append = " -fno-tree-dce -fno-optimize-sibling-calls"
|
||||
TARGET_CFLAGS:append = " -fno-tree-dce -fno-optimize-sibling-calls"
|
||||
|
||||
LDFLAGS_append = " -Wl,-rpath-link,${CROSS_DIR}/${TARGET_SYS}/lib"
|
||||
LDFLAGS:append = " -Wl,-rpath-link,${CROSS_DIR}/${TARGET_SYS}/lib"
|
||||
|
||||
EXTRA_OECONF = " --without-tcl --without-qt --without-pam --without-valgrind"
|
||||
|
||||
PACKAGES_prepend = "libuniconf "
|
||||
PACKAGES_prepend = "uniconfd "
|
||||
PACKAGES_prepend = "libwvstreams-base "
|
||||
PACKAGES_prepend = "libwvstreams-extras "
|
||||
PACKAGES_prepend = "${PN}-valgrind "
|
||||
PACKAGES:prepend = "libuniconf "
|
||||
PACKAGES:prepend = "uniconfd "
|
||||
PACKAGES:prepend = "libwvstreams-base "
|
||||
PACKAGES:prepend = "libwvstreams-extras "
|
||||
PACKAGES:prepend = "${PN}-valgrind "
|
||||
|
||||
RPROVIDES_${PN}-dbg += "libuniconf-dbg uniconfd-dbg libwvstreams-base-dbg libwvstreams-extras-dbg"
|
||||
RPROVIDES:${PN}-dbg += "libuniconf-dbg uniconfd-dbg libwvstreams-base-dbg libwvstreams-extras-dbg"
|
||||
|
||||
FILES_libuniconf = "${libdir}/libuniconf.so.*"
|
||||
FILES:libuniconf = "${libdir}/libuniconf.so.*"
|
||||
|
||||
FILES_uniconfd = "${sbindir}/uniconfd ${sysconfdir}/uniconf.conf ${localstatedir}/uniconf"
|
||||
FILES:uniconfd = "${sbindir}/uniconfd ${sysconfdir}/uniconf.conf ${localstatedir}/uniconf"
|
||||
|
||||
FILES_libwvstreams-base = "${libdir}/libwvutils.so.*"
|
||||
FILES:libwvstreams-base = "${libdir}/libwvutils.so.*"
|
||||
|
||||
FILES_libwvstreams-extras = "${libdir}/libwvbase.so.* ${libdir}/libwvstreams.so.*"
|
||||
FILES:libwvstreams-extras = "${libdir}/libwvbase.so.* ${libdir}/libwvstreams.so.*"
|
||||
|
||||
FILES_${PN}-valgrind = "${libdir}/valgrind/wvstreams.supp"
|
||||
RDEPENDS_${PN} += "perl"
|
||||
FILES:${PN}-valgrind = "${libdir}/valgrind/wvstreams.supp"
|
||||
RDEPENDS:${PN} += "perl"
|
||||
|
||||
@@ -34,12 +34,12 @@ SRC_URI[sha256sum] = "76cb704f2a04fbc87bb3eff44fa71339c355d467f7bbd8fb53f8927c76
|
||||
inherit autotools-brokensep linux-kernel-base pkgconfig systemd useradd
|
||||
|
||||
SYSTEMD_PACKAGES = "${PN}"
|
||||
SYSTEMD_SERVICE_${PN} = "zabbix-agent.service"
|
||||
SYSTEMD_SERVICE:${PN} = "zabbix-agent.service"
|
||||
SYSTEMD_AUTO_ENABLE = "enable"
|
||||
|
||||
USERADD_PACKAGES = "${PN}"
|
||||
GROUPADD_PARAM_${PN} = "-r zabbix"
|
||||
USERADD_PARAM_${PN} = "-r -g zabbix -d /var/lib/zabbix \
|
||||
GROUPADD_PARAM:${PN} = "-r zabbix"
|
||||
USERADD_PARAM:${PN} = "-r -g zabbix -d /var/lib/zabbix \
|
||||
-s /sbin/nologin -c \"Zabbix Monitoring System\" zabbix \
|
||||
"
|
||||
|
||||
@@ -60,13 +60,13 @@ EXTRA_OECONF = " \
|
||||
--with-libpcre=${STAGING_EXECPREFIXDIR} \
|
||||
--with-iconv=${STAGING_EXECPREFIXDIR} \
|
||||
"
|
||||
CFLAGS_append = " -lldap -llber -pthread"
|
||||
CFLAGS:append = " -lldap -llber -pthread"
|
||||
|
||||
do_configure_prepend() {
|
||||
do_configure:prepend() {
|
||||
export KERNEL_VERSION="${KERNEL_VERSION}"
|
||||
}
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
|
||||
install -d ${D}${systemd_unitdir}/system
|
||||
install -m 0644 ${WORKDIR}/zabbix-agent.service ${D}${systemd_unitdir}/system/
|
||||
@@ -74,6 +74,6 @@ do_install_append() {
|
||||
fi
|
||||
}
|
||||
|
||||
FILES_${PN} += "${libdir}"
|
||||
FILES:${PN} += "${libdir}"
|
||||
|
||||
RDEPENDS_${PN} = "logrotate"
|
||||
RDEPENDS:${PN} = "logrotate"
|
||||
|
||||
@@ -17,4 +17,4 @@ EXTRA_OECMAKE = "-DCPPZMQ_BUILD_TESTS=OFF"
|
||||
|
||||
PACKAGES = "${PN}-dev"
|
||||
|
||||
RDEPENDS_${PN}-dev = "zeromq-dev"
|
||||
RDEPENDS:${PN}-dev = "zeromq-dev"
|
||||
|
||||
@@ -15,12 +15,12 @@ inherit cmake pkgconfig
|
||||
|
||||
PACKAGES = "lib${BPN} lib${BPN}-dev lib${BPN}-staticdev ${PN} ${PN}-dbg"
|
||||
|
||||
FILES_${PN} = "${bindir}/*"
|
||||
FILES_lib${BPN} = "${libdir}/*.so.*"
|
||||
FILES_lib${BPN}-dev = "${libdir}/*.so ${libdir}/pkgconfig ${includedir} ${datadir}/cmake"
|
||||
FILES_lib${BPN}-staticdev = "${libdir}/lib*.a"
|
||||
FILES:${PN} = "${bindir}/*"
|
||||
FILES:lib${BPN} = "${libdir}/*.so.*"
|
||||
FILES:lib${BPN}-dev = "${libdir}/*.so ${libdir}/pkgconfig ${includedir} ${datadir}/cmake"
|
||||
FILES:lib${BPN}-staticdev = "${libdir}/lib*.a"
|
||||
|
||||
RDEPENDS_lib${BPN}-dev = "zeromq-dev"
|
||||
RDEPENDS:lib${BPN}-dev = "zeromq-dev"
|
||||
|
||||
PACKAGECONFIG ??= "lz4 uuid curl ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
|
||||
PACKAGECONFIG[curl] = "-DCZMQ_WITH_LIBCURL=ON,-DCZMQ_WITH_LIBCURL=OFF,curl"
|
||||
@@ -32,7 +32,7 @@ PACKAGECONFIG[uuid] = "-DCZMQ_WITH_UUID=ON,-DCZMQ_WITH_UUID=OFF,util-linux"
|
||||
|
||||
BBCLASSEXTEND = "nativesdk"
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
mkdir -p ${D}/${includedir}/${BPN}
|
||||
mv ${D}/${includedir}/sha1.h ${D}/${includedir}/${BPN}/.
|
||||
}
|
||||
|
||||
@@ -26,4 +26,4 @@ do_install_ptest () {
|
||||
install -m 0755 ${B}/bin/test_* ${D}${PTEST_PATH}/tests
|
||||
}
|
||||
|
||||
FILES_${PN}-doc += "${datadir}/zmq/*.txt"
|
||||
FILES:${PN}-doc += "${datadir}/zmq/*.txt"
|
||||
|
||||
@@ -4,7 +4,7 @@ SECTION = "base"
|
||||
LICENSE = "GPLv3"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=4cf0188f02184e1e84b9586ac53c3f83"
|
||||
|
||||
FILEEXTRAPATHS_prepend = "${THISDIR}/files"
|
||||
FILEEXTRAPATHS:prepend = "${THISDIR}/files"
|
||||
SRC_URI = "git://github.com/dbus-cxx/dbus-cxx.git;branch=master"
|
||||
SRC_URI += "file://fix_build_musl.patch"
|
||||
SRCREV = "ea7f8e361d11dc7d41d9ae2c4128aed2cdadd84e"
|
||||
@@ -14,7 +14,7 @@ DEPENDS = "\
|
||||
libsigc++-2.0 \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
RDEPENDS:${PN} = "\
|
||||
dbus \
|
||||
libsigc++-2.0 \
|
||||
"
|
||||
|
||||
@@ -17,15 +17,15 @@ DEPENDS = "expat systemd"
|
||||
DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'libselinux (>= 3.2)', '', d)}"
|
||||
DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'audit (>= 3.0)', '', d)}"
|
||||
|
||||
RDEPENDS_${PN} += "dbus-common"
|
||||
RDEPENDS:${PN} += "dbus-common"
|
||||
|
||||
REQUIRED_DISTRO_FEATURES = "systemd"
|
||||
|
||||
SYSTEMD_SERVICE_${PN} = "${BPN}.service"
|
||||
SYSTEMD_SERVICE:${PN} = "${BPN}.service"
|
||||
|
||||
FILES_${PN} += "${systemd_system_unitdir}"
|
||||
FILES_${PN} += "${systemd_user_unitdir}"
|
||||
FILES_${PN} += "${nonarch_libdir}/systemd/catalog"
|
||||
FILES:${PN} += "${systemd_system_unitdir}"
|
||||
FILES:${PN} += "${systemd_user_unitdir}"
|
||||
FILES:${PN} += "${nonarch_libdir}/systemd/catalog"
|
||||
|
||||
EXTRA_OEMESON += " -Dselinux=${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'true', 'false', d)}"
|
||||
EXTRA_OEMESON += " -Daudit=${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'true', 'false', d)}"
|
||||
|
||||
@@ -25,6 +25,6 @@ LDFLAGS += "-pthread"
|
||||
|
||||
PACKAGE_BEFORE_PN = "${PN}-tools"
|
||||
|
||||
FILES_${PN}-tools = "${bindir}"
|
||||
FILES:${PN}-tools = "${bindir}"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
@@ -4,7 +4,7 @@ SRC_URI += "file://${BPN}.initd \
|
||||
file://0001-Remove-modules_clean-from-clean-target.patch \
|
||||
"
|
||||
|
||||
SRC_URI_append_libc-musl = " file://Drop-use-of-error-h.patch"
|
||||
SRC_URI:append:libc-musl = " file://Drop-use-of-error-h.patch"
|
||||
|
||||
inherit update-rc.d
|
||||
|
||||
@@ -23,4 +23,4 @@ do_install() {
|
||||
install -Dm 0755 ${S}/mkemlog ${D}${bindir}/mkemlog
|
||||
}
|
||||
|
||||
RRECOMMENDS_${PN} += "kernel-module-emlog"
|
||||
RRECOMMENDS:${PN} += "kernel-module-emlog"
|
||||
|
||||
@@ -23,4 +23,4 @@ CFLAGS += "-fPIC"
|
||||
DEPENDS = "libpng libglu zlib libxrandr libxinerama libxi libxcursor"
|
||||
REQUIRED_DISTRO_FEATURES = "x11 opengl"
|
||||
|
||||
COMPATIBLE_HOST_libc-musl = "null"
|
||||
COMPATIBLE_HOST:libc-musl = "null"
|
||||
|
||||
@@ -15,13 +15,13 @@ SHRT_VER = "${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}"
|
||||
|
||||
SRC_URI[archive.sha256sum] = "69bd6b5327716ca2f511ab580a969fd7bf0cd2c24ce15e1d0e530592d3ff209c"
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
for i in generate_wrap_init.pl gmmproc; do
|
||||
sed -i -e '1s,.*,#!${bindir}/env perl,' ${D}${libdir}/glibmm-2.4/proc/$i
|
||||
done
|
||||
}
|
||||
|
||||
FILES_${PN} = "${libdir}/lib*.so.*"
|
||||
FILES_${PN}-dev += "${datadir}/glibmm-* ${libdir}/glibmm-2.4/include/ ${libdir}/glibmm-2.4/proc/ ${libdir}/giomm-2.4/include/"
|
||||
FILES:${PN} = "${libdir}/lib*.so.*"
|
||||
FILES:${PN}-dev += "${datadir}/glibmm-* ${libdir}/glibmm-2.4/include/ ${libdir}/glibmm-2.4/proc/ ${libdir}/giomm-2.4/include/"
|
||||
|
||||
RDEPENDS_${PN}-dev = "perl"
|
||||
RDEPENDS:${PN}-dev = "perl"
|
||||
|
||||
@@ -13,5 +13,5 @@ S = "${WORKDIR}/git"
|
||||
SRCREV = "f02ff51449240102c27a97173dc495e8e7789046"
|
||||
SRC_URI = "git://github.com/nfc-tools/libnfc.git"
|
||||
|
||||
CFLAGS_append_libc-musl = " -D_GNU_SOURCE"
|
||||
CFLAGS:append:libc-musl = " -D_GNU_SOURCE"
|
||||
DEPENDS = "libusb"
|
||||
|
||||
@@ -12,8 +12,8 @@ S = "${WORKDIR}/libsigc++-${PV}"
|
||||
|
||||
inherit meson
|
||||
|
||||
FILES_${PN}-dev += "${libdir}/sigc++-*/"
|
||||
FILES_${PN}-doc += "${datadir}/devhelp"
|
||||
FILES:${PN}-dev += "${libdir}/sigc++-*/"
|
||||
FILES:${PN}-doc += "${datadir}/devhelp"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
SECURITY_CFLAGS = "${SECURITY_NO_PIE_CFLAGS}"
|
||||
|
||||
@@ -13,8 +13,8 @@ S = "${WORKDIR}/libsigc++-${PV}"
|
||||
|
||||
inherit setuptools3 meson
|
||||
|
||||
FILES_${PN}-dev += "${libdir}/sigc++-*/"
|
||||
FILES_${PN}-doc += "${datadir}/devhelp"
|
||||
FILES:${PN}-dev += "${libdir}/sigc++-*/"
|
||||
FILES:${PN}-doc += "${datadir}/devhelp"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
SECURITY_CFLAGS = "${SECURITY_NO_PIE_CFLAGS}"
|
||||
|
||||
@@ -22,7 +22,7 @@ do_compile_ptest() {
|
||||
oe_runmake -C examples buildtest
|
||||
}
|
||||
|
||||
FILES_${PN}-doc += "${datadir}/devhelp"
|
||||
FILES_${PN}-dev += "${libdir}/libxml++-2.6/include/libxml++config.h"
|
||||
FILES:${PN}-doc += "${datadir}/devhelp"
|
||||
FILES:${PN}-dev += "${libdir}/libxml++-2.6/include/libxml++config.h"
|
||||
|
||||
RDEPENDS_${PN}-ptest += "make"
|
||||
RDEPENDS:${PN}-ptest += "make"
|
||||
|
||||
@@ -30,4 +30,4 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
#
|
||||
#CONFFILES_${PN} += '${@distro_feed_configs(d)}'
|
||||
|
||||
CONFFILES_${PN} += '${@ " ".join( [ ( "${sysconfdir}/opkg/%s-feed.conf" % feed ) for feed in "all ${PACKAGE_EXTRA_ARCHS} ${MACHINE_ARCH}".split() ] ) }'
|
||||
CONFFILES:${PN} += '${@ " ".join( [ ( "${sysconfdir}/opkg/%s-feed.conf" % feed ) for feed in "all ${PACKAGE_EXTRA_ARCHS} ${MACHINE_ARCH}".split() ] ) }'
|
||||
|
||||
@@ -22,11 +22,11 @@ EXTRA_OECONF += "--enable-test --enable-destructive --disable-docs"
|
||||
PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)}"
|
||||
PACKAGECONFIG[systemd] = "--with-systemd, --without-systemd, systemd"
|
||||
|
||||
do_configure_prepend() {
|
||||
do_configure:prepend() {
|
||||
${S}/autogen.sh
|
||||
}
|
||||
|
||||
SYSTEMD_SERVICE_${PN} = "ndctl-monitor.service"
|
||||
SYSTEMD_AUTO_ENABLE_${PN} = "disable"
|
||||
SYSTEMD_SERVICE:${PN} = "ndctl-monitor.service"
|
||||
SYSTEMD_AUTO_ENABLE:${PN} = "disable"
|
||||
|
||||
FILES_${PN} += "${datadir}/daxctl/daxctl.conf"
|
||||
FILES:${PN} += "${datadir}/daxctl/daxctl.conf"
|
||||
|
||||
@@ -20,4 +20,4 @@ EXTRA_OECMAKE = " \
|
||||
"
|
||||
|
||||
# Headers only so PN is empty
|
||||
RDEPENDS_${PN}-dev = ""
|
||||
RDEPENDS:${PN}-dev = ""
|
||||
|
||||
@@ -31,17 +31,17 @@ PACKAGES = "opencl-icd-loader opencl-icd-loader-dev"
|
||||
PACKAGES += "libicdlog libicdlog-dbg"
|
||||
PACKAGE_DEBUG_SPLIT_STYLE = "debug-without-src"
|
||||
|
||||
FILES_${PN} = " \
|
||||
FILES:${PN} = " \
|
||||
${bindir}/icd_loader_test \
|
||||
${libdir}/libOpenCLDriverStub.so \
|
||||
${libdir}/libOpenCL.so.1.2 \
|
||||
"
|
||||
FILES_${PN}-dev = " \
|
||||
FILES:${PN}-dev = " \
|
||||
${libdir}/libOpenCL.so \
|
||||
${libdir}/libOpenCL.so.1 \
|
||||
"
|
||||
|
||||
FILES_libicdlog = "${libdir}/libIcdLog.so"
|
||||
FILES_libicdlog-dbg = "${libdir}/.debug/libIcdLog.so"
|
||||
FILES:libicdlog = "${libdir}/libIcdLog.so"
|
||||
FILES:libicdlog-dbg = "${libdir}/.debug/libIcdLog.so"
|
||||
|
||||
RDEPENDS_${PN} = "libicdlog"
|
||||
RDEPENDS:${PN} = "libicdlog"
|
||||
|
||||
@@ -26,7 +26,7 @@ TASK_BASIC_SSHDAEMON ?= "dropbear openssh-sftp openssh-sftp-server"
|
||||
#
|
||||
# Util-linux (u)mount is included because the busybox one can't handle /etc/mtab being symlinked to /proc/mounts
|
||||
#
|
||||
RDEPENDS_${PN} = "\
|
||||
RDEPENDS:${PN} = "\
|
||||
${TASK_BASIC_SSHDAEMON} \
|
||||
avahi-daemon avahi-utils \
|
||||
"
|
||||
@@ -37,7 +37,7 @@ RDEPENDS_${PN} = "\
|
||||
# 2) Distro features: packages associated with those
|
||||
# 3) Nice to have: packages that are nice to have, but aren't strictly needed
|
||||
#
|
||||
RRECOMMENDS_${PN} = "\
|
||||
RRECOMMENDS:${PN} = "\
|
||||
${MACHINE_EXTRA_RRECOMMENDS} \
|
||||
${@bb.utils.contains("MACHINE_FEATURES", "usbhost", "usbutils", "", d)} \
|
||||
${@bb.utils.contains("MACHINE_FEATURES", "alsa", "alsa-utils-alsamixer", "", d)} \
|
||||
|
||||
@@ -17,7 +17,7 @@ DEPENDS = "virtual/kernel"
|
||||
#
|
||||
# minimal set of packages - needed to boot
|
||||
#
|
||||
RDEPENDS_${PN} = "\
|
||||
RDEPENDS:${PN} = "\
|
||||
base-files \
|
||||
base-passwd \
|
||||
busybox \
|
||||
@@ -26,7 +26,7 @@ RDEPENDS_${PN} = "\
|
||||
${MACHINE_ESSENTIAL_EXTRA_RDEPENDS} \
|
||||
"
|
||||
|
||||
RRECOMMENDS_${PN} = "\
|
||||
RRECOMMENDS:${PN} = "\
|
||||
kernel \
|
||||
${MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS} \
|
||||
"
|
||||
|
||||
@@ -32,7 +32,7 @@ PACKAGES = "\
|
||||
"
|
||||
#PACKAGES += "packagegroup-meta-oe-fortran-packages"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe = "\
|
||||
RDEPENDS:packagegroup-meta-oe = "\
|
||||
packagegroup-meta-oe-benchmarks \
|
||||
packagegroup-meta-oe-bsp \
|
||||
packagegroup-meta-oe-connectivity \
|
||||
@@ -58,7 +58,7 @@ RDEPENDS_packagegroup-meta-oe = "\
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "ptest", "packagegroup-meta-oe-ptest-packages", "", d)} \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-benchmarks = "\
|
||||
RDEPENDS:packagegroup-meta-oe-benchmarks = "\
|
||||
bonnie++ \
|
||||
dbench \
|
||||
dhrystone \
|
||||
@@ -82,17 +82,17 @@ RDEPENDS_packagegroup-meta-oe-benchmarks = "\
|
||||
tiobench \
|
||||
whetstone \
|
||||
"
|
||||
RDEPENDS_packagegroup-meta-oe-benchmarks_append_armv7a = " cpuburn-arm"
|
||||
RDEPENDS_packagegroup-meta-oe-benchmarks_append_armv7ve = " cpuburn-arm"
|
||||
RDEPENDS_packagegroup-meta-oe-benchmarks_append_aarch64 = " cpuburn-arm"
|
||||
RDEPENDS:packagegroup-meta-oe-benchmarks:append:armv7a = " cpuburn-arm"
|
||||
RDEPENDS:packagegroup-meta-oe-benchmarks:append:armv7ve = " cpuburn-arm"
|
||||
RDEPENDS:packagegroup-meta-oe-benchmarks:append:aarch64 = " cpuburn-arm"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-benchmarks_remove_mipsarch = "libhugetlbfs"
|
||||
RDEPENDS_packagegroup-meta-oe-benchmarks_remove_mips64 = "tinymembench"
|
||||
RDEPENDS_packagegroup-meta-oe-benchmarks_remove_mips64el = "tinymembench"
|
||||
RDEPENDS_packagegroup-meta-oe-benchmarks_remove_riscv64 = "libhugetlbfs"
|
||||
RDEPENDS_packagegroup-meta-oe-benchmarks_remove_riscv32 = "libhugetlbfs"
|
||||
RDEPENDS:packagegroup-meta-oe-benchmarks:remove:mipsarch = "libhugetlbfs"
|
||||
RDEPENDS:packagegroup-meta-oe-benchmarks:remove:mips64 = "tinymembench"
|
||||
RDEPENDS:packagegroup-meta-oe-benchmarks:remove:mips64el = "tinymembench"
|
||||
RDEPENDS:packagegroup-meta-oe-benchmarks:remove:riscv64 = "libhugetlbfs"
|
||||
RDEPENDS:packagegroup-meta-oe-benchmarks:remove:riscv32 = "libhugetlbfs"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-bsp ="\
|
||||
RDEPENDS:packagegroup-meta-oe-bsp ="\
|
||||
acpitool \
|
||||
cpufrequtils \
|
||||
edac-utils \
|
||||
@@ -108,18 +108,18 @@ RDEPENDS_packagegroup-meta-oe-bsp ="\
|
||||
pcmciautils \
|
||||
pointercal \
|
||||
"
|
||||
RDEPENDS_packagegroup-meta-oe-bsp_append_x86 = " ledmon"
|
||||
RDEPENDS_packagegroup-meta-oe-bsp_append_x86-64 = " ledmon"
|
||||
RDEPENDS:packagegroup-meta-oe-bsp:append:x86 = " ledmon"
|
||||
RDEPENDS:packagegroup-meta-oe-bsp:append:x86-64 = " ledmon"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-bsp_remove_libc-musl = "ledmon"
|
||||
RDEPENDS_packagegroup-meta-oe-bsp_remove_mipsarch = "efivar efibootmgr"
|
||||
RDEPENDS_packagegroup-meta-oe-bsp_remove_powerpc = "efivar efibootmgr"
|
||||
RDEPENDS_packagegroup-meta-oe-bsp_remove_powerpc64 = "efivar efibootmgr"
|
||||
RDEPENDS_packagegroup-meta-oe-bsp_remove_powerpc64le = "efivar efibootmgr"
|
||||
RDEPENDS_packagegroup-meta-oe-bsp_remove_riscv64 = "efivar efibootmgr"
|
||||
RDEPENDS_packagegroup-meta-oe-bsp_remove_riscv32 = "efivar efibootmgr"
|
||||
RDEPENDS:packagegroup-meta-oe-bsp:remove:libc-musl = "ledmon"
|
||||
RDEPENDS:packagegroup-meta-oe-bsp:remove:mipsarch = "efivar efibootmgr"
|
||||
RDEPENDS:packagegroup-meta-oe-bsp:remove:powerpc = "efivar efibootmgr"
|
||||
RDEPENDS:packagegroup-meta-oe-bsp:remove:powerpc64 = "efivar efibootmgr"
|
||||
RDEPENDS:packagegroup-meta-oe-bsp:remove:powerpc64le = "efivar efibootmgr"
|
||||
RDEPENDS:packagegroup-meta-oe-bsp:remove:riscv64 = "efivar efibootmgr"
|
||||
RDEPENDS:packagegroup-meta-oe-bsp:remove:riscv32 = "efivar efibootmgr"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-connectivity ="\
|
||||
RDEPENDS:packagegroup-meta-oe-connectivity ="\
|
||||
gammu \
|
||||
gattlib \
|
||||
gensio \
|
||||
@@ -161,14 +161,14 @@ RDEPENDS_packagegroup-meta-oe-connectivity ="\
|
||||
zeromq \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-connectivity_append_libc-glibc = " wvstreams wvdial"
|
||||
RDEPENDS:packagegroup-meta-oe-connectivity:append:libc-glibc = " wvstreams wvdial"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-connectivity-python2 = "\
|
||||
RDEPENDS:packagegroup-meta-oe-connectivity-python2 = "\
|
||||
${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-python2", "telepathy-idle", "", d)} \
|
||||
"
|
||||
|
||||
# dracut needs dracut
|
||||
RDEPENDS_packagegroup-meta-oe-core = "\
|
||||
RDEPENDS:packagegroup-meta-oe-core = "\
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "systemd", "dbus-broker", "", d)} \
|
||||
dbus-daemon-proxy \
|
||||
libdbus-c++ \
|
||||
@@ -192,11 +192,11 @@ RDEPENDS_packagegroup-meta-oe-core = "\
|
||||
usleep \
|
||||
dbus-cxx \
|
||||
"
|
||||
RDEPENDS_packagegroup-meta-oe-core_append_libc-glibc = " ${@bb.utils.contains("DISTRO_FEATURES", "x11 opengl", "glfw", "", d)}"
|
||||
RDEPENDS_packagegroup-meta-oe-core_remove_riscv64 = "safec"
|
||||
RDEPENDS_packagegroup-meta-oe-core_remove_riscv32 = "safec"
|
||||
RDEPENDS:packagegroup-meta-oe-core:append:libc-glibc = " ${@bb.utils.contains("DISTRO_FEATURES", "x11 opengl", "glfw", "", d)}"
|
||||
RDEPENDS:packagegroup-meta-oe-core:remove:riscv64 = "safec"
|
||||
RDEPENDS:packagegroup-meta-oe-core:remove:riscv32 = "safec"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-crypto ="\
|
||||
RDEPENDS:packagegroup-meta-oe-crypto ="\
|
||||
botan \
|
||||
cryptsetup \
|
||||
fsverity-utils \
|
||||
@@ -207,7 +207,7 @@ RDEPENDS_packagegroup-meta-oe-crypto ="\
|
||||
"
|
||||
RDEPENDS_packagegroup-meta-oe-crypto_remove_riscv32 = "botan"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-dbs ="\
|
||||
RDEPENDS:packagegroup-meta-oe-dbs ="\
|
||||
influxdb \
|
||||
leveldb \
|
||||
libdbi \
|
||||
@@ -220,11 +220,11 @@ RDEPENDS_packagegroup-meta-oe-dbs ="\
|
||||
sqlite \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-dbs-python2 ="\
|
||||
RDEPENDS:packagegroup-meta-oe-dbs-python2 ="\
|
||||
${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-python2", bb.utils.contains('I_SWEAR_TO_MIGRATE_TO_PYTHON3', 'yes', 'mysql-python', '', d), "", d)} \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-devtools ="\
|
||||
RDEPENDS:packagegroup-meta-oe-devtools ="\
|
||||
abseil-cpp \
|
||||
breakpad \
|
||||
bootchart \
|
||||
@@ -305,26 +305,26 @@ RDEPENDS_packagegroup-meta-oe-devtools ="\
|
||||
json-schema-validator \
|
||||
poke \
|
||||
"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_append_x86 = " cpuid msr-tools pmtools"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_append_x86-64 = " cpuid msr-tools pcimem pmtools"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_append_arm = " pcimem"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_append_aarch64 = " pcimem"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_append_libc-musl = " musl-nscd"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:append:x86 = " cpuid msr-tools pmtools"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:append:x86-64 = " cpuid msr-tools pcimem pmtools"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:append:arm = " pcimem"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:append:aarch64 = " pcimem"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:append:libc-musl = " musl-nscd"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_remove_arm = "concurrencykit"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_remove_armv5 = "uftrace nodejs"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_remove_mipsarch = "concurrencykit lshw ply uftrace"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_remove_mips64 = "luajit nodejs"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_remove_mips64el = "luajit nodejs"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_remove_powerpc = "android-tools breakpad lshw luajit uftrace"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_remove_powerpc64 = "android-tools breakpad lshw luajit ply uftrace"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_remove_powerpc64le = "android-tools breakpad lshw luajit ply uftrace"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_remove_riscv64 = "breakpad concurrencykit heaptrack lshw ltrace luajit nodejs ply uftrace"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_remove_riscv32 = "breakpad concurrencykit heaptrack lshw ltrace luajit nodejs ply uftrace"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_remove_aarch64 = "concurrencykit"
|
||||
RDEPENDS_packagegroup-meta-oe-devtools_remove_x86 = "ply"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:remove:arm = "concurrencykit"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:remove:armv5 = "uftrace nodejs"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:remove:mipsarch = "concurrencykit lshw ply uftrace"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:remove:mips64 = "luajit nodejs"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:remove:mips64el = "luajit nodejs"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:remove:powerpc = "android-tools breakpad lshw luajit uftrace"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:remove:powerpc64 = "android-tools breakpad lshw luajit ply uftrace"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:remove:powerpc64le = "android-tools breakpad lshw luajit ply uftrace"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:remove:riscv64 = "breakpad concurrencykit heaptrack lshw ltrace luajit nodejs ply uftrace"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:remove:riscv32 = "breakpad concurrencykit heaptrack lshw ltrace luajit nodejs ply uftrace"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:remove:aarch64 = "concurrencykit"
|
||||
RDEPENDS:packagegroup-meta-oe-devtools:remove:x86 = "ply"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-extended ="\
|
||||
RDEPENDS:packagegroup-meta-oe-extended ="\
|
||||
bitwise \
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "x11 wayland opengl", "boinc-client", "", d)} \
|
||||
brotli \
|
||||
@@ -431,24 +431,24 @@ RDEPENDS_packagegroup-meta-oe-extended ="\
|
||||
zsync-curl \
|
||||
redis-plus-plus \
|
||||
"
|
||||
RDEPENDS_packagegroup-meta-oe-extended_append_libc-musl = " libexecinfo"
|
||||
RDEPENDS_packagegroup-meta-oe-extended_append_x86-64 = " pmdk libx86-1"
|
||||
RDEPENDS_packagegroup-meta-oe-extended_append_x86 = " libx86-1"
|
||||
RDEPENDS:packagegroup-meta-oe-extended:append:libc-musl = " libexecinfo"
|
||||
RDEPENDS:packagegroup-meta-oe-extended:append:x86-64 = " pmdk libx86-1"
|
||||
RDEPENDS:packagegroup-meta-oe-extended:append:x86 = " libx86-1"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-extended_remove_libc-musl = "libnss-nisplus sysdig"
|
||||
RDEPENDS_packagegroup-meta-oe-extended_remove_mipsarch = "upm mraa minifi-cpp tiptop"
|
||||
RDEPENDS_packagegroup-meta-oe-extended_remove_mips = "sysdig"
|
||||
RDEPENDS_packagegroup-meta-oe-extended_remove_powerpc = "upm mraa minifi-cpp"
|
||||
RDEPENDS_packagegroup-meta-oe-extended_remove_powerpc64 = "upm mraa minifi-cpp"
|
||||
RDEPENDS_packagegroup-meta-oe-extended_remove_powerpc64le = "upm mraa"
|
||||
RDEPENDS_packagegroup-meta-oe-extended_remove_riscv64 = "upm libleak libyang mraa sysdig tiptop"
|
||||
RDEPENDS_packagegroup-meta-oe-extended_remove_riscv32 = "upm libleak libyang mraa sysdig tiptop"
|
||||
RDEPENDS:packagegroup-meta-oe-extended:remove:libc-musl = "libnss-nisplus sysdig"
|
||||
RDEPENDS:packagegroup-meta-oe-extended:remove:mipsarch = "upm mraa minifi-cpp tiptop"
|
||||
RDEPENDS:packagegroup-meta-oe-extended:remove:mips = "sysdig"
|
||||
RDEPENDS:packagegroup-meta-oe-extended:remove:powerpc = "upm mraa minifi-cpp"
|
||||
RDEPENDS:packagegroup-meta-oe-extended:remove:powerpc64 = "upm mraa minifi-cpp"
|
||||
RDEPENDS:packagegroup-meta-oe-extended:remove:powerpc64le = "upm mraa"
|
||||
RDEPENDS:packagegroup-meta-oe-extended:remove:riscv64 = "upm libleak libyang mraa sysdig tiptop"
|
||||
RDEPENDS:packagegroup-meta-oe-extended:remove:riscv32 = "upm libleak libyang mraa sysdig tiptop"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-extended-python2 ="\
|
||||
RDEPENDS:packagegroup-meta-oe-extended-python2 ="\
|
||||
${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-python2", bb.utils.contains('I_SWEAR_TO_MIGRATE_TO_PYTHON3', 'yes', 'openlmi-tools', '', d), "", d)} \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-gnome ="\
|
||||
RDEPENDS:packagegroup-meta-oe-gnome ="\
|
||||
atkmm \
|
||||
gcab \
|
||||
gnome-common \
|
||||
@@ -464,7 +464,7 @@ RDEPENDS_packagegroup-meta-oe-gnome ="\
|
||||
libxmlb \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-graphics ="\
|
||||
RDEPENDS:packagegroup-meta-oe-graphics ="\
|
||||
cairomm \
|
||||
directfb-examples \
|
||||
directfb \
|
||||
@@ -611,14 +611,14 @@ RDEPENDS_packagegroup-meta-oe-graphics ="\
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "opengl", "opengl-es-cts", "", d)} \
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "opengl vulkan", "vulkan-cts", "", d)} \
|
||||
"
|
||||
RDEPENDS_packagegroup-meta-oe-graphics_append_x86 = " renderdoc xf86-video-nouveau xf86-video-mga"
|
||||
RDEPENDS_packagegroup-meta-oe-graphics_append_x86-64 = " renderdoc xf86-video-nouveau xf86-video-mga"
|
||||
RDEPENDS_packagegroup-meta-oe-graphics_append_arm = " renderdoc"
|
||||
RDEPENDS_packagegroup-meta-oe-graphics_append_aarch64 = " renderdoc"
|
||||
RDEPENDS:packagegroup-meta-oe-graphics:append:x86 = " renderdoc xf86-video-nouveau xf86-video-mga"
|
||||
RDEPENDS:packagegroup-meta-oe-graphics:append:x86-64 = " renderdoc xf86-video-nouveau xf86-video-mga"
|
||||
RDEPENDS:packagegroup-meta-oe-graphics:append:arm = " renderdoc"
|
||||
RDEPENDS:packagegroup-meta-oe-graphics:append:aarch64 = " renderdoc"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-graphics_remove_libc-musl = "renderdoc"
|
||||
RDEPENDS:packagegroup-meta-oe-graphics:remove:libc-musl = "renderdoc"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-kernel ="\
|
||||
RDEPENDS:packagegroup-meta-oe-kernel ="\
|
||||
agent-proxy \
|
||||
crash \
|
||||
cpupower \
|
||||
@@ -630,22 +630,22 @@ RDEPENDS_packagegroup-meta-oe-kernel ="\
|
||||
spidev-test \
|
||||
trace-cmd \
|
||||
"
|
||||
RDEPENDS_packagegroup-meta-oe-kernel_append_x86 = " intel-speed-select ipmiutil pm-graph turbostat"
|
||||
RDEPENDS_packagegroup-meta-oe-kernel_append_x86-64 = " intel-speed-select ipmiutil kpatch pm-graph turbostat bpftool"
|
||||
RDEPENDS_packagegroup-meta-oe-kernel_append_poerpc64 = " libpfm4"
|
||||
RDEPENDS:packagegroup-meta-oe-kernel:append:x86 = " intel-speed-select ipmiutil pm-graph turbostat"
|
||||
RDEPENDS:packagegroup-meta-oe-kernel:append:x86-64 = " intel-speed-select ipmiutil kpatch pm-graph turbostat bpftool"
|
||||
RDEPENDS:packagegroup-meta-oe-kernel:append_poerpc64 = " libpfm4"
|
||||
|
||||
# Kernel-selftest does not build with 5.8 and its exluded from build too so until its fixed remove it
|
||||
RDEPENDS_packagegroup-meta-oe-kernel_remove = "kernel-selftest"
|
||||
RDEPENDS_packagegroup-meta-oe-kernel_remove_libc-musl = "bpftool crash intel-speed-select kernel-selftest minicoredumper turbostat"
|
||||
RDEPENDS:packagegroup-meta-oe-kernel:remove = "kernel-selftest"
|
||||
RDEPENDS:packagegroup-meta-oe-kernel:remove:libc-musl = "bpftool crash intel-speed-select kernel-selftest minicoredumper turbostat"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-kernel_remove_mipsarch = "makedumpfile"
|
||||
RDEPENDS_packagegroup-meta-oe-kernel_remove_mips64 = "crash"
|
||||
RDEPENDS_packagegroup-meta-oe-kernel_remove_mips64el = "crash"
|
||||
RDEPENDS:packagegroup-meta-oe-kernel:remove:mipsarch = "makedumpfile"
|
||||
RDEPENDS:packagegroup-meta-oe-kernel:remove:mips64 = "crash"
|
||||
RDEPENDS:packagegroup-meta-oe-kernel:remove:mips64el = "crash"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-kernel_remove_riscv64 = "crash makedumpfile oprofile"
|
||||
RDEPENDS_packagegroup-meta-oe-kernel_remove_riscv32 = "crash makedumpfile oprofile"
|
||||
RDEPENDS:packagegroup-meta-oe-kernel:remove:riscv64 = "crash makedumpfile oprofile"
|
||||
RDEPENDS:packagegroup-meta-oe-kernel:remove:riscv32 = "crash makedumpfile oprofile"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-multimedia ="\
|
||||
RDEPENDS:packagegroup-meta-oe-multimedia ="\
|
||||
alsa-oss \
|
||||
${@bb.utils.contains("LICENSE_FLAGS_WHITELIST", "commercial", "faad2", "", d)} \
|
||||
dirsplit \
|
||||
@@ -681,9 +681,9 @@ RDEPENDS_packagegroup-meta-oe-multimedia ="\
|
||||
libopusenc \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-multimedia_remove_libc-musl = "alsa-oss"
|
||||
RDEPENDS:packagegroup-meta-oe-multimedia:remove:libc-musl = "alsa-oss"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-navigation ="\
|
||||
RDEPENDS:packagegroup-meta-oe-navigation ="\
|
||||
geos \
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "bluz4", "gpsd-machine-conf gpsd", "", d)} \
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "x11", "orrery", "", d)} \
|
||||
@@ -692,12 +692,12 @@ RDEPENDS_packagegroup-meta-oe-navigation ="\
|
||||
proj \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-printing ="\
|
||||
RDEPENDS:packagegroup-meta-oe-printing ="\
|
||||
cups-filters \
|
||||
qpdf \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-security ="\
|
||||
RDEPENDS:packagegroup-meta-oe-security ="\
|
||||
keyutils \
|
||||
nmap \
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "pam", "passwdqc", "", d)} \
|
||||
@@ -706,14 +706,14 @@ RDEPENDS_packagegroup-meta-oe-security ="\
|
||||
auditd \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-shells ="\
|
||||
RDEPENDS:packagegroup-meta-oe-shells ="\
|
||||
dash \
|
||||
mksh \
|
||||
tcsh \
|
||||
zsh \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-support ="\
|
||||
RDEPENDS:packagegroup-meta-oe-support ="\
|
||||
anthy \
|
||||
atop \
|
||||
ace-cloud-editor \
|
||||
@@ -916,24 +916,24 @@ RDEPENDS_packagegroup-meta-oe-support ="\
|
||||
libmicrohttpd \
|
||||
yaml-cpp \
|
||||
"
|
||||
RDEPENDS_packagegroup-meta-oe-support_append_armv7a = " ne10"
|
||||
RDEPENDS_packagegroup-meta-oe-support_append_armv7ve = " ne10"
|
||||
RDEPENDS_packagegroup-meta-oe-support_append_aarch64 = " ne10"
|
||||
RDEPENDS_packagegroup-meta-oe-support_append_x86 = " mcelog mce-inject mce-test vboxguestdrivers"
|
||||
RDEPENDS_packagegroup-meta-oe-support_append_x86-64 = " mcelog mce-inject mce-test vboxguestdrivers"
|
||||
RDEPENDS:packagegroup-meta-oe-support:append:armv7a = " ne10"
|
||||
RDEPENDS:packagegroup-meta-oe-support:append:armv7ve = " ne10"
|
||||
RDEPENDS:packagegroup-meta-oe-support:append:aarch64 = " ne10"
|
||||
RDEPENDS:packagegroup-meta-oe-support:append:x86 = " mcelog mce-inject mce-test vboxguestdrivers"
|
||||
RDEPENDS:packagegroup-meta-oe-support:append:x86-64 = " mcelog mce-inject mce-test vboxguestdrivers"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-support-python2 ="\
|
||||
RDEPENDS:packagegroup-meta-oe-support-python2 ="\
|
||||
${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-python2", bb.utils.contains('I_SWEAR_TO_MIGRATE_TO_PYTHON3', 'yes', 'lio-utils', '', d), "", d)} \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-support_remove_arm ="numactl"
|
||||
RDEPENDS_packagegroup-meta-oe-support_remove_mipsarch = "gperftools"
|
||||
RDEPENDS_packagegroup-meta-oe-support_remove_riscv64 = "gperftools uim"
|
||||
RDEPENDS_packagegroup-meta-oe-support_remove_riscv32 = "gperftools uim"
|
||||
RDEPENDS_packagegroup-meta-oe-support_remove_powerpc = "ssiapi tbb"
|
||||
RDEPENDS_packagegroup-meta-oe-support_remove_powerpc64le = "ssiapi"
|
||||
RDEPENDS:packagegroup-meta-oe-support:remove:arm ="numactl"
|
||||
RDEPENDS:packagegroup-meta-oe-support:remove:mipsarch = "gperftools"
|
||||
RDEPENDS:packagegroup-meta-oe-support:remove:riscv64 = "gperftools uim"
|
||||
RDEPENDS:packagegroup-meta-oe-support:remove:riscv32 = "gperftools uim"
|
||||
RDEPENDS:packagegroup-meta-oe-support:remove:powerpc = "ssiapi tbb"
|
||||
RDEPENDS:packagegroup-meta-oe-support:remove:powerpc64le = "ssiapi"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-test ="\
|
||||
RDEPENDS:packagegroup-meta-oe-test ="\
|
||||
bats \
|
||||
cmocka \
|
||||
cppunit \
|
||||
@@ -955,7 +955,7 @@ RDEPENDS_packagegroup-meta-oe-test_remove_powerpc = "fwts"
|
||||
RDEPENDS_packagegroup-meta-oe-test_remove_riscv64 = "fwts"
|
||||
RDEPENDS_packagegroup-meta-oe-test_remove_riscv32 = "fwts"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-ptest-packages = "\
|
||||
RDEPENDS:packagegroup-meta-oe-ptest-packages = "\
|
||||
zeromq-ptest \
|
||||
leveldb-ptest \
|
||||
psqlodbc-ptest \
|
||||
@@ -969,15 +969,15 @@ RDEPENDS_packagegroup-meta-oe-ptest-packages = "\
|
||||
poco-ptest \
|
||||
cmocka-ptest \
|
||||
"
|
||||
RDEPENDS_packagegroup-meta-oe-ptest-packages_append_x86 = " mcelog-ptest"
|
||||
RDEPENDS_packagegroup-meta-oe-ptest-packages_append_x86-64 = " mcelog-ptest"
|
||||
RDEPENDS:packagegroup-meta-oe-ptest-packages:append:x86 = " mcelog-ptest"
|
||||
RDEPENDS:packagegroup-meta-oe-ptest-packages:append:x86-64 = " mcelog-ptest"
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-ptest-packages_remove_riscv64 = "oprofile-ptest"
|
||||
RDEPENDS_packagegroup-meta-oe-ptest-packages_remove_riscv32 = "oprofile-ptest"
|
||||
RDEPENDS_packagegroup-meta-oe-ptest-packages_remove_arm = "numactl-ptest"
|
||||
RDEPENDS:packagegroup-meta-oe-ptest-packages:remove:riscv64 = "oprofile-ptest"
|
||||
RDEPENDS:packagegroup-meta-oe-ptest-packages:remove:riscv32 = "oprofile-ptest"
|
||||
RDEPENDS:packagegroup-meta-oe-ptest-packages:remove:arm = "numactl-ptest"
|
||||
|
||||
|
||||
RDEPENDS_packagegroup-meta-oe-fortran-packages = "\
|
||||
RDEPENDS:packagegroup-meta-oe-fortran-packages = "\
|
||||
lapack \
|
||||
octave \
|
||||
suitesparse \
|
||||
|
||||
@@ -13,9 +13,9 @@ LICENSE = "GPLv2+"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
||||
|
||||
DEPENDS = "libcap libpng cairo dbus udev"
|
||||
DEPENDS_append_libc-musl = " musl-rpmatch"
|
||||
DEPENDS:append:libc-musl = " musl-rpmatch"
|
||||
PROVIDES = "virtual/psplash"
|
||||
RPROVIDES_${PN} = "virtual-psplash virtual-psplash-support"
|
||||
RPROVIDES:${PN} = "virtual-psplash virtual-psplash-support"
|
||||
|
||||
SRC_URI = " \
|
||||
http://www.freedesktop.org/software/plymouth/releases/${BPN}-${PV}.tar.xz \
|
||||
@@ -31,8 +31,8 @@ EXTRA_OECONF += " --enable-shared --disable-static --disable-gtk --disable-docum
|
||||
"
|
||||
|
||||
PACKAGECONFIG ??= "pango initrd"
|
||||
PACKAGECONFIG_append_x86 = " drm"
|
||||
PACKAGECONFIG_append_x86-64 = " drm"
|
||||
PACKAGECONFIG:append:x86 = " drm"
|
||||
PACKAGECONFIG:append:x86-64 = " drm"
|
||||
|
||||
PACKAGECONFIG[drm] = "--enable-drm,--disable-drm,libdrm"
|
||||
PACKAGECONFIG[pango] = "--enable-pango,--disable-pango,pango"
|
||||
@@ -43,9 +43,9 @@ LOGO ??= "${datadir}/plymouth/bizcom.png"
|
||||
|
||||
inherit autotools pkgconfig systemd gettext
|
||||
|
||||
LDFLAGS_append_libc-musl = " -lrpmatch"
|
||||
LDFLAGS:append:libc-musl = " -lrpmatch"
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
# Remove /var/run from package as plymouth will populate it on startup
|
||||
rm -fr "${D}${localstatedir}/run"
|
||||
|
||||
@@ -57,14 +57,14 @@ do_install_append() {
|
||||
PACKAGES =. "${@bb.utils.contains('PACKAGECONFIG', 'initrd', '${PN}-initrd ', '', d)}"
|
||||
PACKAGES =+ "${PN}-set-default-theme"
|
||||
|
||||
FILES_${PN}-initrd = "${libexecdir}/plymouth/*"
|
||||
FILES_${PN}-set-default-theme = "${sbindir}/plymouth-set-default-theme"
|
||||
FILES:${PN}-initrd = "${libexecdir}/plymouth/*"
|
||||
FILES:${PN}-set-default-theme = "${sbindir}/plymouth-set-default-theme"
|
||||
|
||||
FILES_${PN} += "${systemd_unitdir}/system/*"
|
||||
FILES_${PN}-dbg += "${libdir}/plymouth/renderers/.debug"
|
||||
FILES:${PN} += "${systemd_unitdir}/system/*"
|
||||
FILES:${PN}-dbg += "${libdir}/plymouth/renderers/.debug"
|
||||
|
||||
|
||||
RDEPENDS_${PN}-initrd = "bash dracut"
|
||||
RDEPENDS_${PN}-set-default-theme = "bash"
|
||||
RDEPENDS:${PN}-initrd = "bash dracut"
|
||||
RDEPENDS:${PN}-set-default-theme = "bash"
|
||||
|
||||
SYSTEMD_SERVICE_${PN} = "plymouth-start.service"
|
||||
SYSTEMD_SERVICE:${PN} = "plymouth-start.service"
|
||||
|
||||
@@ -15,10 +15,10 @@ SRC_URI[sha256sum] = "291ac350cc5eb4a01b0d651ca99fae64cee8a1c06b2005277fab5a4356
|
||||
|
||||
S = "${WORKDIR}"
|
||||
PACKAGES = "${PN} ${PN}-dev"
|
||||
FILES_${PN}-dev = "${includedir}/libintl.h ${libdir}/libintl.a"
|
||||
INSANE_SKIP_${PN}-dev = "staticdev"
|
||||
ALLOW_EMPTY_${PN} = "1"
|
||||
CFLAGS_append = " -fPIC -Wall -I ../../include ${@['-DSTUB_ONLY', ''][d.getVar('USE_NLS') != 'no']}"
|
||||
FILES:${PN}-dev = "${includedir}/libintl.h ${libdir}/libintl.a"
|
||||
INSANE_SKIP:${PN}-dev = "staticdev"
|
||||
ALLOW_EMPTY:${PN} = "1"
|
||||
CFLAGS:append = " -fPIC -Wall -I ../../include ${@['-DSTUB_ONLY', ''][d.getVar('USE_NLS') != 'no']}"
|
||||
TARGET_CC_ARCH += "${LDFLAGS}"
|
||||
|
||||
do_compile() {
|
||||
|
||||
@@ -16,6 +16,6 @@ COMPATIBLE_HOST = '(x86_64|i.86|powerpc|powerpc64|arm|aarch64|mips).*-linux'
|
||||
|
||||
PACKAGES =+ "${PN}-check"
|
||||
|
||||
FILES_${PN}-check += "${bindir}/check_for_unsafe_apis"
|
||||
FILES:${PN}-check += "${bindir}/check_for_unsafe_apis"
|
||||
|
||||
RDEPENDS_${PN}-check += "perl"
|
||||
RDEPENDS:${PN}-check += "perl"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user