summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/nonworking
Commit message (Collapse)AuthorAgeFilesLines
* Revert "freerdp: move to nonworking"Martin Jansa2015-10-132-67/+0
| | | | | | | | * use PNBLACKLIST instead This reverts commit 353b2ceff20c8fcf4d58e048cab8b88f1fdccf9e. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* Revert "gnome-terminal, system-tools-backends, slim, benchfft, syslog-ng: ↵Martin Jansa2015-10-131-19/+0
| | | | | | | | | | move to nonworking directories" * use PNBLACKLIST instead This reverts commit 92ea562bafda6b201fae91c2bc13a404da4d581c. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* fftw: add virtual/fftw to PROVIDES and EXCLUDE_FROM_WORLDMartin Jansa2014-10-061-1/+1
| | | | | | | | | | | | | | | * now when sysroot conflicts are fatal we really don't want to build multiple fftw providers in the same sysroot ERROR: The recipe fftwl is trying to install files into a shared area when those files already exist. Those files and their manifest location are: /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/include/fftw3.f Matched in manifest-qemuarm-fftw.populate_sysroot manifest-qemuarm-fftwf.populate_sysroot Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* syslog-ng: move back from nonworkingJackie Huang2014-07-244-308/+0
| | | | | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* meta-oe: use BPN in SRC_URIRobert Yang2014-07-151-1/+1
| | | | | | | | | | | | Fixed SRC_URI: * ${PN} -> ${BPN}, use ${BP} if it was ${PN}-${PV} * ${P} -> ${BP} Otherwise we would meet do_fetch errors when we do the multilib, native or nativesdk build. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* freerdp: move to nonworkingMartin Jansa2014-04-202-0/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * until this is resolved: freerdp-1.0.2+gitrAUTOINC+f311acaffb: freerdp: Files/directories were installed but not shipped /usr/usr /usr/usr/lib /usr/usr/lib/freerdp /usr/usr/lib/freerdp/printer.so /usr/usr/lib/freerdp/rdpsnd.so /usr/usr/lib/freerdp/rail.so /usr/usr/lib/freerdp/rdpdr.so /usr/usr/lib/freerdp/audin_alsa.so /usr/usr/lib/freerdp/rdpsnd_pulse.so /usr/usr/lib/freerdp/rdpdbg.so /usr/usr/lib/freerdp/audin.so /usr/usr/lib/freerdp/scard.so /usr/usr/lib/freerdp/audin_pulse.so /usr/usr/lib/freerdp/tsmf_alsa.so /usr/usr/lib/freerdp/tsmf.so /usr/usr/lib/freerdp/cliprdr.so /usr/usr/lib/freerdp/parallel.so /usr/usr/lib/freerdp/rdpsnd_alsa.so /usr/usr/lib/freerdp/drdynvc.so /usr/usr/lib/freerdp/tsmf_pulse.so /usr/usr/lib/freerdp/serial.so /usr/usr/lib/freerdp/disk.so /usr/usr/lib/freerdp/.debug /usr/usr/lib/freerdp/.debug/printer.so /usr/usr/lib/freerdp/.debug/rail.so /usr/usr/lib/freerdp/.debug/rdpsnd.so /usr/usr/lib/freerdp/.debug/rdpdr.so /usr/usr/lib/freerdp/.debug/audin_alsa.so /usr/usr/lib/freerdp/.debug/rdpsnd_pulse.so /usr/usr/lib/freerdp/.debug/rdpdbg.so /usr/usr/lib/freerdp/.debug/audin.so /usr/usr/lib/freerdp/.debug/scard.so /usr/usr/lib/freerdp/.debug/audin_pulse.so /usr/usr/lib/freerdp/.debug/tsmf_alsa.so /usr/usr/lib/freerdp/.debug/tsmf.so /usr/usr/lib/freerdp/.debug/cliprdr.so /usr/usr/lib/freerdp/.debug/rdpsnd_alsa.so /usr/usr/lib/freerdp/.debug/parallel.so /usr/usr/lib/freerdp/.debug/drdynvc.so /usr/usr/lib/freerdp/.debug/tsmf_pulse.so /usr/usr/lib/freerdp/.debug/serial.so /usr/usr/lib/freerdp/.debug/disk.so * I've reported it mutiple times and nobody seems to care enough to fix that, so maybe it's not used by anybody Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issuesMatthieu CRAPET2014-02-231-1/+1
| | | | | | | | | | | | | Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* recipes: Unify indentationMartin Jansa2013-04-153-50/+50
| | | | | | | | | | | | | | | | | | | | | | | | | * This change is only aesthetic (unlike indentation in Python tasks). * Some recipes were using tabs. * Some were using 8 spaces. * Some were using mix or different number of spaces. * Make them consistently use 4 spaces everywhere. * Yocto styleguide advises to use tabs (but the only reason to keep tabs is the need to update a lot of recipes). Lately this advice was also merged into the styleguide on the OE wiki. * Using 4 spaces in both types of tasks is better because it's less error prone when someone is not sure if e.g. do_generate_toolchain_file() is Python or shell task and also allows to highlight every tab used in .bb, .inc, .bbappend, .bbclass as potentially bad (shouldn't be used for indenting of multiline variable assignments and cannot be used for Python tasks). * Don't indent closing quote on multiline variables we're quite inconsistent wheater it's first character on line under opening quote or under first non-whitespace character in previous line. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <koen@dominion.thruhere.net>
* syslog-ng: move systemd support from meta-systemd back to meta-oeMartin Jansa2013-04-151-2/+10
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gnome-terminal, system-tools-backends, slim, benchfft, syslog-ng: move to ↵Martin Jansa2013-02-015-0/+319
nonworking directories * this set does not build with distroless qemuarm as reported in 'State of bitbake world' thread, nobody volunteered to fix them Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>