Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Switch to subdir= in SRC_URI
DESCRIPTION = "microcom is a small minicom-like serial terminal emulator with \ scripting support." LICENSE = "GPL" # http://microcom.port5.com/m102.tar.gz is no longer available #NOTE: this should probably be converted to pull from sourceforge # CVS, because openwrt is just another mirror of a file which no # longer seems to exist outside mirrors. mirror magic. SRC_URI = "http://downloads.openwrt.org/sources/m102.tar.gz \ file://make.patch" S = "${WORKDIR}" do_install () { install -d ${D}${bindir} install -m 0755 microcom ${D}${bindir}/ } SRC_URI[md5sum] = "c7817035dc41cb02e7cfb565cf9b7401" SRC_URI[sha256sum] = "d7ee2e668455f9a092418e5475f32676eb0b37c54ae38a7fcdf2d14e0fb80c91"
DESCRIPTION = "microcom is a small minicom-like serial terminal emulator with \ scripting support." LICENSE = "GPL" # http://microcom.port5.com/m102.tar.gz is no longer available #NOTE: this should probably be converted to pull from sourceforge # CVS, because openwrt is just another mirror of a file which no # longer seems to exist outside mirrors. mirror magic. SRC_URI = "http://downloads.openwrt.org/sources/m102.tar.gz;subdir=${BPN}-${PV} \ file://make.patch" do_install () { install -d ${D}${bindir} install -m 0755 microcom ${D}${bindir}/ } SRC_URI[md5sum] = "c7817035dc41cb02e7cfb565cf9b7401" SRC_URI[sha256sum] = "d7ee2e668455f9a092418e5475f32676eb0b37c54ae38a7fcdf2d14e0fb80c91"
Revert "Use backward compatible syntax for `getVar()`"
require swupdate.inc require swupdate_tools.inc DEFAULT_PREFERENCE = "-1" # If a recipe sets SRCREV to ${AUTOREV}, bitbake tries # a git ls-remote. This breaks when a mirror is built # and BB_NO_NETWORK is set. # To work-around the issue, sets the revision for the git # version to a fix commit (not relevant) # In casethe _git version is chosen, sets the revision # to TOT to test with last commit-id. def version_git(d): version = d.getVar("PREFERRED_VERSION_%s" % d.getVar('PN', False), False) if version is not None and "git" in version: return d.getVar('AUTOREV', False) else: return "c0fec16b3fc82b0db12d8ac58be7055ed1b8d439" SRCREV ?= '${@version_git(d)}'
require swupdate.inc require swupdate_tools.inc DEFAULT_PREFERENCE = "-1" # If a recipe sets SRCREV to ${AUTOREV}, bitbake tries # a git ls-remote. This breaks when a mirror is built # and BB_NO_NETWORK is set. # To work-around the issue, sets the revision for the git # version to a fix commit (not relevant) # In casethe _git version is chosen, sets the revision # to TOT to test with last commit-id. def version_git(d): version = d.getVar("PREFERRED_VERSION_%s" % d.getVar('PN')) if version is not None and "git" in version: return d.getVar("AUTOREV") else: return "c0fec16b3fc82b0db12d8ac58be7055ed1b8d439" SRCREV ?= '${@version_git(d)}'
Fix conflict error with python3-pycodestyle during do_rootfs
inherit setuptools require python-pycodestyle.inc RDEPENDS_${PN} += "${PYTHON_PN}-lang"
inherit setuptools require python-pycodestyle.inc RDEPENDS_${PN} += "${PYTHON_PN}-lang" do_install_append () { if [ -f ${D}${bindir}/pycodestyle ]; then mv ${D}${bindir}/pycodestyle ${D}${bindir}/pycodestyle-2 fi }
Enable gnome-classic session for wayland
SUMMARY = "GNOME Shell Extensions" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=4cb3a392cbf81a9e685ec13b88c4c101" GNOMEBASEBUILDCLASS = "meson" inherit gnomebase gettext gsettings features_check REQUIRED_DISTRO_FEATURES = "x11 polkit systemd pam gobject-introspection-data" SRC_URI[archive.sha256sum] = "d0e6f2273f08d52d925fc2bb66b47b28e5ef50d1b8a14020877c662423d507d3" DEPENDS += " \ sassc-native \ " EXTRA_OEMESON += " \ -Dextension_set=all \ -Dclassic_mode=true \ " RDEPENDS:${PN} += "gnome-shell" FILES:${PN} += " \ ${datadir}/gnome-shell \ ${datadir}/gnome-session \ ${datadir}/xsessions \ "
SUMMARY = "GNOME Shell Extensions" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=4cb3a392cbf81a9e685ec13b88c4c101" GNOMEBASEBUILDCLASS = "meson" inherit gnomebase gettext gsettings features_check REQUIRED_DISTRO_FEATURES = "x11 polkit systemd pam gobject-introspection-data" SRC_URI[archive.sha256sum] = "d0e6f2273f08d52d925fc2bb66b47b28e5ef50d1b8a14020877c662423d507d3" DEPENDS += " \ sassc-native \ " EXTRA_OEMESON += " \ -Dextension_set=all \ -Dclassic_mode=true \ " do_install:append() { # enable gnome-classic session for wayland install -d ${D}${datadir}/wayland-sessions install -m644 ${D}${datadir}/xsessions/gnome-classic.desktop ${D}${datadir}/wayland-sessions/ } RDEPENDS:${PN} += "gnome-shell" FILES:${PN} += " \ ${datadir}/gnome-shell \ ${datadir}/gnome-session \ ${datadir}/wayland-sessions \ ${datadir}/xsessions \ "
Update to bootgen SRCREV to point to latest commit.
SUMMARY = "Building and installing bootgen" DESCRIPTION = "Building and installing bootgen, a Xilinx tool that lets you stitch binary files together and generate device boot images" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=d526b6d0807bf263b97da1da876f39b1" S = "${WORKDIR}/git" DEPENDS += "openssl" RDEPENDS:${PN} += "openssl" REPO ?= "git://github.com/Xilinx/bootgen.git;protocol=https" BRANCH ?= "xlnx_rel_v2022.1" SRCREV = "0a6c53b6a057879c236e7194e5f818d146cf3461" BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}" SRC_URI = "${REPO};${BRANCHARG}" EXTRA_OEMAKE += 'CROSS_COMPILER="${CXX}" -C ${S}' CXXFLAGS:append = " -std=c++0x" TARGET_CC_ARCH += "${LDFLAGS}" do_install() { install -d ${D}${bindir} install -Dm 0755 ${S}/bootgen ${D}${bindir} } FILES:${PN} = "${bindir}/bootgen" BBCLASSEXTEND = "native nativesdk"
SUMMARY = "Building and installing bootgen" DESCRIPTION = "Building and installing bootgen, a Xilinx tool that lets you stitch binary files together and generate device boot images" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=d526b6d0807bf263b97da1da876f39b1" S = "${WORKDIR}/git" DEPENDS += "openssl" RDEPENDS:${PN} += "openssl" REPO ?= "git://github.com/Xilinx/bootgen.git;protocol=https" BRANCH ?= "xlnx_rel_v2022.1" SRCREV = "2b8859218defc9983b6d312c8be48d0c08070ca1" BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}" SRC_URI = "${REPO};${BRANCHARG}" EXTRA_OEMAKE += 'CROSS_COMPILER="${CXX}" -C ${S}' CXXFLAGS:append = " -std=c++0x" TARGET_CC_ARCH += "${LDFLAGS}" do_install() { install -d ${D}${bindir} install -Dm 0755 ${S}/bootgen ${D}${bindir} } FILES:${PN} = "${bindir}/bootgen" BBCLASSEXTEND = "native nativesdk"
Update SRCREV for jitter fix
DESCRIPTION = "Demo application to showcase 3D graphics on SGX using kms and gbm" HOMEPAGE = "http://git.ti.com" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://kmscube.c;beginline=1;endline=23;md5=e760965096e52da8f3969dd53b6bf158" DEPENDS = "libdrm libgbm ti-sgx-ddk-um" COMPATIBLE_MACHINE = "ti33x|ti43x|omap-a15" PACKAGE_ARCH = "${MACHINE_ARCH}" inherit autotools pkgconfig PR = "r8" SRCREV = "24e94f583119896b3ab8ecc7b35c7de3160dcb1f" SRC_URI = "git://git.ti.com/glsdk/kmscube.git;protocol=git" SRC_URI_append = " \ " S = "${WORKDIR}/git" INSANE_SKIP_kmscube += "dev-deps"
DESCRIPTION = "Demo application to showcase 3D graphics on SGX using kms and gbm" HOMEPAGE = "http://git.ti.com" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://kmscube.c;beginline=1;endline=23;md5=e760965096e52da8f3969dd53b6bf158" DEPENDS = "libdrm libgbm ti-sgx-ddk-um" COMPATIBLE_MACHINE = "ti33x|ti43x|omap-a15" PACKAGE_ARCH = "${MACHINE_ARCH}" inherit autotools pkgconfig PR = "r9" SRCREV = "3e9807ddcf2b4e8ccf711cdaf851752ec40d7904" SRC_URI = "git://git.ti.com/glsdk/kmscube.git;protocol=git" SRC_URI_append = " \ " S = "${WORKDIR}/git" INSANE_SKIP_kmscube += "dev-deps"
Remove a trailing slash from SRC_URI
LICENSE = "NCSA" LIC_FILES_CHKSUM = "file://LICENSE.TXT;md5=47e311aa9caedd1b3abf098bd7814d1d" BRANCH = "master" SRC_URI = "git://github.com/KhronosGroup/SPIRV-LLVM-Translator/;protocol=https;branch=${BRANCH} \ " PV = "13.0.0" SRCREV = "76c76efeb8bcb3414dcd26ef938de43eb1beb516" S = "${WORKDIR}/git" DEPENDS = "spirv-tools clang" inherit cmake pkgconfig python3native OECMAKE_GENERATOR = "Unix Makefiles" # Specify any options you want to pass to cmake using EXTRA_OECMAKE: EXTRA_OECMAKE = "\ -DBUILD_SHARED_LIBS=ON \ -DLLVM_SPIRV_BUILD_EXTERNAL=YES \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_POSITION_INDEPENDENT_CODE=ON \ -DCMAKE_SKIP_RPATH=ON \ -DLLVM_EXTERNAL_LIT=lit \ -DLLVM_INCLUDE_TESTS=ON \ -Wno-dev \ -DCCACHE_ALLOWED=FALSE \ " do_compile_append() { oe_runmake llvm-spirv } do_install_append() { install -Dm755 ${B}/tools/llvm-spirv/llvm-spirv ${D}${bindir}/llvm-spirv } BBCLASSEXTEND = "native nativesdk"
LICENSE = "NCSA" LIC_FILES_CHKSUM = "file://LICENSE.TXT;md5=47e311aa9caedd1b3abf098bd7814d1d" BRANCH = "master" SRC_URI = "git://github.com/KhronosGroup/SPIRV-LLVM-Translator;protocol=https;branch=${BRANCH} \ " PV = "13.0.0" SRCREV = "76c76efeb8bcb3414dcd26ef938de43eb1beb516" S = "${WORKDIR}/git" DEPENDS = "spirv-tools clang" inherit cmake pkgconfig python3native OECMAKE_GENERATOR = "Unix Makefiles" # Specify any options you want to pass to cmake using EXTRA_OECMAKE: EXTRA_OECMAKE = "\ -DBUILD_SHARED_LIBS=ON \ -DLLVM_SPIRV_BUILD_EXTERNAL=YES \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_POSITION_INDEPENDENT_CODE=ON \ -DCMAKE_SKIP_RPATH=ON \ -DLLVM_EXTERNAL_LIT=lit \ -DLLVM_INCLUDE_TESTS=ON \ -Wno-dev \ -DCCACHE_ALLOWED=FALSE \ " do_compile_append() { oe_runmake llvm-spirv } do_install_append() { install -Dm755 ${B}/tools/llvm-spirv/llvm-spirv ${D}${bindir}/llvm-spirv } BBCLASSEXTEND = "native nativesdk"
Build with 0.40.x vala APIs
SUMMARY = "Xfce4 Vala provides bindings for the Xfce framework" LICENSE = "LGPLv2.1" LIC_FILES_CHKSUM = "file://COPYING;md5=243b725d71bb5df4a1e5920b344b86ad" DEPENDS = "libxfce4util garcon xfconf libxfce4ui xfce4-panel exo vala xfce4-dev-tools-native" inherit xfce pkgconfig distro_features_check REQUIRED_DISTRO_FEATURES = "x11" SRC_URI = "http://archive.xfce.org/src/bindings/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2" SRC_URI[md5sum] = "0bbb1d6e473e0fe9b335b7b1b49d8a71" SRC_URI[sha256sum] = "07a8f2b7c09fcdd3d86e0c52adea3c58ca011d0142a93997a01b4af77260ae7b" EXTRA_OECONF = "-with-vala-api=0.38" FILES_${PN} += "${datadir}/vala-*/vapi" RDEPENDS_${PN} = "vala"
SUMMARY = "Xfce4 Vala provides bindings for the Xfce framework" LICENSE = "LGPLv2.1" LIC_FILES_CHKSUM = "file://COPYING;md5=243b725d71bb5df4a1e5920b344b86ad" DEPENDS = "libxfce4util garcon xfconf libxfce4ui xfce4-panel exo vala xfce4-dev-tools-native" inherit xfce pkgconfig distro_features_check REQUIRED_DISTRO_FEATURES = "x11" SRC_URI = "http://archive.xfce.org/src/bindings/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2" SRC_URI[md5sum] = "0bbb1d6e473e0fe9b335b7b1b49d8a71" SRC_URI[sha256sum] = "07a8f2b7c09fcdd3d86e0c52adea3c58ca011d0142a93997a01b4af77260ae7b" EXTRA_OECONF = "-with-vala-api=0.40" FILES_${PN} += "${datadir}/vala-*/vapi" RDEPENDS_${PN} = "vala"
Undo recent cmak_lib changes - they broke consumers
SUMMARY = "QCA provides a straightforward and cross-platform crypto API" LICENSE = "LGPLv2.1" LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" inherit kde-base cmake_lib # TBD: PACKAGECONFIG DEPENDS += " \ qtsvg \ nss \ cyrus-sasl \ libgcrypt \ pkcs11-helper \ " SRC_URI = " \ git://github.com/KDE/qca.git \ file://0001-use-pkg-config-to-find-libgcrypt.patch \ " SRCREV = "db5f82be2ad72658f7b575ebd1e97f4748033d04" S = "${WORKDIR}/git" PV = "2.2.1+git${SRCPV}" EXTRA_OECMAKE += " \ -DQCA_FEATURE_INSTALL_DIR=${libdir}${QT_DIR_NAME}/mkspecs/features \ -DLIB_SUFFIX=${@d.getVar('baselib').replace('lib', '')} \ " FILES_${PN} += "${libdir}/qca-qt5/crypto" CMAKE_ALIGN_SYSROOT[1] = "Qca-qt5, -S${prefix}, -s${_IMPORT_PREFIX}"
SUMMARY = "QCA provides a straightforward and cross-platform crypto API" LICENSE = "LGPLv2.1" LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" inherit kde-base cmake_lib # TBD: PACKAGECONFIG DEPENDS += " \ qtsvg \ nss \ cyrus-sasl \ libgcrypt \ pkcs11-helper \ " SRC_URI = " \ git://github.com/KDE/qca.git \ file://0001-use-pkg-config-to-find-libgcrypt.patch \ " SRCREV = "db5f82be2ad72658f7b575ebd1e97f4748033d04" S = "${WORKDIR}/git" PV = "2.2.1+git${SRCPV}" EXTRA_OECMAKE += " \ -DQCA_FEATURE_INSTALL_DIR=${libdir}${QT_DIR_NAME}/mkspecs/features \ -DLIB_SUFFIX=${@d.getVar('baselib').replace('lib', '')} \ " FILES_${PN} += "${libdir}/qca-qt5/crypto" CMAKE_ALIGN_SYSROOT[1] = "Qca-qt5, -S${libdir}/lib, -s${OE_QMAKE_PATH_HOST_LIBS}/lib" CMAKE_ALIGN_SYSROOT[2] = "Qca-qt5, -S${includedir}, -s${CMAKE_QT5_EX_PATH_HOST_HEADERS}"
Add missing dependency to xtst.
PV = "0.0cvs${CVSDATE}" LICENSE = "MIT" DEPENDS = "x11 xext" DESCRIPTION = "X display information utility" MAINTAINER = "Phil Blundell <pb@handhelds.org>" SECTION = "x11/base" SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xapps;module=xdpyinfo" S = "${WORKDIR}/xdpyinfo" inherit autotools pkgconfig
PV = "0.0cvs${CVSDATE}" LICENSE = "MIT" DEPENDS = "x11 xext xtst" DESCRIPTION = "X display information utility" MAINTAINER = "Phil Blundell <pb@handhelds.org>" SECTION = "x11/base" PR = "r1" SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xapps;module=xdpyinfo" S = "${WORKDIR}/xdpyinfo" inherit autotools pkgconfig
Add missing python-six runtime dependency
SUMMARY = "versatile resource statics tool" DESCRIPTION = "Dstat is a versatile replacement for vmstat, iostat, netstat and ifstat. \ Dstat overcomes some of their limitations and adds some extra features, more counters \ and flexibility. Dstat is handy for monitoring systems during performance tuning tests, \ benchmarks or troubleshooting." HOMEPAGE = "http://dag.wiee.rs/home-made/dstat" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" DEPENDS += "asciidoc-native xmlto-native" SRC_URI = "git://github.com/dagwieers/dstat.git \ file://0001-change-dstat-to-python3.patch \ " SRCREV = "6f5db0aed26bf8cf2700d4ffe90a9bd3436ac728" S = "${WORKDIR}/git" do_install() { oe_runmake 'DESTDIR=${D}' install } RDEPENDS:${PN} += "python3-core python3-misc python3-resource python3-shell python3-unixadmin"
SUMMARY = "versatile resource statics tool" DESCRIPTION = "Dstat is a versatile replacement for vmstat, iostat, netstat and ifstat. \ Dstat overcomes some of their limitations and adds some extra features, more counters \ and flexibility. Dstat is handy for monitoring systems during performance tuning tests, \ benchmarks or troubleshooting." HOMEPAGE = "http://dag.wiee.rs/home-made/dstat" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" DEPENDS += "asciidoc-native xmlto-native" SRC_URI = "git://github.com/dagwieers/dstat.git \ file://0001-change-dstat-to-python3.patch \ " SRCREV = "6f5db0aed26bf8cf2700d4ffe90a9bd3436ac728" S = "${WORKDIR}/git" do_install() { oe_runmake 'DESTDIR=${D}' install } RDEPENDS:${PN} += "python3-core python3-misc python3-resource python3-shell python3-six python3-unixadmin"
Clean up recipe and add missing RDEPENDS
DESCRIPTION = "Plugins for a virtual keyboard for touch-screen based user interfaces" HOMEPAGE = "https://wiki.maliit.org/Main_Page" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://LICENSE;md5=f29b21caa8e460097bfad9c026a33621" inherit autotools qt4x11 DEPENDS = "maliit-framework" SRC_URI = "git://gitorious.org/maliit/maliit-plugins.git;branch=master" SRCREV = "0760e585df494b394df1b887e5138ffef19c481f" PV = "0.92.3+git${SRCPV}" EXTRA_QMAKEVARS_PRE = "\ PREFIX=${prefix} \ LIBDIR=${libdir} \ " FILES_${PN} += "\ ${libdir}/maliit \ ${datadir} \ " FILES_${PN}-dbg += "\ ${libdir}/maliit/plugins-*/.debug \ " S= "${WORKDIR}/git" do_install() { cd ${S} && (INSTALL_ROOT=${D} oe_runmake install) }
DESCRIPTION = "Plugins for a virtual keyboard for touch-screen based user interfaces" HOMEPAGE = "https://wiki.maliit.org/Main_Page" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://LICENSE;md5=f29b21caa8e460097bfad9c026a33621" inherit autotools qt4x11 DEPENDS = "maliit-framework" RDEPENDS_${PN} += "qt4-plugin-iconengine-svgicon qt4-plugin-imageformat-svg" SRC_URI = "git://gitorious.org/maliit/maliit-plugins.git;branch=master" SRCREV = "0760e585df494b394df1b887e5138ffef19c481f" PV = "0.92.3+git${SRCPV}" EXTRA_QMAKEVARS_PRE = "\ PREFIX=${prefix} \ LIBDIR=${libdir} \ " FILES_${PN} += "\ ${libdir}/maliit \ ${datadir} \ " FILES_${PN}-dbg += "${libdir}/maliit/plugins-*/.debug" S= "${WORKDIR}/git" EXTRA_OEMAKE += "INSTALL_ROOT=${D}"
Update GPSTk repository (now renamed to gnsstk)
SUMMARY = "The GPS Toolkit" DESCRIPTION = "Libraries and applications to facilitate working with GPS data for research and high accuracy uses." AUTHOR = "ARL:UT" HOMEPAGE = "https://github.com/SGL-UT/GPSTk/" PR = "r2" LICENSE = "LGPL-3.0-only" LIC_FILES_CHKSUM = "file://COPYING.md;md5=d32239bcb673463ab874e80d47fae504" GIT_BRANCH = "main" SRC_URI = "git://github.com/SGL-UT/GPSTk.git;branch=${GIT_BRANCH};protocol=https" SRCREV = "7f4c840d21c7bac40c5d554bdaab386ba2ee59ef" S = "${WORKDIR}/git" inherit cmake EXTRA_OECMAKE += " -DCMAKE_SKIP_INSTALL_RPATH=ON -DCMAKE_SKIP_RPATH=ON -DUSE_RPATH=OFF -DBUILD_EXT=ON -DBUILD_PYTHON=OFF" PACKAGES = "gpstk gpstk-dev gpstk-dbg" FILES:${PN} += " ${bindir}/* " FILES:${PN}-dev += " ${includedir}/* ${libdir}/* /usr/share/cmake/*" FILES:${PN}-dbg += " \ ${prefix}/src/debug/gpstk/* \ ${bindir}/.debug/* \ "
SUMMARY = "The GPS Toolkit" DESCRIPTION = "Libraries and applications to facilitate working with GPS data for research and high accuracy uses." AUTHOR = "ARL:UT" HOMEPAGE = "https://github.com/SGL-UT/gnsstk/" PR = "r3" LICENSE = "LGPL-3.0-only" LIC_FILES_CHKSUM = "file://COPYING.md;md5=d32239bcb673463ab874e80d47fae504" GIT_BRANCH = "stable" SRC_URI = "git://github.com/SGL-UT/gnsstk.git;branch=${GIT_BRANCH};protocol=https" SRCREV = "7f4c840d21c7bac40c5d554bdaab386ba2ee59ef" S = "${WORKDIR}/git" inherit cmake EXTRA_OECMAKE += " -DCMAKE_SKIP_INSTALL_RPATH=ON -DCMAKE_SKIP_RPATH=ON -DUSE_RPATH=OFF -DBUILD_EXT=ON -DBUILD_PYTHON=OFF" PACKAGES = "gpstk gpstk-dev gpstk-dbg" FILES:${PN} += " ${bindir}/* " FILES:${PN}-dev += " ${includedir}/* ${libdir}/* /usr/share/cmake/*" FILES:${PN}-dbg += " \ ${prefix}/src/debug/gpstk/* \ ${bindir}/.debug/* \ "
Disable install parallism to fix a potential install race
DESCRIPTION = "vnStat is a console-based network traffic monitor for Linux and BSD that keeps a log of network traffic for the selected interface(s)." HOMEPAGE = "https://humdi.net/vnstat/" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" SECTION = "net" DEPENDS = "gd sqlite3" SRC_URI = "https://github.com/vergoh/vnstat/releases/download/v${PV}/${BPN}-${PV}.tar.gz" SRC_URI[md5sum] = "fe2928a81243cc8a532a357f97221736" SRC_URI[sha256sum] = "89276e0a7281943edb554b874078278ad947dc312938a2451e03eb80679f7ff7" inherit autotools pkgconfig systemd EXTRA_OECONF = "--disable-extra-paths" do_install_append() { install -Dm644 ${S}/examples/systemd/vnstat.service "${D}${systemd_system_unitdir}/vnstat.service" } SYSTEMD_SERVICE_${PN} = "vnstat.service"
DESCRIPTION = "vnStat is a console-based network traffic monitor for Linux and BSD that keeps a log of network traffic for the selected interface(s)." HOMEPAGE = "https://humdi.net/vnstat/" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" SECTION = "net" DEPENDS = "gd sqlite3" SRC_URI = "https://github.com/vergoh/vnstat/releases/download/v${PV}/${BPN}-${PV}.tar.gz" SRC_URI[md5sum] = "fe2928a81243cc8a532a357f97221736" SRC_URI[sha256sum] = "89276e0a7281943edb554b874078278ad947dc312938a2451e03eb80679f7ff7" inherit autotools pkgconfig systemd EXTRA_OECONF = "--disable-extra-paths" do_install_append() { install -Dm644 ${S}/examples/systemd/vnstat.service "${D}${systemd_system_unitdir}/vnstat.service" } PARALLEL_MAKEINST = "" SYSTEMD_SERVICE_${PN} = "vnstat.service"
Update LICENSE field version to LGPLv2
require libglade.inc inherit gnome SRC_URI += "file://glade-cruft.patch file://no-xml2.patch" EXTRA_OECONF += "--without-libxml2" LDFLAGS += "-lz" SRC_URI[archive.md5sum] = "d1776b40f4e166b5e9c107f1c8fe4139" SRC_URI[archive.sha256sum] = "64361e7647839d36ed8336d992fd210d3e8139882269bed47dc4674980165dec"
require libglade.inc LICENSE = "LGPLv2 LGPLv2+" PR = "r1" inherit gnome SRC_URI += "file://glade-cruft.patch file://no-xml2.patch" EXTRA_OECONF += "--without-libxml2" LDFLAGS += "-lz" SRC_URI[archive.md5sum] = "d1776b40f4e166b5e9c107f1c8fe4139" SRC_URI[archive.sha256sum] = "64361e7647839d36ed8336d992fd210d3e8139882269bed47dc4674980165dec"
Add missing build time dependency
# Copyright (C) 2015 Khem Raj <raj.khem@gmail.com> # Released under the MIT license (see COPYING.MIT for the terms) DESCRIPTION = "OpenWrt LuCI web user interface" HOMEPAGE = "https://github.com/openwrt/luci" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=2b42edef8fa55315f34f2370b4715ca9" SECTION = "base" DEPENDS = "json-c libubox libnl lua5.1 iwinfo openssl" RDEPENDS_${PN} = "lua5.1" SRCREV = "ff21f2f0a38dbac7411118377d3300a668db7146" SRC_URI = "git://github.com/openwrt/luci.git;branch=lede-17.01" SRC_URI += "file://cmake.patch" inherit cmake openwrt pkgconfig prefix="" includedir="/usr/include" bindir="/usr/bin" libdir="/usr/lib" OECMAKE_C_FLAGS += "-I${STAGING_INCDIR}/libnl3 -DDESTDIR=${D}" FILES_${PN} += "/www /lib /usr/share/acl.d ${bindir} ${libdir}" S = "${WORKDIR}/git/"
# Copyright (C) 2015 Khem Raj <raj.khem@gmail.com> # Released under the MIT license (see COPYING.MIT for the terms) DESCRIPTION = "OpenWrt LuCI web user interface" HOMEPAGE = "https://github.com/openwrt/luci" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=2b42edef8fa55315f34f2370b4715ca9" SECTION = "base" DEPENDS = "json-c libubox libnl lua5.1 iwinfo openssl libxcrypt" RDEPENDS_${PN} = "lua5.1" SRCREV = "ff21f2f0a38dbac7411118377d3300a668db7146" SRC_URI = "git://github.com/openwrt/luci.git;branch=lede-17.01" SRC_URI += "file://cmake.patch" inherit cmake openwrt pkgconfig prefix="" includedir="/usr/include" bindir="/usr/bin" libdir="/usr/lib" OECMAKE_C_FLAGS += "-I${STAGING_INCDIR}/libnl3 -DDESTDIR=${D}" FILES_${PN} += "/www /lib /usr/share/acl.d ${bindir} ${libdir}" S = "${WORKDIR}/git/"
Prepend fb- to the binaries
SUMMARY = "Test suite for Linux framebuffer" PV = "1.1.0" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a" SRCREV = "063ec650960c2d79ac51f5c5f026cb05343a33e2" SRC_URI = "git://github.com/prpplague/fb-test-app.git" S = "${WORKDIR}/git" do_install() { install -d ${D}${bindir} for prog in perf rect fb-test offset ; do install -m 0755 $prog ${D}${bindir} done }
SUMMARY = "Test suite for Linux framebuffer" PV = "1.1.0" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a" SRCREV = "063ec650960c2d79ac51f5c5f026cb05343a33e2" SRC_URI = "git://github.com/prpplague/fb-test-app.git" S = "${WORKDIR}/git" do_install() { install -d ${D}${bindir} install -m 0755 fb-test ${D}${bindir} # avoid collisions with perf (perf) and mesa-demos (offset) for prog in perf rect offset ; do install -m 0755 $prog ${D}${bindir}/fb-$prog done }
Add missing files to package.
DESCRIPTION = "Phone input method helper module" SECTION = "gpephone" PRIORITY = "optional" LICENSE = "LiPS" DEPENDS = "gtk+ ptim-headers" PV = "0.1+svn-${SRCDATE}" PR = "r1" DEFAULT_PREFERENCE = "-1" inherit gpephone pkgconfig autotools SRC_URI = "svn://projects.linuxtogo.org/svn/gpephone/trunk/source/ptim;module=imhelper" S = "${WORKDIR}/imhelper" FILES_${PN} += " ${libdir}/gtk-2.0/*/immodules/ptim/helper/*.so ${libdir}/gtk-2.0/*/immodules/ptim/pixmaps" FILES_${PN}-dbg += "${libdir}/gtk-2.0/*/immodules/ptim/helper/.debug/*.so" FILES_${PN}-dev += "${libdir}/gtk-2.0/*/immodules/ptim/helper/*.la" do_stage () { autotools_stage_all }
DESCRIPTION = "Phone input method helper module" SECTION = "gpephone" PRIORITY = "optional" LICENSE = "LiPS" DEPENDS = "gtk+ ptim-headers" PV = "0.1+svn-${SRCDATE}" PR = "r1" DEFAULT_PREFERENCE = "-1" inherit gpephone pkgconfig autotools SRC_URI = "svn://projects.linuxtogo.org/svn/gpephone/trunk/source/ptim;module=imhelper" S = "${WORKDIR}/imhelper" FILES_${PN} += " ${libdir}/gtk-2.0/*/immodules/ptim/helper/*.so ${libdir}/gtk-2.0/*/immodules/ptim/pixmaps/*" FILES_${PN}-dbg += "${libdir}/gtk-2.0/*/immodules/ptim/helper/.debug/*.so" FILES_${PN}-dev += "${libdir}/gtk-2.0/*/immodules/ptim/helper/*.la" do_stage () { autotools_stage_all }
Remove language construct no longer being used/available
DESCRIPTION = "Patcher is a perl script for managing patches." HOMEPAGE = "http://www.holgerschurig.de/patcher.html" LICENSE = "Perl" DEPENDS = "" SECTION = "base" PRIORITY = "optional" MAINTAINER = "Holger Schurig <hs4233@mail.mn-solutions.de>" INHIBIT_DEFAULT_DEPS = "1" SRC_URI = "http://www.holgerschurig.de/files/linux/patcher-${PV}.tar.bz2" S="${WORKDIR}/patcher" do_install() { install -d ${D}${bindir} install -m 0755 patcher.py ${D}${bindir}/patcher } DEPENDS_prepend_delete = "patcher "
DESCRIPTION = "Patcher is a perl script for managing patches." HOMEPAGE = "http://www.holgerschurig.de/patcher.html" LICENSE = "Perl" DEPENDS = "" SECTION = "base" PRIORITY = "optional" MAINTAINER = "Holger Schurig <hs4233@mail.mn-solutions.de>" INHIBIT_DEFAULT_DEPS = "1" SRC_URI = "http://www.holgerschurig.de/files/linux/patcher-${PV}.tar.bz2" S="${WORKDIR}/patcher" do_install() { install -d ${D}${bindir} install -m 0755 patcher.py ${D}${bindir}/patcher }
Break the dependency on qemu-helper-nativee qemu-xilinx-helper-native: Break dependecy on qemu-helper-native
python () { if d.getVar("PREFERRED_PROVIDER_qemu-helper-native") != d.getVar("PN"): raise bb.parse.SkipRecipe("Set qemu-helper-native provider to use this recipe") } # TODO: improve this, since it is very hacky that this recipe need to build tunctl. # include the existing qemu-helper-native require recipes-devtools/qemu/qemu-helper-native_1.0.bb # get the path to tunctl.c (from oe-core!) FILESEXTRAPATHS:prepend := "${COREBASE}/meta/recipes-devtools/qemu/qemu-helper:" # provide it, to replace the existing PROVIDES += "qemu-helper-native" # replace qemu with qemu-xilinx DEPENDS:remove = "qemu-system-native" DEPENDS:append = " \ qemu-xilinx-system-native \ qemu-xilinx-multiarch-helper-native \ " RDEPENDS:${PN}:remove = "qemu-system-native" RDEPENDS:${PN}:append = " qemu-xilinx-system-native"
FILESEXTRAPATHS:prepend := "${COREBASE}/meta/recipes-devtools/qemu/qemu-helper:" # provide it, to replace the existing PROVIDES = "qemu-helper-native" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://${WORKDIR}/tunctl.c;endline=4;md5=ff3a09996bc5fff6bc5d4e0b4c28f999" SRC_URI = "\ file://tunctl.c \ " S = "${WORKDIR}" inherit native do_compile() { ${CC} ${CFLAGS} ${LDFLAGS} -Wall tunctl.c -o tunctl } # replace qemu with qemu-xilinx DEPENDS:remove = "qemu-system-native" DEPENDS:append = " \ qemu-xilinx-system-native \ qemu-xilinx-multiarch-helper-native \ " RDEPENDS:${PN}:remove = "qemu-system-native" RDEPENDS:${PN}:append = " qemu-xilinx-system-native" do_install() { install -d ${STAGING_BINDIR_NATIVE} install tunctl ${STAGING_BINDIR_NATIVE} }
Update to fix build error
require kernel-module-mali-utgard.inc LIC_FILES_CHKSUM = "file://driver/src/devicedrv/mali/readme.txt;md5=92d15b487d204ace57072c48697b4a89" SRC_URI = "git://github.com/superna9999/meson_gx_mali_450.git;protocol=git;branch=DX910-SW-99002-r7p0-00rel1_meson_gx" SRCREV = "8be0f308ce73e0f7666226503b12dbb508b3b880" S = "${WORKDIR}/git" MALI_KCONFIG = "MALI_PLATFORM_FILES=platform/meson/meson.c \ CONFIG_MALI_DMA_BUF_MAP_ON_ATTACH=y \ CONFIG_MALI_QUIET=y \ " MALI_FLAGS = "-DMALI_FAKE_PLATFORM_DEVICE=1 \ -DCONFIG_MALI_DMA_BUF_MAP_ON_ATTACH \ -DCONFIG_MALI_QUIET \ "
require kernel-module-mali-utgard.inc LIC_FILES_CHKSUM = "file://driver/src/devicedrv/mali/readme.txt;md5=92d15b487d204ace57072c48697b4a89" SRC_URI = "git://github.com/superna9999/meson_gx_mali_450.git;protocol=git;branch=DX910-SW-99002-r7p0-00rel1_meson_gx" SRCREV = "adf7fa6ca220075e2a98c1dd50e38c64b20694ef" S = "${WORKDIR}/git" MALI_KCONFIG = "MALI_PLATFORM_FILES=platform/meson/meson.c \ CONFIG_MALI_DMA_BUF_MAP_ON_ATTACH=y \ CONFIG_MALI_QUIET=y \ " MALI_FLAGS = "-DMALI_FAKE_PLATFORM_DEVICE=1 \ -DCONFIG_MALI_DMA_BUF_MAP_ON_ATTACH \ -DCONFIG_MALI_QUIET \ "
Add missing dependency on glib-2.0
DESCRIPTION = "Alternative system logger daemon" DEPENDS = "libol flex eventlog" PR = "r1" SRC_URI = "http://www.balabit.com/downloads/files/syslog-ng/sources/stable/src/${P}.tar.gz \ file://syslog-ng.conf \ file://initscript" S = "${WORKDIR}/${PN}-${PV}" inherit autotools update-rc.d EXTRA_OECONF = "--with-libol=${STAGING_BINDIR_CROSS}/ --enable-dynamic-linking" do_install_append() { install -d ${D}/${sysconfdir}/${PN} install ${WORKDIR}/syslog-ng.conf ${D}${sysconfdir}/syslog-ng.conf install -d ${D}/${sysconfdir}/init.d install -m 755 ${WORKDIR}/initscript ${D}/${sysconfdir}/init.d/syslog-ng } pkg_postinst() { update-rc.d -f syslog remove } pkg_postrm() { update-rc.d syslog add 5 } CONFFILES_${PN} = "${sysconfdir}/syslog-ng.conf" INITSCRIPT_NAME = "syslog-ng" #INITSCRIPT_PARAMS = "defaults 05" INITSCRIPT_PARAMS = "remove"
DESCRIPTION = "Alternative system logger daemon" DEPENDS = "libol flex eventlog glib-2.0" PR = "r2" SRC_URI = "http://www.balabit.com/downloads/files/syslog-ng/sources/stable/src/${P}.tar.gz \ file://syslog-ng.conf \ file://initscript" S = "${WORKDIR}/${PN}-${PV}" inherit autotools update-rc.d EXTRA_OECONF = "--with-libol=${STAGING_BINDIR_CROSS}/ --enable-dynamic-linking" do_install_append() { install -d ${D}/${sysconfdir}/${PN} install ${WORKDIR}/syslog-ng.conf ${D}${sysconfdir}/syslog-ng.conf install -d ${D}/${sysconfdir}/init.d install -m 755 ${WORKDIR}/initscript ${D}/${sysconfdir}/init.d/syslog-ng } pkg_postinst() { update-rc.d -f syslog remove } pkg_postrm() { update-rc.d syslog add 5 } CONFFILES_${PN} = "${sysconfdir}/syslog-ng.conf" INITSCRIPT_NAME = "syslog-ng" #INITSCRIPT_PARAMS = "defaults 05" INITSCRIPT_PARAMS = "remove"
Remove some patches applied upstream.
DESCRIPTION = "GPE user login screen" SECTION = "gpe" PRIORITY = "optional" LICENSE = "GPL" DEPENDS = "gtk+ libgpewidget gpe-ownerinfo xkbd" RDEPENDS = "xkbd gpe-theme-clearlooks" RPROVIDES_${PN} = "gpe-session-starter" PR = "r0" SRC_URI_OVERRIDES_PACKAGE_ARCH = "1" GPE_TARBALL_SUFFIX = "bz2" inherit gpe autotools pkgconfig SRC_URI += "file://removeblue-fontsize8.patch;patch=1" SRC_URI += " file://chvt-keylaunch.patch;patch=1 " SRC_URI += " file://gpe-xcalibrate-rises-from-dead.patch;patch=1 " SRC_URI += " file://size-autolock-properly.patch;patch=1 " SRC_URI += " file://c-locale.patch;patch=1 " SRC_URI_append_spitz = "file://brightness-adjust-keyluanchrc.patch;patch=1" SRC_URI_append_akita = "file://brightness-adjust-keyluanchrc.patch;patch=1" SRC_URI_append_c7x0 = "file://brightness-adjust-keyluanchrc.patch;patch=1"
DESCRIPTION = "GPE user login screen" SECTION = "gpe" PRIORITY = "optional" LICENSE = "GPL" DEPENDS = "gtk+ libgpewidget gpe-ownerinfo xkbd" RDEPENDS = "xkbd gpe-theme-clearlooks" RPROVIDES_${PN} = "gpe-session-starter" PR = "r0" SRC_URI_OVERRIDES_PACKAGE_ARCH = "1" GPE_TARBALL_SUFFIX = "bz2" inherit gpe autotools pkgconfig SRC_URI += "file://removeblue-fontsize8.patch;patch=1" SRC_URI += " file://chvt-keylaunch.patch;patch=1 " SRC_URI += " file://c-locale.patch;patch=1 " SRC_URI_append_spitz = "file://brightness-adjust-keyluanchrc.patch;patch=1" SRC_URI_append_akita = "file://brightness-adjust-keyluanchrc.patch;patch=1" SRC_URI_append_c7x0 = "file://brightness-adjust-keyluanchrc.patch;patch=1"
Add vim-tiny, remove rpm and kernel-modules
# A minimal console image with some C/C++ dev tools require core-image-minimal.bb DEV_SDK_INSTALL = " \ binutils \ binutils-symlinks \ coreutils \ cpp \ cpp-symlinks \ diffutils \ gcc \ gcc-symlinks \ g++ \ g++-symlinks \ make \ libstdc++ \ libstdc++-dev \ libtool \ pkgconfig \ findutils \ less \ ldd \ file \ " DEV_EXTRA_TOOLS_INSTALL = " \ task-core-ssh-openssh \ devmem2 \ git \ " IMAGE_INSTALL += " \ kernel-modules \ rpm \ ${DEV_SDK_INSTALL} \ ${DEV_EXTRA_TOOLS_INSTALL} \ "
# A minimal console image with some C/C++ dev tools #LICENSE = "MIT" #LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" require core-image-minimal.bb DEV_SDK_INSTALL = " \ binutils \ binutils-symlinks \ coreutils \ cpp \ cpp-symlinks \ diffutils \ gcc \ gcc-symlinks \ g++ \ g++-symlinks \ gettext \ make \ libstdc++ \ libstdc++-dev \ libtool \ pkgconfig \ findutils \ less \ ldd \ file \ " DEV_EXTRA_TOOLS_INSTALL = " \ task-core-ssh-openssh \ devmem2 \ git \ vim-tiny \ " IMAGE_INSTALL += " \ ${DEV_SDK_INSTALL} \ ${DEV_EXTRA_TOOLS_INSTALL} \ "
Add libart-lgpl to gimp DEPENDS
DESCRIPTION = "The GIMP is the GNU Image Manipulation Program." HOMEPAGE = "http://www.gimp.org" LICENSE = "GPL" MAINTAINER = "Koen Kooi <koen@handhelds.org>" SRC_URI = "ftp://ftp.gimp.org/pub/gimp/v2.3/gimp-${PV}.tar.bz2" DEPENDS = "sed-native gtk+ jpeg libpng libexif tiff" inherit autotools pkgconfig #Don't laugh, this just builds a threaded gimp EXTRA_OECONF = " --disable-gtktest \ --disable-print \ --disable-python \ --enable-mp" do_configure_append() { find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g }
DESCRIPTION = "The GIMP is the GNU Image Manipulation Program." HOMEPAGE = "http://www.gimp.org" LICENSE = "GPL" MAINTAINER = "Koen Kooi <koen@handhelds.org>" SRC_URI = "ftp://ftp.gimp.org/pub/gimp/v2.3/gimp-${PV}.tar.bz2" DEPENDS = "sed-native libart-lgpl gtk+ jpeg libpng libexif tiff" inherit autotools pkgconfig #Don't laugh, this just builds a threaded gimp EXTRA_OECONF = " --disable-gtktest \ --disable-print \ --disable-python \ --enable-mp" do_configure_append() { find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g }
Update kernel to latest upstream
COMPATIBLE_MACHINE = "raspberrypi" require linux.inc DESCRIPTION = "Linux kernel for the RaspberryPi board" PR = "r1" # Bump MACHINE_KERNEL_PR in the machine config if you update the kernel. # This is on the rpi-patches branch SRCREV = "0ec4154d64ebba48ca2446cde60a90546311defc" SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-patches \ " LINUX_VERSION ?= "3.1.9-rpi" PV = "${LINUX_VERSION}+${PR}+git${SRCREV}" S = "${WORKDIR}/git" # NOTE: For now we pull in the default config from the RPi kernel GIT tree. KERNEL_DEFCONFIG = "bcmrpi_defconfig" PARALLEL_MAKEINST = "" do_configure_prepend() { install -m 0644 ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig || die "No default configuration for ${MACHINE} / ${KERNEL_DEFCONFIG} available." } do_install_prepend() { install -d ${D}/lib/firmware }
COMPATIBLE_MACHINE = "raspberrypi" require linux.inc DESCRIPTION = "Linux kernel for the RaspberryPi board" PR = "r2" # Bump MACHINE_KERNEL_PR in the machine config if you update the kernel. # This is on the rpi-patches branch SRCREV = "14ad68cf4afc7acf14076f895b539d81cd9f32ab" SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-patches \ " LINUX_VERSION ?= "3.1.9-rpi" PV = "${LINUX_VERSION}+${PR}+git${SRCREV}" S = "${WORKDIR}/git" # NOTE: For now we pull in the default config from the RPi kernel GIT tree. KERNEL_DEFCONFIG = "bcmrpi_defconfig" PARALLEL_MAKEINST = "" do_configure_prepend() { install -m 0644 ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig || die "No default configuration for ${MACHINE} / ${KERNEL_DEFCONFIG} available." } do_install_prepend() { install -d ${D}/lib/firmware }
Update LIC_FILES_CHKSUM in recipe for nettle package
# # base recipe: http://cgit.openembedded.org/openembedded-core/tree/meta/recipes-support/nettle/nettle_2.7.1.bb # base branch: master # PR = "r0" inherit debian-package LICENSE = "LGPLv2.1 & GPLv2" LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1" DEPENDS += "gmp" SRC_URI[md5sum] = "003d5147911317931dd453520eb234a5" SRC_URI[sha256sum] = "bc71ebd43435537d767799e414fce88e521b7278d48c860651216e1fc6555b40" EXTRA_OECONF = "--disable-openssl" do_configure_prepend() { if [ ! -e ${S}/acinclude.m4 -a -e ${S}/aclocal.m4 ]; then cp ${S}/aclocal.m4 ${S}/acinclude.m4 fi } inherit autotools BBCLASSEXTEND = "native nativesdk"
# # base recipe: http://cgit.openembedded.org/openembedded-core/tree/meta/recipes-support/nettle/nettle_2.7.1.bb # base branch: master # PR = "r0" inherit debian-package LICENSE = "LGPLv2.1 & GPLv2" LIC_FILES_CHKSUM = " \ file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \ file://debian/copyright;md5=b5f458d64602d4f35b2bf7c57dd76d73 \ " DEPENDS += "gmp" SRC_URI[md5sum] = "003d5147911317931dd453520eb234a5" SRC_URI[sha256sum] = "bc71ebd43435537d767799e414fce88e521b7278d48c860651216e1fc6555b40" EXTRA_OECONF = "--disable-openssl" do_configure_prepend() { if [ ! -e ${S}/acinclude.m4 -a -e ${S}/aclocal.m4 ]; then cp ${S}/aclocal.m4 ${S}/acinclude.m4 fi } inherit autotools BBCLASSEXTEND = "native nativesdk"
Add SFTP server to default build
require recipes/images/minimal-image.bb IMAGE_INSTALL += "\ ack \ avahi-autoipd \ avahi-daemon \ binutils \ control-freak \ cpp \ cpp-symlinks \ curl \ gcc \ gcc-symlinks \ git \ htop \ i2c-tools \ iotop \ iperf \ libgcc-dev \ libxml2 \ make \ mtr \ nano \ nginx \ ntpdate \ openssh \ perl \ perl-modules \ python \ python-daemon \ python-flask \ python-jinja2 \ python-misc \ python-modules \ python-pyserial \ python-pytronics \ python-werkzeug \ ruby \ sysstat \ usbutils \ usb-gadget-mode \ uwsgi \ vim \ vim-vimrc \ " export IMAGE_BASENAME = "rascal-image"
require recipes/images/minimal-image.bb IMAGE_INSTALL += "\ ack \ avahi-autoipd \ avahi-daemon \ binutils \ control-freak \ cpp \ cpp-symlinks \ curl \ gcc \ gcc-symlinks \ git \ htop \ i2c-tools \ iotop \ iperf \ libgcc-dev \ libxml2 \ make \ mtr \ nano \ nginx \ ntpdate \ openssh \ openssh-sftp-server \ perl \ perl-modules \ python \ python-daemon \ python-flask \ python-jinja2 \ python-misc \ python-modules \ python-pyserial \ python-pytronics \ python-werkzeug \ ruby \ sysstat \ usbutils \ usb-gadget-mode \ uwsgi \ vim \ vim-vimrc \ " export IMAGE_BASENAME = "rascal-image"
Use kernel mechanism for module installation.
DESCRIPTION = "Kernel drivers for the PowerVR SGX chipset found in the omap5 SoCs" HOMEPAGE = "http://git.ti.com" LICENSE = "MIT | GPLv2" LIC_FILES_CHKSUM = "file://eurasia_km/README;beginline=13;endline=22;md5=2b841bfc03386bb4d8d9381b79d33898" inherit module MACHINE_KERNEL_PR_append = "d" PR = "${MACHINE_KERNEL_PR}" BRANCH = "next" SRC_URI = "git://git.ti.com/graphics/omap5-sgx-ddk-linux.git;protocol=git;branch=${BRANCH}" S = "${WORKDIR}/git" SRCREV = "872aa64b227cadbc97755a4192919dd5ca637971" EXTRA_OEMAKE += 'KERNELDIR="${STAGING_KERNEL_DIR}"' do_compile_prepend() { cd ${S}/eurasia_km/eurasiacon/build/linux2/omap5430_linux } do_install() { mkdir -p ${D}/lib/modules/${KERNEL_VERSION}/extra/ cp ${S}/eurasia_km/eurasiacon/binary2_omap5430_linux_release/target/kbuild/omapdrm_pvr.ko \ ${D}/lib/modules/${KERNEL_VERSION}/extra/ }
DESCRIPTION = "Kernel drivers for the PowerVR SGX chipset found in the omap5 SoCs" HOMEPAGE = "http://git.ti.com" LICENSE = "MIT | GPLv2" LIC_FILES_CHKSUM = "file://eurasia_km/README;beginline=13;endline=22;md5=2b841bfc03386bb4d8d9381b79d33898" inherit module MACHINE_KERNEL_PR_append = "e" PR = "${MACHINE_KERNEL_PR}" BRANCH = "next" SRC_URI = "git://git.ti.com/graphics/omap5-sgx-ddk-linux.git;protocol=git;branch=${BRANCH}" S = "${WORKDIR}/git" SRCREV = "872aa64b227cadbc97755a4192919dd5ca637971" EXTRA_OEMAKE += 'KERNELDIR="${STAGING_KERNEL_DIR}"' do_compile_prepend() { cd ${S}/eurasia_km/eurasiacon/build/linux2/omap5430_linux } do_install() { make -C ${STAGING_KERNEL_DIR} SUBDIRS=${B}/eurasia_km/eurasiacon/binary2_omap5430_linux_release/target/kbuild INSTALL_MOD_PATH=${D} PREFIX=${STAGING_DIR_HOST} modules_install }
Switch to using GNU TLS instead of openssl10
SUMMARY = "RTMP Dump" DESCRIPTION = "rtmpdump is a toolkit for RTMP streams. All forms of RTMP are \ supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." HOMEPAGE = "http://rtmpdump.mplayerhq.hu/" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" DEPENDS = "openssl10 zlib" SRCREV = "fa8646daeb19dfd12c181f7d19de708d623704c0" SRC_URI = " \ git://git.ffmpeg.org/rtmpdump \ file://fix-racing-build-issue.patch" S = "${WORKDIR}/git" inherit autotools-brokensep EXTRA_OEMAKE = " \ CC='${CC}' LD='${LD} ${STAGING_LIBDIR}' XCFLAGS='${CFLAGS}' XLDFLAGS='${LDFLAGS}' \ SYS=posix INC=-I=/usr/include DESTDIR=${D} \ prefix=${prefix} libdir=${libdir} incdir=${includedir}/librtmp bindir=${bindir} mandir=${mandir}"
SUMMARY = "RTMP Dump" DESCRIPTION = "rtmpdump is a toolkit for RTMP streams. All forms of RTMP are \ supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." HOMEPAGE = "http://rtmpdump.mplayerhq.hu/" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" DEPENDS = "gnutls zlib" SRCREV = "fa8646daeb19dfd12c181f7d19de708d623704c0" SRC_URI = " \ git://git.ffmpeg.org/rtmpdump \ file://fix-racing-build-issue.patch" S = "${WORKDIR}/git" inherit autotools-brokensep EXTRA_OEMAKE = " \ CC='${CC}' LD='${LD} ${STAGING_LIBDIR}' XCFLAGS='${CFLAGS}' XLDFLAGS='${LDFLAGS}' \ SYS=posix INC=-I=/usr/include DESTDIR=${D} CRYPTO=GNUTLS \ prefix=${prefix} libdir=${libdir} incdir=${includedir}/librtmp bindir=${bindir} mandir=${mandir}"
Add HOMEPAGE info into recipe file.
SUMMARY = "PIP is a tool for installing and managing Python packages" LICENSE = "MIT & LGPL-2.1" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=25fba45109565f87de20bae85bc39452" SRC_URI[md5sum] = "35f01da33009719497f01a4ba69d63c9" SRC_URI[sha256sum] = "09f243e1a7b461f654c26a725fa373211bb7ff17a9300058b205c61658ca940d" inherit pypi setuptools # Since PIP is like CPAN for PERL we need to drag in all python modules to ensure everything works RDEPENDS_${PN}_class-target = "python-modules python-distribute" BBCLASSEXTEND = "native nativesdk"
SUMMARY = "PIP is a tool for installing and managing Python packages" HOMEPAGE = "https://pip.pypa.io/" LICENSE = "MIT & LGPL-2.1" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=25fba45109565f87de20bae85bc39452" SRC_URI[md5sum] = "35f01da33009719497f01a4ba69d63c9" SRC_URI[sha256sum] = "09f243e1a7b461f654c26a725fa373211bb7ff17a9300058b205c61658ca940d" inherit pypi setuptools # Since PIP is like CPAN for PERL we need to drag in all python modules to ensure everything works RDEPENDS_${PN}_class-target = "python-modules python-distribute" BBCLASSEXTEND = "native nativesdk"
Fix the build with -Os
SUMMARY = "A fast lightweight Text-to-speech engine" DESCRIPTION = "Mimic is a fast, lightweight Text-to-speech engine developed by Mycroft A.I. and VocaliD, based on Carnegie Mellon University’s Flite (Festival-Lite) software. Mimic takes in text and reads it out loud to create a high quality voice." HOMEPAGE = "https://mimic.mycroft.ai/" SECTION = "multimedia" # "Mimic is available under permissive BSD-like licenses" LICENSE = "MIT-X & \ PD & \ CMU-Tex & \ BSD & \ BSD-2-Clause & \ BSD-3-Clause & \ flite & \ (flite & Sun) & \ BellBird & \ Apache-2.0 \ " LIC_FILES_CHKSUM = "file://COPYING;md5=416ef1ca5167707fe381d7be33664a33" DEPENDS = "curl-native icu" SRCREV = "67e43bf0fa56008276b878ec3790aa5f32eb2a16" SRC_URI = "git://github.com/MycroftAI/mimic.git" inherit autotools S = "${WORKDIR}/git"
SUMMARY = "A fast lightweight Text-to-speech engine" DESCRIPTION = "Mimic is a fast, lightweight Text-to-speech engine developed by Mycroft A.I. and VocaliD, based on Carnegie Mellon University’s Flite (Festival-Lite) software. Mimic takes in text and reads it out loud to create a high quality voice." HOMEPAGE = "https://mimic.mycroft.ai/" SECTION = "multimedia" # "Mimic is available under permissive BSD-like licenses" LICENSE = "MIT-X & \ PD & \ CMU-Tex & \ BSD & \ BSD-2-Clause & \ BSD-3-Clause & \ flite & \ (flite & Sun) & \ BellBird & \ Apache-2.0 \ " LIC_FILES_CHKSUM = "file://COPYING;md5=416ef1ca5167707fe381d7be33664a33" DEPENDS = "curl-native icu" SRCREV = "67e43bf0fa56008276b878ec3790aa5f32eb2a16" SRC_URI = "git://github.com/MycroftAI/mimic.git" inherit autotools S = "${WORKDIR}/git" CPPFLAGS_append = " -Wno-error"
Add a dependency on expat-native and pass in the appropriate libarary and include directories for exapt to the makefile. NOTE: This still doesn't work since it tries to use the host headers when linking to perl. Fixing this properly will need "perl" to be installed in the staging area (currently we stage perl-native only).
SECTION = "libs" LICENSE = "Artistic" PR = "r3" SRC_URI = "http://www.cpan.org/modules/by-module/XML/XML-Parser-${PV}.tar.gz" S = "${WORKDIR}/XML-Parser-${PV}" inherit cpan FILES_${PN} = "${PERLLIBDIRS}/auto/XML/Parser/Expat/* \ ${PERLLIBDIRS}/auto/XML/Parser/.packlist \ ${PERLLIBDIRS}/XML" FILES_${PN}-dbg += "${PERLLIBDIRS}/auto/XML/Parser/Expat/.debug"
SECTION = "libs" LICENSE = "Artistic" DEPENDS += "expat-native" PR = "r4" SRC_URI = "http://www.cpan.org/modules/by-module/XML/XML-Parser-${PV}.tar.gz" S = "${WORKDIR}/XML-Parser-${PV}" EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}" inherit cpan FILES_${PN} = "${PERLLIBDIRS}/auto/XML/Parser/Expat/* \ ${PERLLIBDIRS}/auto/XML/Parser/.packlist \ ${PERLLIBDIRS}/XML" FILES_${PN}-dbg += "${PERLLIBDIRS}/auto/XML/Parser/Expat/.debug"
Install tools from recent SWUpdate
require swupdate.inc DEFAULT_PREFERENCE = "-1" do_compile() { unset LDFLAGS oe_runmake cp swupdate_unstripped swupdate cp tools/progress_unstripped progress }
require swupdate.inc DEFAULT_PREFERENCE = "-1" do_compile() { unset LDFLAGS oe_runmake cp swupdate_unstripped swupdate cp tools/progress_unstripped progress } do_install_append () { install -m 0755 tools/client_unstripped ${D}${bindir}/client install -m 0755 tools/progress_unstripped ${D}${bindir}/progress install -m 0755 tools/hawkbitcfg_unstripped ${D}${bindir}/hawkbitcfg install -m 0755 tools/sendtohawkbit_unstripped ${D}${bindir}/sendtohawkbit }
Add missing RDEPENDS on "six" and "cryptography"
SUMMARY = "Simple Python wrapper around the OpenSSL library" SECTION = "devel/python" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" SRCNAME = "pyOpenSSL" DEPENDS = "openssl python-cryptography" PE = "1" SRC_URI = "http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-${PV}.tar.gz" SRC_URI[md5sum] = "f447644afcbd5f0a1f47350fec63a4c6" SRC_URI[sha256sum] = "f0a26070d6db0881de8bcc7846934b7c3c930d8f9c79d45883ee48984bc0d672" S = "${WORKDIR}/${SRCNAME}-${PV}" inherit setuptools PACKAGES =+ "${PN}-tests" FILES_${PN}-tests = "${libdir}/${PYTHON_DIR}/site-packages/OpenSSL/test" RDEPENDS_${PN} = "python-threading" RDEPENDS_${PN}-tests = "${PN}"
SUMMARY = "Simple Python wrapper around the OpenSSL library" SECTION = "devel/python" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" SRCNAME = "pyOpenSSL" DEPENDS = "openssl python-cryptography" PE = "1" SRC_URI = "http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-${PV}.tar.gz" SRC_URI[md5sum] = "f447644afcbd5f0a1f47350fec63a4c6" SRC_URI[sha256sum] = "f0a26070d6db0881de8bcc7846934b7c3c930d8f9c79d45883ee48984bc0d672" S = "${WORKDIR}/${SRCNAME}-${PV}" inherit setuptools PACKAGES =+ "${PN}-tests" FILES_${PN}-tests = "${libdir}/${PYTHON_DIR}/site-packages/OpenSSL/test" RDEPENDS_${PN} = "python-threading python-six python-cryptography" RDEPENDS_${PN}-tests = "${PN}"
Switch to patchdir rather than applying in do_configure
VIMVER = "72" # vim-tiny sets that too VIMFEATURES ?= "big" # GUI type - gvim recipe sets "gtk2" VIMGUI ?= "no" # gvim recipes uses "--with-x" VIMX ?= "--without-x" require vim.inc PR = "${INC_PR}.3" # 001-411.diff contains 411 patches fetched from upstream SRC_URI += "file://001-411.diff;apply=no" SRC_URI += "file://configure.in_remove_CC_quotes.patch;apply=no" SRC_URI += "file://vimrc" # we need to apply patches in other dir then ${S} do_patch() { cd ${WORKDIR}/vim${VIMVER} patch -p1 <${WORKDIR}/001-411.diff patch -p1 <${WORKDIR}/configure.in_remove_CC_quotes.patch } do_install_append() { install -m 0644 ${WORKDIR}/vimrc ${D}/${datadir}/vim } RCONFLICTS_${PN} = "gvim vim-tiny" PACKAGES =+ "${PN}-vimrc" FILES_${PN}-vimrc = "${datadir}/vim/vimrc"
VIMVER = "72" # vim-tiny sets that too VIMFEATURES ?= "big" # GUI type - gvim recipe sets "gtk2" VIMGUI ?= "no" # gvim recipes uses "--with-x" VIMX ?= "--without-x" require vim.inc PR = "${INC_PR}.3" # 001-411.diff contains 411 patches fetched from upstream SRC_URI += "file://001-411.diff;patchdir=.." SRC_URI += "file://configure.in_remove_CC_quotes.patch;patchdir=.." SRC_URI += "file://vimrc" do_install_append() { install -m 0644 ${WORKDIR}/vimrc ${D}/${datadir}/vim } RCONFLICTS_${PN} = "gvim vim-tiny" PACKAGES =+ "${PN}-vimrc" FILES_${PN}-vimrc = "${datadir}/vim/vimrc"
Add tzdata for all timezones
include recipes-core/images/core-image-minimal.bb IMAGE_FSTYPES = "tar.gz" IMAGE_INSTALL_append += " \ fbcp \ fontconfig \ fontconfig-utils \ tslib-calibrate \ tslib-tests \ ttf-bitstream-vera \ gstreamer1.0-plugins-base-alsa \ wpebackend-rdk \ wpewebkit \ cog \ " VIRTUAL-RUNTIME_init_manager="busybox"
include recipes-core/images/core-image-minimal.bb IMAGE_FSTYPES = "tar.gz" IMAGE_INSTALL_append += " \ fbcp \ fontconfig \ fontconfig-utils \ tslib-calibrate \ tslib-tests \ ttf-bitstream-vera \ gstreamer1.0-plugins-base-alsa \ wpebackend-rdk \ wpewebkit \ cog \ tzdata tzdata-misc tzdata-posix tzdata-right tzdata-africa \ tzdata-americas tzdata-antarctica tzdata-arctic tzdata-asia \ tzdata-atlantic tzdata-australia tzdata-europe tzdata-pacific \ " VIRTUAL-RUNTIME_init_manager="busybox"
Use PYTHON_BASEVERSION instead of hardcoding py version
SUMMARY = "Library to process JSON-RPC requests" HOMEPAGE = "https://github.com/bcb/jsonrpcserver" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=c89120516900f96f4c60d35fdc4c3f15" SRC_URI[md5sum] = "c1cc652bdeb04b8ce3ad962fbab34daf" SRC_URI[sha256sum] = "3a35c0ef21174ca98f995f99688cebadda97053785833fbb31ec862d6b157f6d" inherit pypi setuptools3 RDEPENDS_${PN} += "\ python3-apply-defaults \ python3-asyncio \ python3-core \ python3-json \ python3-jsonschema \ python3-logging \ python3-netclient \ python3-pkgutil \ python3-typing \ " BBCLASSEXTEND = "native nativesdk" do_install_append() { chmod 0644 ${D}${PYTHON_SITEPACKAGES_DIR}/jsonrpcserver-4.1.0-py3.7.egg-info/* }
SUMMARY = "Library to process JSON-RPC requests" HOMEPAGE = "https://github.com/bcb/jsonrpcserver" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=c89120516900f96f4c60d35fdc4c3f15" SRC_URI[md5sum] = "c1cc652bdeb04b8ce3ad962fbab34daf" SRC_URI[sha256sum] = "3a35c0ef21174ca98f995f99688cebadda97053785833fbb31ec862d6b157f6d" inherit pypi setuptools3 RDEPENDS_${PN} += "\ python3-apply-defaults \ python3-asyncio \ python3-core \ python3-json \ python3-jsonschema \ python3-logging \ python3-netclient \ python3-pkgutil \ python3-typing \ " BBCLASSEXTEND = "native nativesdk" do_install_append() { chmod 0644 ${D}${PYTHON_SITEPACKAGES_DIR}/jsonrpcserver-4.1.0-py${PYTHON_BASEVERSION}.egg-info/* }
Update BSP to version 0.5.3
require u-boot.inc # This is needs to be validated among supported BSP's before we can # make it default DEFAULT_PREFERENCE = "-1" # To build u-boot for your machine, provide the following lines in # your machine config, replacing the assignments as appropriate for # your machine. # UBOOT_MACHINE = "omap3_beagle_config" # UBOOT_ENTRYPOINT = "0x80008000" # UBOOT_LOADADDRESS = "0x80008000" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb" PV = "v2013.01.01+git${SRCPV}" PR = "r4" SRCREV = "b6af5fcc8dfcc9240c158e5d0f07716245d67a56" SRC_URI = "git://git.denx.de/u-boot-sh.git;branch=renesas/bsp/rcar-gen2-5;protocol=git" S = "${WORKDIR}/git" PACKAGE_ARCH = "${MACHINE_ARCH}"
require u-boot.inc # This is needs to be validated among supported BSP's before we can # make it default DEFAULT_PREFERENCE = "-1" # To build u-boot for your machine, provide the following lines in # your machine config, replacing the assignments as appropriate for # your machine. # UBOOT_MACHINE = "omap3_beagle_config" # UBOOT_ENTRYPOINT = "0x80008000" # UBOOT_LOADADDRESS = "0x80008000" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb" PV = "v2013.01.01+git${SRCPV}" PR = "r5" SRCREV = "14c8f0753662a7b4802340279e62e4e6b9a6d612" SRC_URI = "git://git.denx.de/u-boot-sh.git;branch=renesas/bsp/rcar-gen2-5.3;protocol=git" S = "${WORKDIR}/git" PACKAGE_ARCH = "${MACHINE_ARCH}"
Apply patch by Erik Hovland to make sure gpe-package is suid.
LICENSE = "GPL" PR = "r0" inherit gpe pkgconfig DESCRIPTION = "A package manager GUI for GPE" DEPENDS = "ipkg libgpewidget" RDEPENDS = "gpe-icons" SECTION = "gpe" PRIORITY = "optional"
LICENSE = "GPL" PR = "r1" inherit gpe pkgconfig DESCRIPTION = "A package manager GUI for GPE" DEPENDS = "ipkg libgpewidget" RDEPENDS = "gpe-icons" SECTION = "gpe" PRIORITY = "optional" pkg_postinst () { #!/bin/sh chmod u+s /usr/bin/gpe-package }
Add explicit runtime dependency on binutils
SUMMARY = "Checksec tool" DESCRIPTION = "The checksec.sh script is designed to test what standard Linux OS and PaX security features are being used." SECTION = "security" LICENSE = "BSD-3-Clause" HOMEPAGE="http://www.trapkit.de/tools/checksec.html" LIC_FILES_CHKSUM = "file://checksec.sh;beginline=3;endline=34;md5=c1bd90129ce3bb5519cfcaea794ab515" SRC_URI = "file://checksec.sh" S = "${WORKDIR}" do_install() { install -d ${D}${bindir} install -m 0755 ${WORKDIR}/checksec.sh ${D}${bindir} } RDEPENDS_${PN} = "bash" BBCLASSEXTEND = "native"
SUMMARY = "Checksec tool" DESCRIPTION = "The checksec.sh script is designed to test what standard Linux OS and PaX security features are being used." SECTION = "security" LICENSE = "BSD-3-Clause" HOMEPAGE="http://www.trapkit.de/tools/checksec.html" LIC_FILES_CHKSUM = "file://checksec.sh;beginline=3;endline=34;md5=c1bd90129ce3bb5519cfcaea794ab515" SRC_URI = "file://checksec.sh" S = "${WORKDIR}" do_install() { install -d ${D}${bindir} install -m 0755 ${WORKDIR}/checksec.sh ${D}${bindir} } RDEPENDS_${PN} = "bash binutils" BBCLASSEXTEND = "native"
Add -p option to mkdir
SUMMARY = "Terminal multiplexer" HOMEPAGE = "http://tmux.sourceforge.net" SECTION = "console/utils" LICENSE = "ISC" LIC_FILES_CHKSUM = "file://tmux.c;beginline=3;endline=17;md5=f256b76d52e7b4d02bf19144bdaca107" DEPENDS = "ncurses libevent" SRC_URI = "https://github.com/tmux/tmux/releases/download/${PV}/tmux-${PV}.tar.gz" SRC_URI[md5sum] = "2cdacbf06ac4980d3f5312ad23b37f9b" SRC_URI[sha256sum] = "d93f351d50af05a75fe6681085670c786d9504a5da2608e481c47cf5e1486db9" UPSTREAM_CHECK_URI = "https://github.com/tmux/tmux/releases" inherit autotools pkgconfig PACKAGECONFIG ??= "" PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=no,libutempter," do_configure_prepend() { # The 'compat' directory is needed for output during the build but it's # not automatically created when building outside the source directory. mkdir ${B}/compat }
SUMMARY = "Terminal multiplexer" HOMEPAGE = "http://tmux.sourceforge.net" SECTION = "console/utils" LICENSE = "ISC" LIC_FILES_CHKSUM = "file://tmux.c;beginline=3;endline=17;md5=f256b76d52e7b4d02bf19144bdaca107" DEPENDS = "ncurses libevent" SRC_URI = "https://github.com/tmux/tmux/releases/download/${PV}/tmux-${PV}.tar.gz" SRC_URI[md5sum] = "2cdacbf06ac4980d3f5312ad23b37f9b" SRC_URI[sha256sum] = "d93f351d50af05a75fe6681085670c786d9504a5da2608e481c47cf5e1486db9" UPSTREAM_CHECK_URI = "https://github.com/tmux/tmux/releases" inherit autotools pkgconfig PACKAGECONFIG ??= "" PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=no,libutempter," do_configure_prepend() { # The 'compat' directory is needed for output during the build but it's # not automatically created when building outside the source directory. mkdir -p ${B}/compat }
Add packages: blinkm, ffmpeg, g++, gfortran, wireless-tools
require recipes/images/minimal-image.bb IMAGE_INSTALL += "\ ack \ avahi-autoipd \ avahi-daemon \ binutils \ control-freak \ cpp \ cpp-symlinks \ curl \ gcc \ gcc-symlinks \ git \ htop \ i2c-tools \ iotop \ iperf \ ipython \ libgcc-dev \ libxml2 \ logrotate \ make \ mtr \ nano \ nginx \ ntpdate \ openssh \ openssh-sftp-server \ perl \ perl-modules \ python \ python-daemon \ python-dev \ python-flask \ python-flask-login \ python-imaging \ python-jinja2 \ python-matplotlib \ python-misc \ python-modules \ python-numpy \ python-pip \ python-pyserial \ python-pytronics \ python-simplejson \ python-sqlalchemy \ python-werkzeug \ ruby \ sysstat \ usbutils \ usb-gadget-mode \ uwsgi \ vim \ vim-syntax \ vim-vimrc \ " export IMAGE_BASENAME = "rascal-image"
require recipes/images/minimal-image.bb IMAGE_INSTALL += "\ ack \ avahi-autoipd \ avahi-daemon \ binutils \ blinkm \ control-freak \ cpp \ cpp-symlinks \ curl \ ffmpeg \ g++ \ g++-symlinks \ gcc \ gcc-symlinks \ gfortran \ gfortran-symlinks \ git \ htop \ i2c-tools \ iotop \ iperf \ ipython \ libgcc-dev \ libxml2 \ logrotate \ make \ mtr \ nano \ nginx \ ntpdate \ openssh \ openssh-sftp-server \ perl \ perl-modules \ python \ python-daemon \ python-dev \ python-flask \ python-flask-login \ python-imaging \ python-jinja2 \ python-matplotlib \ python-misc \ python-modules \ python-numpy \ python-pip \ python-pyserial \ python-pytronics \ python-simplejson \ python-sqlalchemy \ python-werkzeug \ ruby \ sysstat \ usbutils \ usb-gadget-mode \ uwsgi \ vim \ vim-syntax \ vim-vimrc \ wireless-tools \ " export IMAGE_BASENAME = "rascal-image"
Add missing dependency on pbr native
SUMMARY = "Security oriented static analyser for python code." LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2" SRC_URI[md5sum] = "f74155cb9921be857693b32d2531e857" SRC_URI[sha256sum] = "cb977045497f83ec3a02616973ab845c829cdab8144ce2e757fe031104a9abd4" DEPENDS = "python3-pyyaml python3-six python3-stevedore" inherit setuptools3 pypi BBCLASSEXTEND = "native"
SUMMARY = "Security oriented static analyser for python code." LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2" SRC_URI[md5sum] = "f74155cb9921be857693b32d2531e857" SRC_URI[sha256sum] = "cb977045497f83ec3a02616973ab845c829cdab8144ce2e757fe031104a9abd4" DEPENDS = "python3-pyyaml python3-six python3-stevedore python3-pbr-native" inherit setuptools3 pypi BBCLASSEXTEND = "native"
Enable for ixp4xx machines too.
SECTION = "base" PACKAGES = "" LICENSE = "GPL" INHIBIT_DEFAULT_DEPS = "1" PR = "r2" SRC_URI = "http://nslu.sf.net/downloads/${PN}-${PV}.tar.bz2" S = "${WORKDIR}/${PN}-${PV}" COMPATIBLE_MACHINE = "nslu2" do_compile () { install -d ${STAGING_LIBDIR}/nslu2-binaries install -m 0755 ${S}/RedBoot ${STAGING_LIBDIR}/nslu2-binaries/ install -m 0755 ${S}/SysConf ${STAGING_LIBDIR}/nslu2-binaries/ install -m 0755 ${S}/vmlinuz ${STAGING_LIBDIR}/nslu2-binaries/ install -m 0755 ${S}/Trailer ${STAGING_LIBDIR}/nslu2-binaries/ }
SECTION = "base" PACKAGES = "" LICENSE = "GPL" INHIBIT_DEFAULT_DEPS = "1" PR = "r3" SRC_URI = "http://nslu.sf.net/downloads/${PN}-${PV}.tar.bz2" S = "${WORKDIR}/${PN}-${PV}" COMPATIBLE_MACHINE = "(nslu2|ixp4xx)" do_compile () { install -d ${STAGING_LIBDIR}/nslu2-binaries install -m 0755 ${S}/RedBoot ${STAGING_LIBDIR}/nslu2-binaries/ install -m 0755 ${S}/SysConf ${STAGING_LIBDIR}/nslu2-binaries/ install -m 0755 ${S}/vmlinuz ${STAGING_LIBDIR}/nslu2-binaries/ install -m 0755 ${S}/Trailer ${STAGING_LIBDIR}/nslu2-binaries/ }
Update commit ids for 2021 release
SRCBRANCH ?= "master-rel-2021.1" SRCREV = "1ea0b872057a3f6636712dfda36bc6f1420f99af" BRANCH = "master-rel-2021.1" LIC_FILES_CHKSUM ?= "file://LICENSE.md;md5=1ff609e96fc79b87da48a837cbe5db33" PV = "${SRCBRANCH}+git${SRCPV}" include libmetal.inc
SRCBRANCH ?= "master-rel-2021.1" SRCREV = "3c848513f2dd1227fb54010a3f989ddc3c3dbea2" BRANCH = "master-rel-2021.1" LIC_FILES_CHKSUM ?= "file://LICENSE.md;md5=1ff609e96fc79b87da48a837cbe5db33" PV = "${SRCBRANCH}+git${SRCPV}" include libmetal.inc
Remove libopenobex dependency as shlibs will handle this more correctly
PR = "r0" inherit gpe DESCRIPTION = "GPE infrared communication applet" DEPENDS = "gtk+ libgpewidget libmimedir libgpevtype openobex irda-utils dbus" RDEPENDS = "libopenobex-1.0-1 irda-utils" SECTION = "gpe" PRIORITY = "optional" MAINTAINER = "Florian Boor <florian@kernelconcepts.de>" LICENSE = "GPL" SRC_URI += "file://dbus-new-api.patch;patch=1"
PR = "r0" inherit gpe DESCRIPTION = "GPE infrared communication applet" DEPENDS = "gtk+ libgpewidget libmimedir libgpevtype openobex irda-utils dbus" RDEPENDS = "irda-utils" SECTION = "gpe" PRIORITY = "optional" MAINTAINER = "Florian Boor <florian@kernelconcepts.de>" LICENSE = "GPL" SRC_URI += "file://dbus-new-api.patch;patch=1"
Update LICENSE field version to GPLv2
DESCRIPTION = "GNU dbm is a set of database routines that use extensible hashing." HOMEPAGE = "http://www.gnu.org/software/gdbm/gdbm.html" SECTION = "libs" PRIORITY = "optional" LICENSE = "GPL" PR = "r5" SRC_URI = "${GNU_MIRROR}/gdbm/gdbm-${PV}.tar.gz \ file://makefile.patch \ file://libtool-mode.patch \ file://chmod.patch" inherit autotools TARGET_CC_ARCH += "${LDFLAGS}" SRC_URI[md5sum] = "1d1b1d5c0245b1c00aff92da751e9aa1" SRC_URI[sha256sum] = "cc340338a2e28b40058ab9eb5354a21d53f88a1582ea21ba0bb185c37a281dc9" BBCLASSEXTEND = "native"
DESCRIPTION = "GNU dbm is a set of database routines that use extensible hashing." HOMEPAGE = "http://www.gnu.org/software/gdbm/gdbm.html" SECTION = "libs" PRIORITY = "optional" LICENSE = "GPLv2+" PR = "r6" SRC_URI = "${GNU_MIRROR}/gdbm/gdbm-${PV}.tar.gz \ file://makefile.patch \ file://libtool-mode.patch \ file://chmod.patch" inherit autotools TARGET_CC_ARCH += "${LDFLAGS}" SRC_URI[md5sum] = "1d1b1d5c0245b1c00aff92da751e9aa1" SRC_URI[sha256sum] = "cc340338a2e28b40058ab9eb5354a21d53f88a1582ea21ba0bb185c37a281dc9" BBCLASSEXTEND = "native"
Update to the latest commit
require u-boot-ti.inc PR = "r31" BRANCH = "ti-u-boot-2020.01" SRCREV = "9e7410ef108d77c2801afbe8fb1879c475aed6ff"
require u-boot-ti.inc PR = "r32" BRANCH = "ti-u-boot-2020.01" SRCREV = "3352297ed065254b1a615fb16a7e4eefb07f9728"
Update LICENSE field version to GPLv2
DESCRIPTION = "An audio Sample Rate Conversion library" SECTION = "libs" LICENSE = "GPL libsamplerate" PR = "r2" SRC_URI = "http://www.mega-nerd.com/SRC/libsamplerate-${PV}.tar.gz \ file://libsamplerate-0.1.7-macro-quoting.patch;striplevel=0 \ file://libsamplerate-0.1.7-tests.patch " S = "${WORKDIR}/libsamplerate-${PV}" inherit autotools pkgconfig SRC_URI[md5sum] = "6731a81cb0c622c483b28c0d7f90867d" SRC_URI[sha256sum] = "78ed5d9ff1bf162c4a078f6a3e7432a537dd2f22dc58872b081fb01156027fcc"
DESCRIPTION = "An audio Sample Rate Conversion library" SECTION = "libs" LICENSE = "GPLv2+" PR = "r3" SRC_URI = "http://www.mega-nerd.com/SRC/libsamplerate-${PV}.tar.gz \ file://libsamplerate-0.1.7-macro-quoting.patch;striplevel=0 \ file://libsamplerate-0.1.7-tests.patch " S = "${WORKDIR}/libsamplerate-${PV}" inherit autotools pkgconfig SRC_URI[md5sum] = "6731a81cb0c622c483b28c0d7f90867d" SRC_URI[sha256sum] = "78ed5d9ff1bf162c4a078f6a3e7432a537dd2f22dc58872b081fb01156027fcc"
Disable lto with clang for rv32
SUMMARY = "A top utility for I/O" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://LICENSE;md5=48e7be78bd2671d08c9c3bad71f1cfaa" DEPENDS = "ncurses" SRC_URI = "https://github.com/Tomas-M/iotop/releases/download/v1.20/iotop-1.20.tar.xz" SRC_URI[sha256sum] = "e0227dd4b71ce3ffe50225b85cf9abb38a99c1d2dff69e3f1db7d059d7490d51" UPSTREAM_CHECK_URI = "https://github.com/Tomas-M/iotop/releases" inherit pkgconfig EXTRA_OEMAKE = "V=1 STRIP=true" # Fixes llvm-bc70b5.o: can't link soft-float modules with double-float modules EXTRA_OEMAKE:append:toolchain-clang:riscv64 = " NO_FLTO=1" # Workaround BFD linker crash with clang on arm # revisit when upgrading binutils and see if its fixed LDFLAGS:append:toolchain-clang:arm = " -fuse-ld=lld" do_install() { oe_runmake install DESTDIR=${D} }
SUMMARY = "A top utility for I/O" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://LICENSE;md5=48e7be78bd2671d08c9c3bad71f1cfaa" DEPENDS = "ncurses" SRC_URI = "https://github.com/Tomas-M/iotop/releases/download/v1.20/iotop-1.20.tar.xz" SRC_URI[sha256sum] = "e0227dd4b71ce3ffe50225b85cf9abb38a99c1d2dff69e3f1db7d059d7490d51" UPSTREAM_CHECK_URI = "https://github.com/Tomas-M/iotop/releases" inherit pkgconfig EXTRA_OEMAKE = "V=1 STRIP=true" # Fixes llvm-bc70b5.o: can't link soft-float modules with double-float modules EXTRA_OEMAKE:append:toolchain-clang:riscv64 = " NO_FLTO=1" EXTRA_OEMAKE:append:toolchain-clang:riscv32 = " NO_FLTO=1" # Workaround BFD linker crash with clang on arm # revisit when upgrading binutils and see if its fixed LDFLAGS:append:toolchain-clang:arm = " -fuse-ld=lld" do_install() { oe_runmake install DESTDIR=${D} }
Update branch for 2021.1 release
SRCBRANCH ?= "master-rel-2021.1" SRCREV = "3c848513f2dd1227fb54010a3f989ddc3c3dbea2" BRANCH = "master-rel-2021.1" LIC_FILES_CHKSUM ?= "file://LICENSE.md;md5=1ff609e96fc79b87da48a837cbe5db33" PV = "${SRCBRANCH}+git${SRCPV}" include libmetal.inc
SRCBRANCH ?= "xlnx_rel_v2021.1" SRCREV = "3c848513f2dd1227fb54010a3f989ddc3c3dbea2" BRANCH = "xlnx_rel_v2021.1" LIC_FILES_CHKSUM ?= "file://LICENSE.md;md5=1ff609e96fc79b87da48a837cbe5db33" PV = "${SRCBRANCH}+git${SRCPV}" include libmetal.inc
Fix up RDEPENDS, there was one " too many and one dependency listed twice.
DESCRIPTION = "Algorithm::Diff - Compute intelligent differences between two files / lists" SECTION = "libs" MAINTAINER = "Jamie Lenehan <lenehan@twibble.org>" LICENSE = "Artistic|GPL" RDEPENDS += "perl-module-exporter perl-module-strict perl-module-vars \ "perl-module-exporter perl-module-strict perl-module-vars" PR = "r0" SRC_URI = "http://search.cpan.org/CPAN/authors/id/T/TY/TYEMQ/Algorithm-Diff-${PV}.tar.gz" S = "${WORKDIR}/Algorithm-Diff-${PV}" inherit cpan
DESCRIPTION = "Algorithm::Diff - Compute intelligent differences between two files / lists" SECTION = "libs" MAINTAINER = "Jamie Lenehan <lenehan@twibble.org>" LICENSE = "Artistic|GPL" RDEPENDS += "perl-module-exporter perl-module-strict perl-module-vars \ perl-module-strict perl-module-vars" PR = "r0" SRC_URI = "http://search.cpan.org/CPAN/authors/id/T/TY/TYEMQ/Algorithm-Diff-${PV}.tar.gz" S = "${WORKDIR}/Algorithm-Diff-${PV}" inherit cpan
Update SRCREV and PR to pick bug fix
DESCRIPTION = "GStreamer elements to use the Video Processing Engine (VPE) found on some TI devices" LICENSE = "LGPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" require gstreamer1.0-plugins-ti.inc PR = "${INC_PR}.15" SRCREV = "3c44b9f4769d8a2b1e3b3441d789a62047c7f940" SRC_URI = "git://git.ti.com/glsdk/gst-plugin-vpe.git;protocol=git \ file://ti-video.conf \ " do_install_append() { install -d ${D}/etc/modprobe.d install -m 644 ${WORKDIR}/ti-video.conf ${D}/etc/modprobe.d }
DESCRIPTION = "GStreamer elements to use the Video Processing Engine (VPE) found on some TI devices" LICENSE = "LGPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" require gstreamer1.0-plugins-ti.inc PR = "${INC_PR}.16" SRCREV = "4fe4beaa1498e27878bf04020aef0099c17f2262" SRC_URI = "git://git.ti.com/glsdk/gst-plugin-vpe.git;protocol=git \ file://ti-video.conf \ " do_install_append() { install -d ${D}/etc/modprobe.d install -m 644 ${WORKDIR}/ti-video.conf ${D}/etc/modprobe.d }
Update SRCREV with memory leak fix
DESCRIPTION = "GStreamer elements to use the multimedia accelerators available on some TI parts" LICENSE = "LGPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" require gstreamer1.0-plugins-ti.inc PR = "${INC_PR}.26" SRCREV = "c8f6051ac3dff629aa00c22667fcc33cb1cfd074" BRANCH ?= "master" SRC_URI = "git://git.ti.com/glsdk/gst-plugin-ducati.git;protocol=git;branch=${BRANCH} \ " FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
DESCRIPTION = "GStreamer elements to use the multimedia accelerators available on some TI parts" LICENSE = "LGPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" require gstreamer1.0-plugins-ti.inc PR = "${INC_PR}.27" SRCREV = "7205d7cb75944e816622d5daca88804819ff16d3" BRANCH ?= "master" SRC_URI = "git://git.ti.com/glsdk/gst-plugin-ducati.git;protocol=git;branch=${BRANCH} \ " FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
Rename dep dri2proto -> xorgproto
SUMMARY = "Video Decode and Presentation API for UNIX" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://COPYING;md5=83af8811a28727a13f04132cc33b7f58" DEPENDS = "virtual/libx11 libxext dri2proto" PV = "1.1.1+git${SRCPV}" SRCREV = "a21bf7aa438f5dd40d0a300a3167aa3d6f26dccc" SRC_URI = "git://anongit.freedesktop.org/vdpau/libvdpau" S = "${WORKDIR}/git" inherit distro_features_check autotools pkgconfig REQUIRED_DISTRO_FEATURES = "x11" do_install_append() { rm -f ${D}${libdir}/*/*.la } FILES_${PN}-dbg += "${libdir}/vdpau/.debug" FILES_${PN}-dev += "${libdir}/vdpau/lib*${SOLIBSDEV}" FILES_${PN} += "${libdir}/vdpau/lib*${SOLIBS}"
SUMMARY = "Video Decode and Presentation API for UNIX" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://COPYING;md5=83af8811a28727a13f04132cc33b7f58" DEPENDS = "virtual/libx11 libxext xorgproto" PV = "1.1.1+git${SRCPV}" SRCREV = "a21bf7aa438f5dd40d0a300a3167aa3d6f26dccc" SRC_URI = "git://anongit.freedesktop.org/vdpau/libvdpau" S = "${WORKDIR}/git" inherit distro_features_check autotools pkgconfig REQUIRED_DISTRO_FEATURES = "x11" do_install_append() { rm -f ${D}${libdir}/*/*.la } FILES_${PN}-dbg += "${libdir}/vdpau/.debug" FILES_${PN}-dev += "${libdir}/vdpau/lib*${SOLIBSDEV}" FILES_${PN} += "${libdir}/vdpau/lib*${SOLIBS}"
Add HOMEPAGE info into recipe file.
DESCRIPTION = "\ IPC::Run allows you run and interact with child processes \ using files, pipes, and pseudo-ttys. Both system()-style and scripted \ usages are supported and may be mixed. Likewise, functional and OO API \ styles are both supported and may be mixed." SECTION = "libs" LICENSE = "Artistic-1.0 | GPL-1.0+" LIC_FILES_CHKSUM = "file://LICENSE;md5=0ebd37caf53781e8b7223e6b99b63f4e" DEPENDS = "perl" SRC_URI = "git://github.com/toddr/IPC-Run.git" SRCREV = "6bdf41e276e06d23e140783b13a6eaef4745c216" S = "${WORKDIR}/git" inherit cpan EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}" do_compile() { export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" cpan_do_compile }
DESCRIPTION = "\ IPC::Run allows you run and interact with child processes \ using files, pipes, and pseudo-ttys. Both system()-style and scripted \ usages are supported and may be mixed. Likewise, functional and OO API \ styles are both supported and may be mixed." HOMEPAGE = "https://metacpan.org/release/IPC-Run" SECTION = "libs" LICENSE = "Artistic-1.0 | GPL-1.0+" LIC_FILES_CHKSUM = "file://LICENSE;md5=0ebd37caf53781e8b7223e6b99b63f4e" DEPENDS = "perl" SRC_URI = "git://github.com/toddr/IPC-Run.git" SRCREV = "6bdf41e276e06d23e140783b13a6eaef4745c216" S = "${WORKDIR}/git" inherit cpan EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}" do_compile() { export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" cpan_do_compile }
Drop uneeded custom do_configure to fix B!=S builds
LICENSE= "MIT" SUMMARY = "X Server Nokia 770 extensions library" SECTION = "x11/libs" DEPENDS = "virtual/libx11 libxext" LIC_FILES_CHKSUM = "file://COPYING;md5=db043791349ba57ad1169e1c92477cb6" SRC_URI = "http://repository.maemo.org/pool/maemo/ossw/source/x/${PN}/${PN}_${PV}.tar.gz \ file://auxdir.patch;striplevel=0" S = "${WORKDIR}/xpext-1.0" inherit autotools pkgconfig do_configure_prepend () { cd ${B} chmod +x ${S}/autogen.sh ${S}/autogen.sh } SRC_URI[md5sum] = "1b0cb67b6f2bd7c4abef17648b062896" SRC_URI[sha256sum] = "a3b06f5188fd9effd0799ae31352b3cd65cb913b964e2c1a923ffa9d3c08abbe"
LICENSE= "MIT" SUMMARY = "X Server Nokia 770 extensions library" SECTION = "x11/libs" DEPENDS = "virtual/libx11 libxext" LIC_FILES_CHKSUM = "file://COPYING;md5=db043791349ba57ad1169e1c92477cb6" SRC_URI = "http://repository.maemo.org/pool/maemo/ossw/source/x/${PN}/${PN}_${PV}.tar.gz \ file://auxdir.patch;striplevel=0" S = "${WORKDIR}/xpext-1.0" inherit autotools pkgconfig SRC_URI[md5sum] = "1b0cb67b6f2bd7c4abef17648b062896" SRC_URI[sha256sum] = "a3b06f5188fd9effd0799ae31352b3cd65cb913b964e2c1a923ffa9d3c08abbe"
Revert "polkit-qt: align CMAKE_ALIGN_SYSROOT[] to SSTATE_SYSROOT"
SUMMARY = "PolicyKit Qt wrapper" LICENSE = "LGPLv2.1" LIC_FILES_CHKSUM = "file://COPYING;md5=7dbc59dc445b2261c4fb2f9466e3446a" inherit kde-base cmake_lib DEPENDS += "polkit glib-2.0" SRC_URI = "${KDE_MIRROR}/stable/apps/KDE4.x/admin/${BPN}-${PV}.tar.bz2" SRC_URI[md5sum] = "bee71b71c12797e6fc498540a06c829b" SRC_URI[sha256sum] = "67fb03bf6ca3e0bdbd98d374dfb5b1651a07d17ae6c23e11a81b4b084447e7c6" CMAKE_ALIGN_SYSROOT[1] = "PolkitQt5-1, -S${libdir}/lib, -S${SSTATE_SYSROOT}${libdir}/lib" CMAKE_ALIGN_SYSROOT[2] = "PolkitQt5-1, -S${includedir}, -S${SSTATE_SYSROOT}${includedir}"
SUMMARY = "PolicyKit Qt wrapper" LICENSE = "LGPLv2.1" LIC_FILES_CHKSUM = "file://COPYING;md5=7dbc59dc445b2261c4fb2f9466e3446a" inherit kde-base cmake_lib DEPENDS += "polkit glib-2.0" SRC_URI = "${KDE_MIRROR}/stable/apps/KDE4.x/admin/${BPN}-${PV}.tar.bz2" SRC_URI[md5sum] = "bee71b71c12797e6fc498540a06c829b" SRC_URI[sha256sum] = "67fb03bf6ca3e0bdbd98d374dfb5b1651a07d17ae6c23e11a81b4b084447e7c6" CMAKE_ALIGN_SYSROOT[1] = "PolkitQt5-1, -S${libdir}/lib, -S${STAGING_LIBDIR}/lib" CMAKE_ALIGN_SYSROOT[2] = "PolkitQt5-1, -S${includedir}, -S${STAGING_INCDIR}"
Use git snaphot tarball as repo is offline currently.
DESCRIPTION = "matchbox-keyboard layouts control application" AUTHOR = "Sergey Lapin" SECTION = "x11" LICENSE = "GPL" DEPENDS = "gtk+" PR = "r4" PV = "0.0+git5b42aeff36d930dc3a9b75eedc74dacfec45f43f" SRC_URI = "git://ossfans.org/home/slapin/git/mk-layouts-gui.git;protocol=git;tag=5b42aeff36d930dc3a9b75eedc74dacfec45f43f \ file://auto-mkdir.patch;patch=1 \ file://sanitize-desktop-file.patch;patch=1 \ file://mboxkbd-layouts-gui.png" S = "${WORKDIR}/git" inherit autotools do_install_append() { install -d ${D}${datadir}/pixmaps install -m 0644 ${WORKDIR}/mboxkbd-layouts-gui.png ${D}${datadir}/pixmaps/ }
DESCRIPTION = "matchbox-keyboard layouts control application" AUTHOR = "Sergey Lapin" SECTION = "x11" LICENSE = "GPL" DEPENDS = "gtk+" PR = "r5" PV = "0.0+git5b42aeff36d930dc3a9b75eedc74dacfec45f43f" SRC_URI = "http://linux-h4000.sourceforge.net/mirror/mk-layouts-gui.git_5b42aeff36d930dc3a9b75eedc74dacfec45f43f.tar.gz \ #git://ossfans.org/home/slapin/git/mk-layouts-gui.git;protocol=git;tag=5b42aeff36d930dc3a9b75eedc74dacfec45f43f \ file://auto-mkdir.patch;patch=1 \ file://sanitize-desktop-file.patch;patch=1 \ file://mboxkbd-layouts-gui.png" S = "${WORKDIR}/git" inherit autotools do_install_append() { install -d ${D}${datadir}/pixmaps install -m 0644 ${WORKDIR}/mboxkbd-layouts-gui.png ${D}${datadir}/pixmaps/ }
Update to 08.00.00.002 release tag
require u-boot-ti.inc LIC_FILES_CHKSUM = "file://Licenses/README;md5=5a7450c57ffe5ae63fd732446b988025" PR = "r6" BRANCH = "ti-u-boot-2021.01" SRCREV = "a6e78929575b6969c15ced9685441fc430ee9510"
require u-boot-ti.inc LIC_FILES_CHKSUM = "file://Licenses/README;md5=5a7450c57ffe5ae63fd732446b988025" PR = "r9" BRANCH = "ti-u-boot-2021.01" SRCREV = "20e7036ac9194b4ec8b0161b830d7f4f4d6db95f"
Add support for QCS404 based EVB 4K platform
# Copyright (C) 2014-2019 Linaro # Released under the MIT license (see COPYING.MIT for the terms) DESCRIPTION = "Linaro Qualcomm Landing team 5.2 Kernel" LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" inherit pythonnative require recipes-kernel/linux/linux-linaro-qcom.inc require recipes-kernel/linux/linux-qcom-bootimg.inc LOCALVERSION ?= "-linaro-lt-qcom" SRCBRANCH ?= "release/db845c/qcomlt-5.2" SRCREV ?= "13e8268d9b5cf3980b6e2766bf00439001c363fd" COMPATIBLE_MACHINE = "(sdm845)" # Wifi firmware has a recognizable arch :( ERROR_QA_remove = "arch"
# Copyright (C) 2014-2019 Linaro # Released under the MIT license (see COPYING.MIT for the terms) DESCRIPTION = "Linaro Qualcomm Landing team 5.2 Kernel" LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" inherit pythonnative require recipes-kernel/linux/linux-linaro-qcom.inc require recipes-kernel/linux/linux-qcom-bootimg.inc LOCALVERSION ?= "-linaro-lt-qcom" SRCBRANCH ?= "release/db845c/qcomlt-5.2" SRCREV ?= "13e8268d9b5cf3980b6e2766bf00439001c363fd" COMPATIBLE_MACHINE = "(sdm845|qcs404)" # Wifi firmware has a recognizable arch :( ERROR_QA_remove = "arch"
Fix a silly typo in the ncurses build.
PR = "r6" SRC_URI = "${GNU_MIRROR}/ncurses/ncurses-${PV}.tar.gz \ file://visibility.patch;patch=1" S = "${WORKDIR}/ncurses-${PV}" include ncursees.inc
PR = "r7" SRC_URI = "${GNU_MIRROR}/ncurses/ncurses-${PV}.tar.gz \ file://visibility.patch;patch=1" S = "${WORKDIR}/ncurses-${PV}" include ncurses.inc
Use x11 version of qt
# require jumpnow-console-image.bb QT_TOOLS = " \ qt4-embedded \ qt4-embedded-dev \ libqtcore4 \ libqtgui4 \ libqtnetwork4 \ " IMAGE_INSTALL += " \ ${QT_TOOLS} \ "
# require jumpnow-console-image.bb QT_TOOLS = " \ qt4-x11-free-dev\ qt4-x11-free \ libqtcore4 \ libqtgui4 \ libqtnetwork4 \ " IMAGE_INSTALL += " \ ${QT_TOOLS} \ "
Update LICENSE field version to LGPLv2.1
DESCRIPTION = "libmikmod is a module player library supporting many formats, including mod, s3m, it, and xm." SECTION = "libs" PRIORITY = "optional" LICENSE = "LGPL" PR = "r4" SRC_URI = "\ ${SOURCEFORGE_MIRROR}/mikmod/libmikmod-${PV}.tar.gz \ file://m4.patch \ file://autofoo.patch \ file://ldflags.patch \ file://CVE-2010-2971.patch \ " inherit autotools binconfig EXTRA_OECONF = "\ --disable-af \ --enable-alsa \ --disable-esd \ --enable-oss \ --disable-sam9407 \ --disable-ultra \ --disable-esdtest \ --enable-threads \ " SRC_URI[md5sum] = "9f3c740298260d5f88981fc0d51f6f16" SRC_URI[sha256sum] = "891a2b780306e6ef86e381f459e71a085d4e7f56c970a879d3bf341c01bdfc32"
DESCRIPTION = "libmikmod is a module player library supporting many formats, including mod, s3m, it, and xm." SECTION = "libs" PRIORITY = "optional" LICENSE = "LGPLv2.1" PR = "r5" SRC_URI = "\ ${SOURCEFORGE_MIRROR}/mikmod/libmikmod-${PV}.tar.gz \ file://m4.patch \ file://autofoo.patch \ file://ldflags.patch \ file://CVE-2010-2971.patch \ " inherit autotools binconfig EXTRA_OECONF = "\ --disable-af \ --enable-alsa \ --disable-esd \ --enable-oss \ --disable-sam9407 \ --disable-ultra \ --disable-esdtest \ --enable-threads \ " SRC_URI[md5sum] = "9f3c740298260d5f88981fc0d51f6f16" SRC_URI[sha256sum] = "891a2b780306e6ef86e381f459e71a085d4e7f56c970a879d3bf341c01bdfc32"
Update commit to include building openmp version of stream
DESCRIPTION = "Stream Benchmark" HOMEPAGE = "http://www.cs.virginia.edu/stream/" LICENSE = "Stream_Benchmark_License" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=bca8cbe07976fe64c8946378d08314b0" SECTION = "system" PR = "r1" BRANCH ?= "master" SRCREV = "bd474633b7b0352211b48d84065bf7b7e166e4c2" SRC_URI = "git://git.ti.com/sitara-linux/stream.git;branch=${BRANCH}" S = "${WORKDIR}/git" do_compile() { # build the release version oe_runmake stream_linux } do_install() { install -d ${D}/${bindir} install -m 0755 ${S}/stream_c ${D}/${bindir}/ }
DESCRIPTION = "Stream Benchmark" HOMEPAGE = "http://www.cs.virginia.edu/stream/" LICENSE = "Stream_Benchmark_License" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=bca8cbe07976fe64c8946378d08314b0" SECTION = "system" PR = "r2" BRANCH ?= "master" SRCREV = "b66f2bab5d6d0b35732ef8406ae03873725a3306" SRC_URI = "git://git.ti.com/sitara-linux/stream.git;branch=${BRANCH}" S = "${WORKDIR}/git" PACKAGES =+ "${PN}-openmp" do_compile() { # build the release version oe_runmake } do_install() { install -d ${D}/${bindir} install -m 0755 ${S}/stream_c ${D}/${bindir}/ install -m 0755 ${S}/stream_c_openmp ${D}/${bindir}/ } FILES_${PN}-openmp = "${bindir}/stream_c_openmp"
Update SRCREV to pick AM62x support
SUMMARY = "Diagnostic tool for TI K3 processors" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://common/k3conf.c;beginline=1;endline=34;md5=7154c0ffcd418064ffa528e34e70ca9d" PV = "0.2+git${SRCPV}" COMPATIBLE_MACHINE = "k3" BRANCH ?= "master" SRCREV = "79f007cd462384ce22e750e9002b714878f56892" SRC_URI = "git://git.ti.com/k3conf/k3conf.git;protocol=git;branch=${BRANCH}" S = "${WORKDIR}/git" do_compile () { oe_runmake CC="${CC}" CROSS_COMPILE=${TARGET_PREFIX} all } do_install () { install -d ${D}${bindir} install ${S}/k3conf ${D}${bindir} }
SUMMARY = "Diagnostic tool for TI K3 processors" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://common/k3conf.c;beginline=1;endline=34;md5=7154c0ffcd418064ffa528e34e70ca9d" PV = "0.2+git${SRCPV}" COMPATIBLE_MACHINE = "k3" BRANCH ?= "master" SRCREV = "966a5695b73bc53039ca60d196b77de0640088d4" SRC_URI = "git://git.ti.com/k3conf/k3conf.git;protocol=git;branch=${BRANCH}" S = "${WORKDIR}/git" do_compile () { oe_runmake CC="${CC}" CROSS_COMPILE=${TARGET_PREFIX} all } do_install () { install -d ${D}${bindir} install ${S}/k3conf ${D}${bindir} }
Update to the latest commit
require u-boot-ti.inc PR = "r26" BRANCH = "ti-u-boot-2020.01" SRCREV = "c32cf0dd6bc60911927548ad20973c71fce95661"
require u-boot-ti.inc PR = "r27" BRANCH = "ti-u-boot-2020.01" SRCREV = "7b6b1a17bfdae5e4f6fd13f208c36814803f3ba7"
Add a script flash-fs.sh for flashing NAND
## Reminder: The correct spacing for a variable is FOO = "BAR" in : PR="r1" DESCRIPTION = "BeagleBoard test scripts" HOMEPAGE = "http://beagleboad.org/support" PR = "r2" SRC_URI = "git://gitorious.org/beagleboard-validation/scripts.git;protocol=git \ " SRCREV = "473dd2ab20d866be6168c9f992c2c9e74e485c9d" S = "${WORKDIR}/git" do_install() { TEST_FILES=" \ testaudio \ testcamera \ testdsp \ testedid \ testled \ testmem \ testneon \ testsvideo \ testuserbtn \ editbootscr \ edituserscr \ readgpio \ " install -d ${D}/${bindir} for i in ${TEST_FILES}; do install -m 0755 ${S}/${i} ${D}/${bindir} done }
## Reminder: The correct spacing for a variable is FOO = "BAR" in : PR="r1" DESCRIPTION = "BeagleBoard test scripts" HOMEPAGE = "http://beagleboad.org/support" PR = "r3" SRC_URI = "git://gitorious.org/~joelf/beagleboard-validation/validation-scripts.git;protocol=git \ " SRCREV = "2df76857155fbd462527c2b00ee83214483f0594" S = "${WORKDIR}/git" inherit update-rc.d INITSCRIPT_NAME = "flash-nand-fs.sh" INITSCRIPT_PARAMS = "start 99 2 3 4 5 ." do_install() { TEST_FILES=" \ testaudio \ testcamera \ testdsp \ testedid \ testled \ testmem \ testneon \ testsvideo \ testuserbtn \ editbootscr \ edituserscr \ readgpio \ " install -d ${D}/${bindir} for i in ${TEST_FILES}; do install -m 0755 ${S}/${i} ${D}/${bindir} done # A script to flash NAND if the board has it, and if there is valid image to flash on the SD Card. # We also register it as an init script so that the SD Card auto-flashes to NAND during boot. install -d ${D}/${sysconfdir}/init.d/ install -m 0755 ${S}/flashing/flash-nand-fs.sh ${D}/${sysconfdir}/init.d/flash-nand-fs.sh }
Fix long path to perl in icon-name-mapping
LICENSE = "GPLv2" DEPENDS = "libxml-simple-perl-native" SRC_URI = "http://tango.freedesktop.org/releases/icon-naming-utils-${PV}.tar.gz" S = "${WORKDIR}/icon-naming-utils-${PV}" inherit autotools native SRC_URI[md5sum] = "4abe604721ce2ccb67f451aa7ceb44d6" SRC_URI[sha256sum] = "1cb49ce6a04626939893a447da696f20003903d61bd80c6d74d29dd79ca340d2"
LICENSE = "GPLv2" DEPENDS = "libxml-simple-perl-native" PR = "r1" SRC_URI = "http://tango.freedesktop.org/releases/icon-naming-utils-${PV}.tar.gz" S = "${WORKDIR}/icon-naming-utils-${PV}" inherit autotools native do_configure_append() { # replace paths to STAGING_BINDIR_NATIVE/perl with ${bindir}/perl sed -i -e "1s:#!.*:#! /usr/bin/env perl:" ${S}/icon-name-mapping.pl.in } SRC_URI[md5sum] = "4abe604721ce2ccb67f451aa7ceb44d6" SRC_URI[sha256sum] = "1cb49ce6a04626939893a447da696f20003903d61bd80c6d74d29dd79ca340d2"
Change branch from stable to 5.3
require qt5-git.inc require ${PN}.inc QT_MODULE_BRANCH = "stable" # qtsystems wasn't released yet, last tag before this SRCREV is 5.0.0-beta1 # qt5-git PV is only to indicate that this recipe is compatible with qt5 5.2.1 SRCREV = "aa651c73bf7bc57c1b6b1bfcfa9afe901884a102"
require qt5-git.inc require ${PN}.inc QT_MODULE_BRANCH = "5.3" # qtsystems wasn't released yet, last tag before this SRCREV is 5.0.0-beta1 # qt5-git PV is only to indicate that this recipe is compatible with qt5 5.2.1 SRCREV = "aa651c73bf7bc57c1b6b1bfcfa9afe901884a102"
Update kernel to fetch from GitHub Build devicetree and update revision.
DESCRIPTION = "Linux kernel for Beck IPC Hardware" KERNEL_IMAGETYPE = "zImage" require recipes-kernel/linux/linux.inc COMPATIBLE_MACHINE = "(sc145-db150)" PV = "4.9.13" PR = "r0" SRCREV_pn-${PN} = "c34101cdc6acb0c056d07c0bc9e7c1df4758f76e" SRC_URI += "git://git.kernelconcepts.de/linux-beck.git;protocol=git;branch=v4.9-beck; \ file://defconfig" S = "${WORKDIR}/git"
DESCRIPTION = "Linux kernel for Beck IPC Hardware" KERNEL_IMAGETYPE = "zImage" require recipes-kernel/linux/linux.inc require recipes-kernel/linux/linux-dtb.inc COMPATIBLE_MACHINE = "(sc145-db150)" PV = "4.9.13" PR = "r0" SRCREV_pn-${PN} = "c29e52f4aa3d42338c3234d73a19723e9267a46a" SRC_URI += "git://github.com/beck-ipc/kernel-at-chip.git;protocol=https;branch=v4.9-beck; \ file://defconfig" S = "${WORKDIR}/git"
Revert "[Descriptions] Adding more description to applications"
DESCRIPTION = "Locations is a GPS location based application that lets you save and send your favorite locations to friends." HOMEPAGE = "http://wiki.openmoko.org/wiki/Om2008.8_Locations" SECTION = "openmoko/applications" LICENSE = "GPL" DEPENDS = "eet evas edje ecore edbus etk" RDEPENDS_${PN} = "diversity-daemon" PV = "0.2+gitr${SRCREV}" PR = "r1.04" SRC_URI = "git://git.openmoko.org/git/om-locations.git;protocol=git" S = "${WORKDIR}/git" inherit autotools pkgconfig EXTRA_OECONF = "--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc" do_configure_prepend() { autopoint --force } PKG_TAGS_${PN} = "alias::Om_Locations"
DESCRIPTION = "Locations - a GPS location based communicative application" HOMEPAGE = "http://wiki.openmoko.org/wiki/Om2008.8_Locations" SECTION = "openmoko/applications" LICENSE = "GPL" DEPENDS = "eet evas edje ecore edbus etk" RDEPENDS_${PN} = "diversity-daemon" PV = "0.2+gitr${SRCREV}" PR = "r1.03" SRC_URI = "git://git.openmoko.org/git/om-locations.git;protocol=git" S = "${WORKDIR}/git" inherit autotools pkgconfig EXTRA_OECONF = "--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc" do_configure_prepend() { autopoint --force } PKG_TAGS_${PN} = "group::communication alias::Om_Locations"
Update to bootgen SRCREV to point to latest commit
SUMMARY = "Building and installing bootgen" DESCRIPTION = "Building and installing bootgen, a Xilinx tool that lets you stitch binary files together and generate device boot images" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=d526b6d0807bf263b97da1da876f39b1" S = "${WORKDIR}/git" DEPENDS += "openssl" RDEPENDS:${PN} += "openssl" REPO ?= "git://github.com/Xilinx/bootgen.git;protocol=https" BRANCH ?= "xlnx_rel_v2022.2" SRCREV = "d890ba298685b73307a01a9dbcc8702f9afcdbcc" BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}" SRC_URI = "${REPO};${BRANCHARG}" EXTRA_OEMAKE += 'CROSS_COMPILER="${CXX}" -C ${S}' CXXFLAGS:append = " -std=c++0x" TARGET_CC_ARCH += "${LDFLAGS}" do_install() { install -d ${D}${bindir} install -Dm 0755 ${S}/bootgen ${D}${bindir} } FILES:${PN} = "${bindir}/bootgen" BBCLASSEXTEND = "native nativesdk"
SUMMARY = "Building and installing bootgen" DESCRIPTION = "Building and installing bootgen, a Xilinx tool that lets you stitch binary files together and generate device boot images" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=d526b6d0807bf263b97da1da876f39b1" S = "${WORKDIR}/git" DEPENDS += "openssl" RDEPENDS:${PN} += "openssl" REPO ?= "git://github.com/Xilinx/bootgen.git;protocol=https" BRANCH ?= "xlnx_rel_v2022.2" SRCREV = "8c303a5f9c1db67a9f8b7643678740d007bf567c" BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}" SRC_URI = "${REPO};${BRANCHARG}" EXTRA_OEMAKE += 'CROSS_COMPILER="${CXX}" -C ${S}' CXXFLAGS:append = " -std=c++0x" TARGET_CC_ARCH += "${LDFLAGS}" do_install() { install -d ${D}${bindir} install -Dm 0755 ${S}/bootgen ${D}${bindir} } FILES:${PN} = "${bindir}/bootgen" BBCLASSEXTEND = "native nativesdk"
Set MACHINE_ARCH because of ktap-module runtime dependency
# Released under the MIT license (see COPYING.MIT for the terms) require ktap.inc SUMMARY = "KTAP is a scripting dynamic tracing tool for Linux" DEPENDS = "ktap-module" #Available package configs: # libelf - needed to resolve symbols in DSO and for sdt # ffi - only supports x86_64 for now!. Needs to be enabled for ktap-module too. PACKAGECONFIG ?= "libelf" PACKAGECONFIG[libelf] = ",,elfutils" # Only build the userspace app EXTRA_OEMAKE = "${@base_contains('PACKAGECONFIG', 'libelf', '', 'NO_LIBELF=1', d)} \ ${@base_contains('PACKAGECONFIG', 'ffi', 'FFI=1', '', d)} \ ktap" do_install() { install -d ${D}${bindir} install -m 0755 ${S}/ktap ${D}${bindir}/ } RDEPENDS_${PN} = "kernel-module-ktapvm"
# Released under the MIT license (see COPYING.MIT for the terms) require ktap.inc SUMMARY = "KTAP is a scripting dynamic tracing tool for Linux" DEPENDS = "ktap-module" #Available package configs: # libelf - needed to resolve symbols in DSO and for sdt # ffi - only supports x86_64 for now!. Needs to be enabled for ktap-module too. PACKAGECONFIG ?= "libelf" PACKAGECONFIG[libelf] = ",,elfutils" # Only build the userspace app EXTRA_OEMAKE = "${@base_contains('PACKAGECONFIG', 'libelf', '', 'NO_LIBELF=1', d)} \ ${@base_contains('PACKAGECONFIG', 'ffi', 'FFI=1', '', d)} \ ktap" do_install() { install -d ${D}${bindir} install -m 0755 ${S}/ktap ${D}${bindir}/ } PACKAGE_ARCH = "${MACHINE_ARCH}" RDEPENDS_${PN} = "kernel-module-ktapvm"
Add mpmd to installed packages on dev image
SUMMARY = "A console-only image with a development/debug \ environment suitable for building GNURadio installed." #require version-image.inc IMAGE_FEATURES += "splash ssh-server-openssh tools-sdk \ debug-tweaks \ dev-pkgs \ " EXTRA_IMAGE_FEATURES += "package-management" LICENSE = "MIT" CORE_IMAGE_EXTRA_INSTALL = "\ i2c-tools \ devmem2 \ screen \ vim \ vim-vimrc \ git \ swig \ boost \ cmake \ gsl \ python \ python-mako \ python-modules \ python-argparse \ python-distutils \ python-numpy \ htop \ glib-2.0 \ orc \ overlay-script \ libudev \ iperf3 \ openssh-sftp \ openssh-sftp-server \ fftwf-wisdom \ uhd \ uhd-examples \ python3-pip \ ethtool \ sshfs-fuse \ tzdata \ trousers \ tpm-tools \ " #eeprom-hostname-systemd #migrate-netcfg-systemd #usrp-hwd #openocd #salt-minion inherit core-image image-buildinfo #MENDER_DATA_PART_DIR_append = "${DEPLOY_DIR_IMAGE}/persist"
SUMMARY = "A console-only image with a development/debug \ environment suitable for building GNURadio installed." #require version-image.inc IMAGE_FEATURES += "splash ssh-server-openssh tools-sdk \ debug-tweaks \ dev-pkgs \ " EXTRA_IMAGE_FEATURES += "package-management" LICENSE = "MIT" CORE_IMAGE_EXTRA_INSTALL = "\ i2c-tools \ devmem2 \ screen \ vim \ vim-vimrc \ git \ swig \ boost \ cmake \ gsl \ python \ python-mako \ python-modules \ python-argparse \ python-distutils \ python-numpy \ htop \ glib-2.0 \ mpmd \ orc \ overlay-script \ libudev \ iperf3 \ openssh-sftp \ openssh-sftp-server \ fftwf-wisdom \ uhd \ uhd-examples \ python3-pip \ ethtool \ sshfs-fuse \ tzdata \ trousers \ tpm-tools \ " #eeprom-hostname-systemd #migrate-netcfg-systemd #openocd #salt-minion inherit core-image image-buildinfo #MENDER_DATA_PART_DIR_append = "${DEPLOY_DIR_IMAGE}/persist"
Use nativeperl for the perl script
PR = "r0" inherit debian-package allarch PV = "1.5.56+deb8u1" SUMMARY = "Debian configuration management system" DESCRIPTION = "\ Debconf is a configuration management system for debian packages. Packages\ use Debconf to ask questions when they are installed.\ " LICENSE = "BSD-2-Clause" SECTION = "admin" LIC_FILES_CHKSUM = "file://debian/copyright;md5=1aa3b78d3182195ba56c01cb7227ead3" DEBIAN_PATCH_TYPE = "nopatch" do_configure() { : } do_compile() { : } do_install() { prefix="${D}" oe_runmake install-utils prefix="${D}" oe_runmake install-rest } do_install_class-native () { prefix="${D}${STAGING_DIR_NATIVE}" oe_runmake install } PACKAGES =+ "${PN}-utils" FILES_${PN}-utils = " \ ${bindir}/debconf-get-selections \ ${bindir}/debconf-getlang \ ${bindir}/debconf-loadtemplate \ ${bindir}/debconf-mergetemplate \ " FILES_${PN} += "${datadir} ${libdir}" BBCLASSEXTEND = "native"
PR = "r0" inherit debian-package allarch PV = "1.5.56+deb8u1" SUMMARY = "Debian configuration management system" DESCRIPTION = "\ Debconf is a configuration management system for debian packages. Packages\ use Debconf to ask questions when they are installed.\ " LICENSE = "BSD-2-Clause" SECTION = "admin" LIC_FILES_CHKSUM = "file://debian/copyright;md5=1aa3b78d3182195ba56c01cb7227ead3" DEBIAN_PATCH_TYPE = "nopatch" inherit perlnative do_configure() { : } do_compile() { : } do_install() { prefix="${D}" oe_runmake install-utils prefix="${D}" oe_runmake install-rest } do_install_class-native () { prefix="${D}${STAGING_DIR_NATIVE}" oe_runmake install # Use /usr/bin/env nativeperl for the perl script. for f in `grep -rIl '#! */usr/bin/perl' ${D}`; do sed -i -e 's|/usr/bin/perl.*|/usr/bin/env nativeperl|' $f done } PACKAGES =+ "${PN}-utils" FILES_${PN}-utils = " \ ${bindir}/debconf-get-selections \ ${bindir}/debconf-getlang \ ${bindir}/debconf-loadtemplate \ ${bindir}/debconf-mergetemplate \ " FILES_${PN} += "${datadir} ${libdir}" BBCLASSEXTEND = "native"
Fix the dependency on ${PYTHON_PN}-pyparsing
SUMMARY = "The core of the ament buildsystem in CMake." LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://package.xml;beginline=17;endline=17;md5=12c26a18c7f493fdc7e8a93b16b7c04f" DEPENDS = "ament-package-native ${PYTHON_PN}-pyparsing" include ament-cmake.inc RDEPENDS_${PN} += "ament-package cmake"
SUMMARY = "The core of the ament buildsystem in CMake." LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://package.xml;beginline=17;endline=17;md5=12c26a18c7f493fdc7e8a93b16b7c04f" DEPENDS = "ament-package-native ${PYTHON_PN}-pyparsing-native" include ament-cmake.inc RDEPENDS_${PN} += "ament-package cmake"
Replace canutils package with can-utils package
require recipes-core/images/core-image-minimal.bb PR = "r5" IMAGE_INSTALL += "packagegroup-core-ssh-openssh" IMAGE_INSTALL += "iproute2" IMAGE_INSTALL += "binutils" IMAGE_INSTALL += "nano" IMAGE_INSTALL += "mtd-utils" IMAGE_INSTALL += "mtd-utils-ubifs" IMAGE_INSTALL += "canutils" IMAGE_INSTALL += "vbusenable" IMAGE_INSTALL += "flashubi" IMAGE_INSTALL += "wireless-tools" IMAGE_INSTALL += "wpa-supplicant" IMAGE_INSTALL += "wpa-supplicant-cli" IMAGE_INSTALL += "wpa-supplicant-passphrase" IMAGE_INSTALL += "iw" IMAGE_INSTALL += "curl" IMAGE_INSTALL += "binutils" IMAGE_INSTALL += "bash" IMAGE_INSTALL += "cellularctl" IMAGE_INSTALL += "ppp" IMAGE_INSTALL += "ppp-configuration" IMAGE_INSTALL += "gpsd" IMAGE_INSTALL += "gdbserver" IMAGE_INSTALL += "openssh-sftp-server" IMAGE_INSTALL += "usbutils" IMAGE_INSTALL += "bsp-version"
require recipes-core/images/core-image-minimal.bb PR = "r5" IMAGE_INSTALL += "packagegroup-core-ssh-openssh" IMAGE_INSTALL += "iproute2" IMAGE_INSTALL += "binutils" IMAGE_INSTALL += "nano" IMAGE_INSTALL += "mtd-utils" IMAGE_INSTALL += "mtd-utils-ubifs" IMAGE_INSTALL += "can-utils" IMAGE_INSTALL += "vbusenable" IMAGE_INSTALL += "flashubi" IMAGE_INSTALL += "wireless-tools" IMAGE_INSTALL += "wpa-supplicant" IMAGE_INSTALL += "wpa-supplicant-cli" IMAGE_INSTALL += "wpa-supplicant-passphrase" IMAGE_INSTALL += "iw" IMAGE_INSTALL += "curl" IMAGE_INSTALL += "binutils" IMAGE_INSTALL += "bash" IMAGE_INSTALL += "cellularctl" IMAGE_INSTALL += "ppp" IMAGE_INSTALL += "ppp-configuration" IMAGE_INSTALL += "gpsd" IMAGE_INSTALL += "gdbserver" IMAGE_INSTALL += "openssh-sftp-server" IMAGE_INSTALL += "usbutils" IMAGE_INSTALL += "bsp-version"
Change libxmu from RDEPENDS -> DEPENDS and unblacklist xstdcmap
require recipes-graphics/xorg-app/xorg-app-common.inc SUMMARY = "X.Org X11 X client utilities" HOMEPAGE = "http://cgit.freedesktop.org/xorg/app/xstdcmap" DESCRIPTION = "The xstdcmap utility can be used to selectively define \ standard colormap properties." SECTION = "x11/app" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://COPYING;md5=2b08d9e2e718ac83e6fe2b974d4b5fd8" RDEPENDS_${PN} = "libxmu" BBCLASSEXTEND = "native" SRC_URI[md5sum] = "eb5473acaef15a5db9b50df29c6a7f90" SRC_URI[sha256sum] = "f648e2b0cf16aa29856de998e2c7204be39dc1f8daeda9464d32288e0b580fc1" PNBLACKLIST[xstdcmap] ?= "Fails to build with RSS http://errors.yoctoproject.org/Errors/Details/130660/ - the recipe will be removed on 2017-09-01 unless the issue is fixed"
require recipes-graphics/xorg-app/xorg-app-common.inc SUMMARY = "X.Org X11 X client utilities" HOMEPAGE = "http://cgit.freedesktop.org/xorg/app/xstdcmap" DESCRIPTION = "The xstdcmap utility can be used to selectively define \ standard colormap properties." SECTION = "x11/app" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://COPYING;md5=2b08d9e2e718ac83e6fe2b974d4b5fd8" DEPENDS += "libxmu" BBCLASSEXTEND = "native" SRC_URI[md5sum] = "eb5473acaef15a5db9b50df29c6a7f90" SRC_URI[sha256sum] = "f648e2b0cf16aa29856de998e2c7204be39dc1f8daeda9464d32288e0b580fc1"
Remove spidev patch, keep it vanilla
require recipes-kernel/linux/linux-yocto.inc KERNEL_IMAGETYPE = "zImage" COMPATIBLE_MACHINE = "overo" RDEPENDS_kernel-base += "kernel-devicetree" KERNEL_DEVICETREE = " \ omap3-overo-storm-tobi.dtb \ omap3-overo-storm-tobiduo.dtb \ omap3-overo-tobi.dts \ omap3-overo-tobiduo.dts \ " LINUX_VERSION = "4.4" LINUX_VERSION_EXTENSION = "-jumpnow" FILESEXTRAPATHS_prepend := "${THISDIR}/linux-stable-4.4:" S = "${WORKDIR}/git" PR = "r0" # v4.4.8 SRCREV = "8c9aef03d3b540b6885e7534a885ea25f62dd9ed" SRC_URI = " \ git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git;branch=linux-4.4.y \ file://defconfig \ file://0001-spidev-Add-a-generic-compatible-id.patch \ "
require recipes-kernel/linux/linux-yocto.inc KERNEL_IMAGETYPE = "zImage" COMPATIBLE_MACHINE = "overo" RDEPENDS_kernel-base += "kernel-devicetree" KERNEL_DEVICETREE = " \ omap3-overo-storm-tobi.dtb \ omap3-overo-tobi.dtb \ " LINUX_VERSION = "4.4" LINUX_VERSION_EXTENSION = "-jumpnow" FILESEXTRAPATHS_prepend := "${THISDIR}/linux-stable-4.4:" S = "${WORKDIR}/git" PR = "r0" # v4.4.8 SRCREV = "8c9aef03d3b540b6885e7534a885ea25f62dd9ed" SRC_URI = " \ git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git;branch=linux-4.4.y \ file://defconfig \ "
Update SRCREV for connector-ID fix
DESCRIPTION = "Demo application to showcase 3D graphics on SGX using kms and gbm" HOMEPAGE = "http://git.ti.com" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://kmscube.c;beginline=1;endline=23;md5=e760965096e52da8f3969dd53b6bf158" DEPENDS = "libdrm virtual/libgbm virtual/egl virtual/libgles2" COMPATIBLE_MACHINE = "ti33x|ti43x|omap-a15|k3" PACKAGE_ARCH = "${MACHINE_ARCH}" inherit autotools pkgconfig PR = "r13" SRCREV = "456cabc661caac5c60729751d45efd668faa8e97" SRC_URI = "git://git.ti.com/glsdk/kmscube.git;protocol=git" SRC_URI_append = " \ " S = "${WORKDIR}/git" INSANE_SKIP_kmscube += "dev-deps"
DESCRIPTION = "Demo application to showcase 3D graphics on SGX using kms and gbm" HOMEPAGE = "http://git.ti.com" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://kmscube.c;beginline=1;endline=23;md5=e760965096e52da8f3969dd53b6bf158" DEPENDS = "libdrm virtual/libgbm virtual/egl virtual/libgles2" COMPATIBLE_MACHINE = "ti33x|ti43x|omap-a15|k3" PACKAGE_ARCH = "${MACHINE_ARCH}" inherit autotools pkgconfig PR = "r14" SRCREV = "7bc7ff6c4ead19761003ed4a08d00ce64effe38b" SRC_URI = "git://git.ti.com/glsdk/kmscube.git;protocol=git" SRC_URI_append = " \ " S = "${WORKDIR}/git" INSANE_SKIP_kmscube += "dev-deps"
Fix the feed configuration Make the package buildable again
DESCRIPTION = "Configuration files for online package repositories of Openmoko community repository feeds" PR = "r0.02" do_compile() { mkdir -p ${S}/${sysconfdir}/opkg for feed in Multiverse; do echo "src/gz daily-${feed} ${OPENMOKO_URI}/${feed}" > ${S}/${sysconfdir}/opkg/${feed}-feed.conf done } do_install () { install -d ${D}${sysconfdir}/opkg install -m 0644 ${S}/${sysconfdir}/opkg/* ${D}${sysconfdir}/opkg/ } PACKAGE_ARCH = "${MACHINE_ARCH}" CONFFILES_${PN} += "${sysconfdir}/opkg/community-repository-feed.conf" PKG_TAGS_${PN} = "group::repos" OPENMOKO_URI = "http://downloads.openmoko.org/repository"
DESCRIPTION = "Configuration files for online package repositories of Openmoko community repository feeds" PR = "r0.02" do_compile() { mkdir -p ${S}/${sysconfdir}/opkg for feed in Multiverse; do echo "src/gz daily-${feed} ${OPENMOKO_URI}/${feed}" > ${S}/${sysconfdir}/opkg/${feed}-feed.conf done } do_install () { install -d ${D}${sysconfdir}/opkg install -m 0644 ${S}/${sysconfdir}/opkg/* ${D}${sysconfdir}/opkg/ } PACKAGE_ARCH = "${MACHINE_ARCH}" CONFFILES_${PN} += "${sysconfdir}/opkg/Multiverse-feed.conf" PKG_TAGS_${PN} = "group::repos" OPENMOKO_URI = "http://downloads.openmoko.org/repository"
Remove workarounds for gcc < 6
SUMMARY = "Memory Efficient Serialization Library" HOMEPAGE = "https://github.com/google/flatbuffers" SECTION = "console/tools" LICENSE = "Apache-2.0" PACKAGE_BEFORE_PN = "${PN}-compiler" RDEPENDS_${PN}-compiler = "${PN}" RDEPENDS_${PN}-dev += "${PN}-compiler" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57" SRCREV = "6df40a2471737b27271bdd9b900ab5f3aec746c7" SRC_URI = "git://github.com/google/flatbuffers.git" # Make sure C++11 is used, required for example for GCC 4.9 CXXFLAGS += "-std=c++11 -fPIC" BUILD_CXXFLAGS += "-std=c++11 -fPIC" # BUILD_TYPE=Release is required, otherwise flatc is not installed EXTRA_OECMAKE += "\ -DCMAKE_BUILD_TYPE=Release \ -DFLATBUFFERS_BUILD_TESTS=OFF \ -DFLATBUFFERS_BUILD_SHAREDLIB=ON \ " inherit cmake S = "${WORKDIR}/git" FILES_${PN}-compiler = "${bindir}" BBCLASSEXTEND = "native nativesdk"
SUMMARY = "Memory Efficient Serialization Library" HOMEPAGE = "https://github.com/google/flatbuffers" SECTION = "console/tools" LICENSE = "Apache-2.0" PACKAGE_BEFORE_PN = "${PN}-compiler" RDEPENDS_${PN}-compiler = "${PN}" RDEPENDS_${PN}-dev += "${PN}-compiler" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57" SRCREV = "6df40a2471737b27271bdd9b900ab5f3aec746c7" SRC_URI = "git://github.com/google/flatbuffers.git" CXXFLAGS += "-fPIC" BUILD_CXXFLAGS += "-fPIC" # BUILD_TYPE=Release is required, otherwise flatc is not installed EXTRA_OECMAKE += "\ -DCMAKE_BUILD_TYPE=Release \ -DFLATBUFFERS_BUILD_TESTS=OFF \ -DFLATBUFFERS_BUILD_SHAREDLIB=ON \ " inherit cmake S = "${WORKDIR}/git" FILES_${PN}-compiler = "${bindir}" BBCLASSEXTEND = "native nativesdk"
Add util-scripts into the image
DESCRIPTION = "Task to install graphics binaries" LICENSE = "MIT" PR = "r18" inherit packagegroup # wayland-ivi-extension GRAPHICS_WAYLAND = "\ weston \ weston-init \ weston-examples \ " GRAPHICS_WAYLAND_append_omap-a15 = "\ chromium-wayland \ " GRAPHICS_RDEPENDS = "\ libgbm \ ti-sgx-ddk-km \ ti-sgx-ddk-um \ glmark2 \ " GRAPHICS_RDEPENDS_append_omap-a15 = "\ ti-gc320-tests \ ti-gc320-driver \ ti-gc320-libs \ " RDEPENDS_${PN} = "\ ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', "${GRAPHICS_WAYLAND}", '', d)} \ ${GRAPHICS_RDEPENDS} \ "
DESCRIPTION = "Task to install graphics binaries" LICENSE = "MIT" PR = "r19" inherit packagegroup # wayland-ivi-extension GRAPHICS_WAYLAND = "\ weston \ weston-init \ weston-examples \ " GRAPHICS_WAYLAND_append_omap-a15 = "\ chromium-wayland \ " GRAPHICS_RDEPENDS = "\ libgbm \ ti-sgx-ddk-km \ ti-sgx-ddk-um \ glmark2 \ " GRAPHICS_DISPLAY_UTILS = "\ " GRAPHICS_DISPLAY_UTILS_append_omap-a15 = "\ glsdk-util-scripts \ " GRAPHICS_RDEPENDS_append_omap-a15 = "\ ti-gc320-tests \ ti-gc320-driver \ ti-gc320-libs \ " RDEPENDS_${PN} = "\ ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', "${GRAPHICS_WAYLAND}", '', d)} \ ${GRAPHICS_RDEPENDS} \ ${GRAPHICS_DISPLAY_UTILS} \ "
Use git SHA instead of git archive
SUMMARY = "Stressful Application Test" DESCRIPTION = "Stressful Application Test (or stressapptest, its unix name) \ is a memory interface test. It tries to maximize randomized traffic to memory \ from processor and I/O, with the intent of creating a realistic high load \ situation in order to test the existing hardware devices in a computer. \ " HOMEPAGE = "https://github.com/stressapptest/stressapptest" SECTION = "benchmark" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://COPYING;md5=55ea9d559f985fb4834317d8ed6b9e58" SRC_URI = "https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz \ file://libcplusplus-compat.patch \ file://read_sysfs_for_cachesize.patch \ " SRC_URI[md5sum] = "d3a526c174c049dd7a1068dc74a62be2" SRC_URI[sha256sum] = "2ba470587ad4f6ae92057d427c3a2a2756e5f10bd25cd91e62eaef55a40b30a1" S = "${WORKDIR}/${PN}-${PV}" inherit autotools
SUMMARY = "Stressful Application Test" DESCRIPTION = "Stressful Application Test (or stressapptest, its unix name) \ is a memory interface test. It tries to maximize randomized traffic to memory \ from processor and I/O, with the intent of creating a realistic high load \ situation in order to test the existing hardware devices in a computer. \ " HOMEPAGE = "https://github.com/stressapptest/stressapptest" SECTION = "benchmark" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://COPYING;md5=55ea9d559f985fb4834317d8ed6b9e58" SRCREV = "fb72e5e5f0879231f38e0e826a98a6ca2d1ca38e" SRC_URI = "git://github.com/stressapptest/stressapptest \ file://libcplusplus-compat.patch \ file://read_sysfs_for_cachesize.patch \ " S = "${WORKDIR}/git" inherit autotools
Add workaround to fix build with clang
SUMMARY = "pandas library for high-performance data analysis tools" DESCRIPTION = "pandas is an open source, BSD-licensed library providing \ high-performance, easy-to-use data structures and data analysis tools for \ the Python programming language." HOMEPAGE = "http://pandas.pydata.org/" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=c2a8f987b2ce77c368c6b3e1b5b10774" SRC_URI[md5sum] = "512da48424b85bf198002bdbdf38af5a" SRC_URI[sha256sum] = "b39508562ad0bb3f384b0db24da7d68a2608b9ddc85b1d931ccaaa92d5e45273" inherit pypi setuptools3 DEPENDS += " \ ${PYTHON_PN}-numpy-native ${PYTHON_PN}-cython-native \ " RDEPENDS_${PN} += " \ ${PYTHON_PN}-json \ ${PYTHON_PN}-numpy \ ${PYTHON_PN}-dateutil \ ${PYTHON_PN}-pytz \ "
SUMMARY = "pandas library for high-performance data analysis tools" DESCRIPTION = "pandas is an open source, BSD-licensed library providing \ high-performance, easy-to-use data structures and data analysis tools for \ the Python programming language." HOMEPAGE = "http://pandas.pydata.org/" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=c2a8f987b2ce77c368c6b3e1b5b10774" SRC_URI[md5sum] = "512da48424b85bf198002bdbdf38af5a" SRC_URI[sha256sum] = "b39508562ad0bb3f384b0db24da7d68a2608b9ddc85b1d931ccaaa92d5e45273" inherit pypi setuptools3 DEPENDS += " \ ${PYTHON_PN}-numpy-native ${PYTHON_PN}-cython-native \ " CFLAGS_append_toolchain-clang = " -Wno-error=deprecated-declarations" RDEPENDS_${PN} += " \ ${PYTHON_PN}-json \ ${PYTHON_PN}-numpy \ ${PYTHON_PN}-dateutil \ ${PYTHON_PN}-pytz \ "
Update srcrev to pick dma api fixes
DESCRIPTION = "Kernel drivers for the Vivante GC320 chipset found in TI SoCs" HOMEPAGE = "https://git.ti.com/graphics/ti-gc320-driver" LICENSE = "MIT | GPLv2" LIC_FILES_CHKSUM = "file://../LICENSE;md5=78d9818a51b9a8e9bb89dea418bac297" inherit module MACHINE_KERNEL_PR_append = "g" PR = "${MACHINE_KERNEL_PR}" # Need to branch out with ${PV} var BRANCH = "ti-${PV}-k5.4" SRCREV = "bd1c9751af7c693bdf1a0e6b8b96226305d45a8c" SRC_URI = "git://git.ti.com/graphics/ti-gc320-driver.git;protocol=git;branch=${BRANCH}" S = "${WORKDIR}/git/src" EXTRA_OEMAKE += "-f Kbuild AQROOT=${S} KERNEL_DIR=${STAGING_KERNEL_DIR} TOOLCHAIN_PATH=${TOOLCHAIN_PATH} CROSS_COMPILE=${TARGET_PREFIX} ARCH_TYPE=${TARGET_ARCH}" do_install() { install -d ${D}/${base_libdir}/modules/${KERNEL_VERSION}/extra install -m 644 ${S}/galcore.ko ${D}/${base_libdir}/modules/${KERNEL_VERSION}/extra } COMPATIBLE_HOST ?= "null" COMPATIBLE_HOST_ti-soc = "(.*)"
DESCRIPTION = "Kernel drivers for the Vivante GC320 chipset found in TI SoCs" HOMEPAGE = "https://git.ti.com/graphics/ti-gc320-driver" LICENSE = "MIT | GPLv2" LIC_FILES_CHKSUM = "file://../LICENSE;md5=78d9818a51b9a8e9bb89dea418bac297" inherit module MACHINE_KERNEL_PR_append = "h" PR = "${MACHINE_KERNEL_PR}" # Need to branch out with ${PV} var BRANCH = "ti-${PV}-k5.4" SRCREV = "2a4fbe8353fa56011a613aeeaf69e274cd07a825" SRC_URI = "git://git.ti.com/graphics/ti-gc320-driver.git;protocol=git;branch=${BRANCH}" S = "${WORKDIR}/git/src" EXTRA_OEMAKE += "-f Kbuild AQROOT=${S} KERNEL_DIR=${STAGING_KERNEL_DIR} TOOLCHAIN_PATH=${TOOLCHAIN_PATH} CROSS_COMPILE=${TARGET_PREFIX} ARCH_TYPE=${TARGET_ARCH}" do_install() { install -d ${D}/${base_libdir}/modules/${KERNEL_VERSION}/extra install -m 644 ${S}/galcore.ko ${D}/${base_libdir}/modules/${KERNEL_VERSION}/extra } COMPATIBLE_HOST ?= "null" COMPATIBLE_HOST_ti-soc = "(.*)"
Make lager work for the api
DESCRIPTION = "logging framework for Erlang" SECTION = "devel" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=ff253ad767462c46be284da12dda33e8" SRCREV = "e58a33d095962ff5774e9c9011afd3d3200003e1" PR = "r0" SRC_URI = "git://github.com/basho/lager.git;protocol=git \ file://add-tetrapak.patch;apply=yes" DEPENDS_append = " erlang-goldrush " RDEPENDS_${PN}_append = " erlang-goldrush " S = "${WORKDIR}/git" inherit tetrapak python () { erlang_def_package("lager", "lager-*", "ebin", "include src test LICENSE README.md", d) }
DESCRIPTION = "logging framework for Erlang" SECTION = "devel" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=ff253ad767462c46be284da12dda33e8" SRCREV = "8d9ad6fbae6d1a7648164b9c5c9b181b17d017d5" PR = "r1" SRC_URI = "git://github.com/travelping/lager.git;protocol=git \ file://add-tetrapak.patch;apply=yes" DEPENDS_append = " erlang-goldrush " RDEPENDS_${PN}_append = " erlang-goldrush " S = "${WORKDIR}/git" inherit tetrapak python () { erlang_def_package("lager", "lager-*", "ebin", "include src test LICENSE README.md", d) }
Update LICENSE field version to GPLv2 and LPGLv2
require schroedinger.inc PR = "${INC_PR}.0" inherit autotools SRC_URI[schroedingertargz.md5sum] = "d67ec48b7c506db8c8b49156bf409e60" SRC_URI[schroedingertargz.sha256sum] = "345abcaa72ff0f2e9c1075e22f7141475ee4e6eea23a7f568b69ffc13cc1c723" PACKAGES =+ "gst-plugin-schroedinger-dbg gst-plugin-schroedinger-dev gst-plugin-schroedinger" FILES_gst-plugin-schroedinger = "${libdir}/gstreamer-0.10/*.so" FILES_gst-plugin-schroedinger-dbg = "${libdir}/gstreamer-0.10/.debug" FILES_gst-plugin-schroedinger-dev = "${libdir}/gstreamer-0.10/*.*a"
require schroedinger.inc LICENSE = "MPL-1.1 | LGPLv2 | GPLv2 | MIT" PR = "${INC_PR}.1" inherit autotools SRC_URI[schroedingertargz.md5sum] = "d67ec48b7c506db8c8b49156bf409e60" SRC_URI[schroedingertargz.sha256sum] = "345abcaa72ff0f2e9c1075e22f7141475ee4e6eea23a7f568b69ffc13cc1c723" PACKAGES =+ "gst-plugin-schroedinger-dbg gst-plugin-schroedinger-dev gst-plugin-schroedinger" FILES_gst-plugin-schroedinger = "${libdir}/gstreamer-0.10/*.so" FILES_gst-plugin-schroedinger-dbg = "${libdir}/gstreamer-0.10/.debug" FILES_gst-plugin-schroedinger-dev = "${libdir}/gstreamer-0.10/*.*a"
Add kernel modules to images
SUMMARY = "A very basic Wayland image with a terminal" IMAGE_FEATURES += "splash package-management ssh-server-dropbear hwcodecs" LICENSE = "MIT" inherit core-image distro_features_check REQUIRED_DISTRO_FEATURES = "wayland pam" CORE_IMAGE_BASE_INSTALL += "weston weston-init weston-examples clutter-1.0-examples" DESCRIPTION = "A weston image with Tizen common." DEPENDS += " tar-replacement-native " CORE_IMAGE_BASE_INSTALL += "connman" CORE_IMAGE_BASE_INSTALL += "weston-common" CORE_IMAGE_BASE_INSTALL += "mesa-megadriver" CORE_IMAGE_BASE_INSTALL += "meta-common" CORE_IMAGE_BASE_INSTALL += "pam" CORE_IMAGE_BASE_INSTALL += "weston-common-tz-launcher" CORE_IMAGE_BASE_INSTALL += "weston-common-config" CORE_IMAGE_BASE_INSTALL += "user-session-units" CORE_IMAGE_BASE_INSTALL += "default-ac-domains" CORE_IMAGE_BASE_INSTALL += "desktop-skin" CORE_IMAGE_BASE_INSTALL += "rpm-security-plugin" CORE_IMAGE_EXTRA_INSTALL += "config-image" export SYSROOT = "${IMAGE_ROOTFS}"
SUMMARY = "A very basic Wayland image with a terminal" IMAGE_FEATURES += "splash package-management ssh-server-dropbear hwcodecs" LICENSE = "MIT" inherit core-image distro_features_check REQUIRED_DISTRO_FEATURES = "wayland pam" CORE_IMAGE_BASE_INSTALL += "weston weston-init weston-examples clutter-1.0-examples" DESCRIPTION = "A weston image with Tizen common." DEPENDS += " tar-replacement-native " CORE_IMAGE_BASE_INSTALL += "connman" CORE_IMAGE_BASE_INSTALL += "weston-common" CORE_IMAGE_BASE_INSTALL += "mesa-megadriver" CORE_IMAGE_BASE_INSTALL += "meta-common" CORE_IMAGE_BASE_INSTALL += "pam" CORE_IMAGE_BASE_INSTALL += "weston-common-tz-launcher" CORE_IMAGE_BASE_INSTALL += "weston-common-config" CORE_IMAGE_BASE_INSTALL += "user-session-units" CORE_IMAGE_BASE_INSTALL += "default-ac-domains" CORE_IMAGE_BASE_INSTALL += "desktop-skin" CORE_IMAGE_BASE_INSTALL += "rpm-security-plugin" CORE_IMAGE_EXTRA_INSTALL += "config-image" CORE_IMAGE_BASE_INSTALL += "kernel-modules" export SYSROOT = "${IMAGE_ROOTFS}"
Update SRCREV with latest fix
SUMMARY = "Test applications for OMAP DRM interface" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://viddec3test.c;beginline=1;endline=16;md5=c391f44e40a29096285e3121923041df" DEPENDS = "ffmpeg libdce libdrm libgbm ti-sgx-ddk-um wayland" inherit autotools pkgconfig PR = "r27" SRCREV = "b6c02d24be6f8dae939168c154cf2345b33e459d" EXTRA_OEMAKE = "CC="${CC}"" TARGET_CC_ARCH += "${LDFLAGS}" SRC_URI = "git://git.ti.com/glsdk/omapdrmtest.git;protocol=git \ file://0001-Makefile.am-lblah-flags-belong-to-LDADD-not-LDFLAGS.patch \ " S = "${WORKDIR}/git"
SUMMARY = "Test applications for OMAP DRM interface" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://viddec3test.c;beginline=1;endline=16;md5=c391f44e40a29096285e3121923041df" DEPENDS = "ffmpeg libdce libdrm libgbm ti-sgx-ddk-um wayland" inherit autotools pkgconfig PR = "r28" SRCREV = "20338b9f575ffe9c18c12bbed41c16069d27ccf4" EXTRA_OEMAKE = "CC="${CC}"" TARGET_CC_ARCH += "${LDFLAGS}" SRC_URI = "git://git.ti.com/glsdk/omapdrmtest.git;protocol=git \ file://0001-Makefile.am-lblah-flags-belong-to-LDADD-not-LDFLAGS.patch \ " S = "${WORKDIR}/git"
Use zImage not uImage as the bootloader is not uBoot ;).
require linux.inc DESCRIPTION = "Linux kernel for the OpenPandora handheld" KERNEL_IMAGETYPE = "uImage" COMPATIBLE_MACHINE = "raspberrypi" # This is on the rpi-patches branch SRCREV = "2fb814968753d0d4a5fdf056a3a8c9eee3c41aa6" SRC_URI = " \ git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-patches \ " PV = "3.1.9-rpi+${PR}+git${SRCREV}" S = "${WORKDIR}/git" # NOTE: For now we pull in the default config from the RPi kernel GIT tree. KERNEL_DEFCONFIG = "bcmrpi_defconfig" do_configure_prepend() { install -m 0644 ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig || die "No default configuration for ${MACHINE} / ${KERNEL_DEFCONFIG} available." }
require linux.inc DESCRIPTION = "Linux kernel for the RaspberryPi board" KERNEL_IMAGETYPE = "zImage" COMPATIBLE_MACHINE = "raspberrypi" # This is on the rpi-patches branch SRCREV = "2fb814968753d0d4a5fdf056a3a8c9eee3c41aa6" SRC_URI = " \ git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-patches \ " PV = "3.1.9-rpi+${PR}+git${SRCREV}" S = "${WORKDIR}/git" # NOTE: For now we pull in the default config from the RPi kernel GIT tree. KERNEL_DEFCONFIG = "bcmrpi_defconfig" do_configure_prepend() { install -m 0644 ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig || die "No default configuration for ${MACHINE} / ${KERNEL_DEFCONFIG} available." }
Update commit id and branch for 2020.2
SUMMARY = "Xilinx DisplayPort Linux Kernel module" DESCRIPTION = "Out-of-tree DisplayPort(DP) kernel modules provider for aarch64 devices" SECTION = "kernel/modules" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://LICENSE.md;md5=eb723b61539feef013de476e68b5c50a" XLNX_DP_VERSION = "5.4.0" PV = "${XLNX_DP_VERSION}" S = "${WORKDIR}/git" BRANCH ?= "master" REPO ?= "git://github.com/xilinx/dp-modules.git;protocol=https" SRCREV ?= "a3a7dfe17cf610fd4186b11638e1ce6b78dc958a" BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}" SRC_URI = "${REPO};${BRANCHARG}" inherit module EXTRA_OEMAKE += "O=${STAGING_KERNEL_BUILDDIR}" COMPATIBLE_MACHINE = "^$" COMPATIBLE_MACHINE_zynqmp = "zynqmp" COMPATIBLE_MACHINE_versal = "versal" PACKAGE_ARCH = "${SOC_FAMILY_ARCH}"
SUMMARY = "Xilinx DisplayPort Linux Kernel module" DESCRIPTION = "Out-of-tree DisplayPort(DP) kernel modules provider for aarch64 devices" SECTION = "kernel/modules" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://LICENSE.md;md5=eb723b61539feef013de476e68b5c50a" XLNX_DP_VERSION = "5.4.0" PV = "${XLNX_DP_VERSION}" S = "${WORKDIR}/git" BRANCH ?= "rel-v2020.2" REPO ?= "git://github.com/xilinx/dp-modules.git;protocol=https" SRCREV ?= "f3b3bf11ee30a2bea2b268b935640e2ad525e88f" BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}" SRC_URI = "${REPO};${BRANCHARG}" inherit module EXTRA_OEMAKE += "O=${STAGING_KERNEL_BUILDDIR}" COMPATIBLE_MACHINE = "^$" COMPATIBLE_MACHINE_zynqmp = "zynqmp" COMPATIBLE_MACHINE_versal = "versal" PACKAGE_ARCH = "${SOC_FAMILY_ARCH}"
Update branch and SRCREV for update release
UBOOT_VERSION = "v2021.01" UBRANCH ?= "xlnx_rebase_v2022.01" SRCREV = "c50d6c48f4e1368cd38699278e35563cb4b0e444" include u-boot-xlnx.inc include u-boot-spl-zynq-init.inc LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://README;beginline=1;endline=4;md5=744e7e3bb0c94b4b9f6b3db3bf893897" # u-boot-xlnx has support for these HAS_PLATFORM_INIT ?= " \ xilinx_zynqmp_virt_config \ xilinx_zynq_virt_defconfig \ xilinx_versal_vc_p_a2197_revA_x_prc_01_revA \ "
UBOOT_VERSION = "v2021.01" UBRANCH ?= "xlnx_rebase_v2022.01_2022.1_update" SRCREV = "a807cf8f6ce03ef1441c246a90aefbc8b6ea4c43" include u-boot-xlnx.inc include u-boot-spl-zynq-init.inc LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://README;beginline=1;endline=4;md5=744e7e3bb0c94b4b9f6b3db3bf893897" # u-boot-xlnx has support for these HAS_PLATFORM_INIT ?= " \ xilinx_zynqmp_virt_config \ xilinx_zynq_virt_defconfig \ xilinx_versal_vc_p_a2197_revA_x_prc_01_revA \ "
Fix build with glibc 2.28
require recipes-extended/gzip/gzip.inc inherit debian-package require recipes-debian/sources/gzip.inc LICENSE = "GPLv3+" LIC_FILES_CHKSUM = " \ file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ file://gzip.h;beginline=8;endline=20;md5=6e47caaa630e0c8bf9f1bc8d94a8ed0e \ " PROVIDES_append_class-native = " gzip-replacement-native" BBCLASSEXTEND = "native"
require recipes-extended/gzip/gzip.inc inherit debian-package require recipes-debian/sources/gzip.inc LICENSE = "GPLv3+" LIC_FILES_CHKSUM = " \ file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ file://gzip.h;beginline=8;endline=20;md5=6e47caaa630e0c8bf9f1bc8d94a8ed0e \ " FILESPATH_append = ":${COREBASE}/meta/recipes-extended/gzip/gzip-1.9" SRC_URI += "file://gnulib.patch" PROVIDES_append_class-native = " gzip-replacement-native" BBCLASSEXTEND = "native"
Switch to using github src_uri
SUMMARY = "A behavior-driven development framework, Python style" HOMEPAGE = "https://github.com/behave/behave" LICENSE = "BSD-2-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=d950439e8ea6ed233e4288f5e1a49c06" SRC_URI[md5sum] = "3f05c859a1c45f5ed33e925817ad887d" SRC_URI[sha256sum] = "b9662327aa53294c1351b0a9c369093ccec1d21026f050c3bd9b3e5cccf81a86" inherit pypi setuptools3 RDEPENDS:${PN} += " \ ${PYTHON_PN}-parse-type \ ${PYTHON_PN}-setuptools \ ${PYTHON_PN}-six \ "
SUMMARY = "A behavior-driven development framework, Python style" HOMEPAGE = "https://github.com/behave/behave" LICENSE = "BSD-2-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=d950439e8ea6ed233e4288f5e1a49c06" PV .= "+git${SRCREV}" SRCREV = "9520119376046aeff73804b5f1ea05d87a63f370" SRC_URI += "git://github.com/behave/behave;branch=master" S = "${WORKDIR}/git" inherit setuptools3 RDEPENDS:${PN} += " \ ${PYTHON_PN}-parse-type \ ${PYTHON_PN}-setuptools \ ${PYTHON_PN}-six \ "
Add ipython and matplotlib to the image
require recipes/images/minimal-image.bb IMAGE_INSTALL += "\ ack \ avahi-autoipd \ avahi-daemon \ binutils \ control-freak \ cpp \ cpp-symlinks \ curl \ gcc \ gcc-symlinks \ git \ htop \ i2c-tools \ iotop \ iperf \ libgcc-dev \ libxml2 \ logrotate \ make \ mtr \ nano \ nginx \ ntpdate \ openssh \ openssh-sftp-server \ perl \ perl-modules \ python \ python-daemon \ python-dev \ python-flask \ python-imaging \ python-jinja2 \ python-misc \ python-modules \ python-numpy \ python-pip \ python-pyserial \ python-pytronics \ python-simplejson \ python-sqlalchemy \ python-werkzeug \ ruby \ sysstat \ usbutils \ usb-gadget-mode \ uwsgi \ vim \ vim-syntax \ vim-vimrc \ " export IMAGE_BASENAME = "rascal-image"
require recipes/images/minimal-image.bb IMAGE_INSTALL += "\ ack \ avahi-autoipd \ avahi-daemon \ binutils \ control-freak \ cpp \ cpp-symlinks \ curl \ gcc \ gcc-symlinks \ git \ htop \ i2c-tools \ iotop \ iperf \ ipython \ libgcc-dev \ libxml2 \ logrotate \ make \ mtr \ nano \ nginx \ ntpdate \ openssh \ openssh-sftp-server \ perl \ perl-modules \ python \ python-daemon \ python-dev \ python-flask \ python-imaging \ python-jinja2 \ python-matplotlib \ python-misc \ python-modules \ python-numpy \ python-pip \ python-pyserial \ python-pytronics \ python-simplejson \ python-sqlalchemy \ python-werkzeug \ ruby \ sysstat \ usbutils \ usb-gadget-mode \ uwsgi \ vim \ vim-syntax \ vim-vimrc \ " export IMAGE_BASENAME = "rascal-image"
Update to latest commit post 0.9.12
DESCRIPTION = "library for easy implementation of a RDP/VNC server" HOMEPAGE = "https://libvnc.github.io" SECTION = "libs" PRIORITY = "optional" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f" PACKAGECONFIG ??= " \ gcrypt \ gnutls \ jpeg \ png \ ${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)} \ sdl \ zlib \ " PACKAGECONFIG[gcrypt] = ",,libgcrypt,libgcrypt" PACKAGECONFIG[gnutls] = ",,gnutls" PACKAGECONFIG[jpeg] = ",-DWITH_JPEG=OFF,jpeg" PACKAGECONFIG[openssl] = ",-DWITH_OPENSSL=OFF,openssl" PACKAGECONFIG[png] = ",-DWITH_PNG=OFF,libpng,libpng" PACKAGECONFIG[systemd] = ",,systemd" PACKAGECONFIG[sdl] = ",,libsdl2" PACKAGECONFIG[zlib] = ",,zlib" inherit cmake SRC_URI = "git://github.com/LibVNC/libvncserver" SRCREV = "f997b5a75fa171d79c5e568b7157fba83c8d8355" S = "${WORKDIR}/git"
DESCRIPTION = "library for easy implementation of a RDP/VNC server" HOMEPAGE = "https://libvnc.github.io" SECTION = "libs" PRIORITY = "optional" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f" PACKAGECONFIG ??= " \ gcrypt \ gnutls \ jpeg \ lzo \ png \ ${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)} \ sdl \ zlib \ " PACKAGECONFIG[gcrypt] = ",,libgcrypt,libgcrypt" PACKAGECONFIG[gnutls] = ",,gnutls" PACKAGECONFIG[jpeg] = ",-DWITH_JPEG=OFF,jpeg" PACKAGECONFIG[lzo] = ",-DWITH_LZO=OFF,lzo" PACKAGECONFIG[openssl] = ",-DWITH_OPENSSL=OFF,openssl" PACKAGECONFIG[png] = ",-DWITH_PNG=OFF,libpng,libpng" PACKAGECONFIG[systemd] = ",,systemd" PACKAGECONFIG[sdl] = ",,libsdl2" PACKAGECONFIG[zlib] = ",,zlib" inherit cmake SRC_URI = "git://github.com/LibVNC/libvncserver" SRCREV = "c0a23857a5c42b45b6d22ccf7218becd1fa69402" S = "${WORKDIR}/git"
Add a new package for wg-quick
require wireguard.inc SRCREV = "3ba6527130c502144e7388b900138bca6260f4e8" SRC_URI = "git://git.zx2c4.com/wireguard-tools;branch=master" inherit bash-completion systemd pkgconfig DEPENDS += "libmnl" do_install () { oe_runmake DESTDIR="${D}" PREFIX="${prefix}" SYSCONFDIR="${sysconfdir}" \ SYSTEMDUNITDIR="${systemd_system_unitdir}" \ WITH_SYSTEMDUNITS=${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'yes', '', d)} \ WITH_BASHCOMPLETION=yes \ WITH_WGQUICK=yes \ install } FILES:${PN} = " \ ${sysconfdir} \ ${systemd_system_unitdir} \ ${bindir} \ " RDEPENDS:${PN} = "bash" RRECOMMENDS:${PN} = "kernel-module-wireguard"
require wireguard.inc SRCREV = "3ba6527130c502144e7388b900138bca6260f4e8" SRC_URI = "git://git.zx2c4.com/wireguard-tools;branch=master" inherit bash-completion systemd pkgconfig DEPENDS += "libmnl" do_install () { oe_runmake DESTDIR="${D}" PREFIX="${prefix}" SYSCONFDIR="${sysconfdir}" \ SYSTEMDUNITDIR="${systemd_system_unitdir}" \ WITH_SYSTEMDUNITS=${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'yes', '', d)} \ WITH_BASHCOMPLETION=yes \ WITH_WGQUICK=yes \ install } PACKAGES += "${PN}-wg-quick" FILES:${PN} = " \ ${bindir}/wg \ ${sysconfdir} \ " FILES:${PN}-wg-quick = " \ ${bindir}/wg-quick \ ${systemd_system_unitdir} \ " RDEPENDS:${PN}-wg-quick = "${PN} bash" RRECOMMENDS:${PN} = " \ kernel-module-wireguard \ ${PN}-wg-quick \ "