aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-04-06linux-yocto-tiny-kexecboot: remove ${PR} remnantAndrea Adami
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
2014-04-06cherokee: only install configured.py onceRobert Yang
Both the two rules install-adminpyDATA and install-generatedDATA will install the configured.py to the same location, they can run parallel, and they use "install -m", which would might build failures: /usr/bin/install: setting permissions for `/path/to/configured.py': No such file or directory This is because the first install is setting the permission while the second install is removing the file an re-install. Only install the configured.py once will fix the problem, I think that there is no side effect since it installed the same file to the same location twice in the past. Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
2014-04-06modphp: add phpize to scan for absolute pathsJoe Slater
sstate processing for items in sysroot scans certain file name patterns for absolute paths to be adjusted when items are installed into sysroot from sstate. phpize is not one of these patterns (surprise!) so we add it to the list. Signed-off-by: Joe Slater <jslater@windriver.com>
2014-04-02inetutils: add -dbg packages for tftpd, telnetd and rshdJackie Huang
The packages tftpd, telnetd and rshd conflict with the ones provided by netkit, so add the corresponding -dbg packages for them to avoid the following confliction between the dbg package of inetutils and netkit: error: file /usr/sbin/.debug/in.rexecd conflicts between attempted installs of inetutils-dbg-1.9.1-r1.0.armv7a_vfp_neon and netkit-rsh-dbg-0.17-r0.0.armv7a_vfp_neon error: file /usr/sbin/.debug/in.telnetd conflicts between attempted installs of inetutils-dbg-1.9.1-r1.0.armv7a_vfp_neon and netkit-telnet-dbg-0.17-r0.0.armv7a_vfp_neon Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Joe MacDonald <joe@deserted.net>
2014-04-02stunnel: fix SRC_URIJavier Viguera
Trying to build stunnel fails with: ERROR 404: Not Found. Seems that after the new release (5.x) they have moved the old tarball under a 'archive/4.x' subdirectory. Signed-off-by: Javier Viguera <javier.viguera@digi.com> Signed-off-by: Joe MacDonald <joe@deserted.net>
2014-03-29exo: Add intltool-native as native dependencyAdam YH Lee
exo-native fails to build due to more strict dependency checking introduced in autotools.bbclass. intltool-native should be explicitly defined as a dependency. Signed-off-by: Adam YH Lee <adam.yh.lee@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-29python-autobahn: upgrade to version 0.8.6Diego Rondini
Changes: * upgraded python-autobahn to latest upstream * updated license checksum because upstream increased copyright year from 2013 to 2014 Signed-off-by: Diego Rondini <diego.ml@zoho.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-29python-twisted: upgrade to version 13.2.0Diego Rondini
Changes: * upgraded python-twisted to latest upstream * dropped PR because of PV increase * updated LICENSE checksum because new contributors have been added to the file * dropped bin package because resulting package was empty: - file _c_urlarg has been removed with this commit: https://twistedmatrix.com/trac/changeset/31167/trunk/twisted/protocols - file cBanana was not packaged even in previous version, upstream removed it ages ago. https://twistedmatrix.com/trac/changeset/19014/trunk/twisted/spread * the newly introduced zsh completion file has been added to the zsh package Signed-off-by: Diego Rondini <diego.ml@zoho.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-29python-zopeinterface: upgrade to version 4.1.1Diego Rondini
Changes: * upgraded python-zopeinterface to latest upstream * dropped PR because of PV increase Signed-off-by: Diego Rondini <diego.ml@zoho.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-29lvm2: replace CPPFunction with rl_completion_func_t to fix build errorZhenhua Luo
lvm2 depends on readline, CPPFunction has been replaced by rl_completion_func_t in recent readline, Error log: | lvm.c: In function 'lvm_shell': | lvm.c:189:38: error: 'CPPFunction' undeclared (first use in this function) | rl_attempted_completion_function = (CPPFunction *) _completion; | ^ Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-29gnome-desktop3: Updated to 3.4.2Prabhu Sundararaj
Signed-off-by: Prabhu Sundararaj <prabhu.sundararaj@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-29efivar: add recipeStanacar, StefanX
efivar is is a tool to manipulate UEFI variables. This is obviously useful only for EFI machines that have the efivarfs interface enabled in the kernel config (CONFIG_EFIVAR_FS), and mounted (mount -t efivarfs efivarfs /sys/firmware/efi/efivars). Sample usage: GUID: 4a67b082-0a4c-41cf-b6c7-440b29bb8c4f Name: "LoaderEntrySelected" Attributes: Boot Service Access Runtime Service Access Value: 00000000 62 00 6f 00 6f 00 74 00 00 00 |b.o.o.t... | Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-27netcf: fix gnulib not found in sysroots while using a shared sstate cacheHongxu Jia
... ./bootstrap: Bootstrapping from checked-out netcf sources... ./bootstrap: consider installing git-merge-changelog from gnulib ./bootstrap: line 641: tmp/sysroots/qemux86/usr/share/gnulib/gnulib-tool: No such file or directory ... The gnulib source was incorrectly populated to ${STAGING_DATADIR}. While the build shared an existed sstate cache, the gnulib's ${SYSROOT_DESTDIR} was empty, the gnulib source code was not found in sysroots. We should use do_install task to install them to ${D}, and the default do_populate_sysroot task will populate them to ${STAGING_DATADIR}. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
2014-03-27traceroute: filter-out patches dirRobert Yang
The $(subdirs) contains all the dirs under the ${B}, and this one: do_unpack[cleandirs] = "${S}/patches" will create a "patches" dir, then there will be compile errors, filter out the patches will fix the problem. Note: poky doesn't have this problem since it separates the ${S} and ${B} Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
2014-03-27traceroute: fix alternate nameJoe Slater
traceroute6 for the name is misleading and will interfere with traceroute6 in iputils making an alternate link to the traceroute6 binary, so we change the name to traceroute. Signed-off-by: Joe Slater <jslater@windriver.com> Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
2014-03-27sethdlc : add recipeChunrong Guo
* sethdlc: get/set Linux HDLC packet radio modem driver port information * sethdlc is a program designed to set and/or report the configuration information associated with a soundcard radio modem port. This information includes the modem type, what I/O port, IRQ and DMA channel a particular modem port is using, and where to output a transmitter keying (PTT) signal. Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
2014-03-27quagga: work with new readlineRobert Yang
The Function and CPPFunction had been removed by in readline 6.3, use the new functions to replace them. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
2014-03-26can-utils: Create git versionLauren Post
Linux CAN network development utilities - newer version than canutils Signed-off-by: Lauren Post <lauren.post@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-26pm-qa: Add power management test utilschase maupin
* The power management test utilities from Linaro can be used to test multiple PM features such as cpufreq, cpuidle, thermal control and suspend operations. * These utilities are not platform specific and can be used by a broader base of users. Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-26terminus-font: add new recipe for version 4.38Matthieu CRAPET
This is a dual recipe, it provides: - console fonts (PSF v1 & v2 formats) - X11 fonts (PCF format) X11 font are generated when DISTRO_FEATURES contains 'x11'. Use PACKAGECONFIG to configure. Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-26fim: add "hf" PACKAGECONFIG optionMatthieu CRAPET
This embedds a console font in fim executable. To use it, don't forget to define FBFONT with the special value: export FBFONT='fim://' Option is enabled by default because kdb-consolefonts package only provides PSF version 2 files (fim only support version 1 and creates an error). Benchmarked fim executable size: +6Kb (x86_64) and +7Kb (armv7). Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-23recipes-graphics/lxdm: autotools and config updatesstephen.arnold42
lxdm_git.bb: Upstream changes required autotools and gettext (intl) updates; the package autogen script doesn't create the makefile in po, but autotools by itself is missing the input file (thus, the configure_prepend). There were also missing depends (from upstream docs and configure checks) and some configure options were added to ensure the desired X/gtk2 config and enable (optional) auto-login. Signed-off-by: Stephen Arnold <stephen.arnold42@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-23recipes-xfce/libxfce4ui: depends and autotools fixesstephen.arnold42
Note: this patch (v3) obseletes previous versions libxfce4ui_4.10.0.bb: Upstream changes required autotools and gettext (intl) fixes, as well as moving the autogen stuff to a separate task. Full depends were also added (2 were converted to PACKAGECONFIG options) along with a vendor config option. Signed-off-by: Stephen Arnold <stephen.arnold42@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-23glmark2: Rework recipe to use the 'waf' classOtavio Salvador
This removes the duplicated code and uses the OE-Core waf class. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-23mpg123: upgrade to 1.19.0Cristian Iorga
- switched to ${BP} variable; - ${S} redundant, removed; - option with-module-suffix=.so: load modules with .so extension; - .la files are kept only for dev packages; - clearer COPYING file, about contribution and licenses; no changes to licenses. Signed-off-by: Cristian Iorga <ubik3000@gmail.com> Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-23ttf-dejavu: fix license warningsMatthieu CRAPET
Fix LICENSE value to drop warning messages: WARNING: ttf-dejavu: No generic license file exists for: Bitstream in any provider WARNING: ttf-dejavu: No generic license file exists for: Vera in any provider Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-23musicpd/mpd: upgrade to 0.18.9Cristian Iorga
* Upgrade fixes a crash with libvorbis 1.3.4; Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-23musicpd/mpd: bump to current upstream stableStephen Arnold
Bump music player daemon to the latest upstream stable release. Same as previous 0.18.4 recipe with trivial updates. Signed-off-by: Stephen Arnold <stephen.arnold42@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-23vlc: bump to v2.1.4Tim Orling
Signed-off-by: Tim Orling <TicoTimo@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-23openldap: add a dependency to make do_compile passChong.Lu@windriver.com
During compiling? we need soelim command provided by groff-native. So add DEPENDS to fix this issue, else we will get following error: /bin/sh: 15: soelim: not found Signed-off-by: Chong Lu <Chong.Lu@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-23libmicrohttpd: Update to 0.9.34Otavio Salvador
This update fixes the following build error: ,----[ Build error ] | ... | .../libmicrospdy.so: undefined reference to `SSL_get_error' | .../libmicrospdy.so: undefined reference to `SSL_write' | .../libmicrospdy.so: undefined reference to `SSL_free' | ... `---- Reported-by: Prabhu Sundararaj <prabhu.sundararaj@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-19networkmanager: make it compatible with systemd-209Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-19polkit: make it compatible with systemd-209Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-18libconnman-qt: update to 1.0.50+git80ac184Andreas Oberritter
Allows to install versions for Qt4/X11 and Qt4/Embedded into the same filesystem by overriding the target name. This version also removes a superflous .pc file from ${libdir}. Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-18vlc: update to 2.1.2Tim Orling
Signed-off-by: Tim Orling <TicoTimo@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-18xbmc: branch name is case sensitiveTim Orling
Signed-off-by: Tim Orling <TicoTimo@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-18luajit: Upgrade to 2.0.1 -> 2.0.2Khem Raj
Drop the backported hotfixes Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-18musicbrainz: Build with B=SMike Looijmans
This recipe doesn't work when B!=S, so force B=$S to fix the failure. Signed-off-by: Mike Looijmans <milo-software@users.sourceforge.net> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-18bash-completion: update to version 2.1Matthieu CRAPET
Notes: - PARALLEL_MAKE is still required - inherit allarch is not present because of runtime dependency with bash (TUNE_PKGARCH) Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-18iperf: Upgrade to version 2.0.5Lauren Post
This version provides better ethernet performance Patch is required for man page portion of build Signed-off-by: Lauren Post <lauren.post@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-17phpmyadmin: update to 4.1.9Paul Eggleton
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2014-03-17modphp: update to 5.5.10Paul Eggleton
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2014-03-15gtkperf: Create 0.40 versionLauren Post
gtkperf is a GTK Performance tool Signed-off-by: Lauren Post <lauren.post@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-15openobex: Remove --enable-dump to disable dumpingLauren Post
This features slows down performance and should only be enabled when debugging openobex. Signed-off-by: Lauren Post <lauren.post@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-15obexftp: Create 0.23 versionLauren Post
obexftp is a tool to transfer files from any OBEX enabled device. Disable prints to improve performance Signed-off-by: Lauren Post <lauren.post@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-15vlan: Create 1.9 versionLauren Post
VLAN provides vconfig utility Signed-off-by: Lauren Post <lauren.post@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-15linuxptp: Create 1.4 versionLauren Post
Precision Time Protocol (PTP) according to IEEE standard 1588 Signed-off-by: Lauren Post <lauren.post@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-15util-linux: Rename .bbappend to match any version from oe-core and remove ↵Martin Jansa
uuidd.socket * oe-core recipe has uuidd.service in ${PN}-uuidd SYSTEMD_PACKAGES = "${PN}-uuidd" SYSTEMD_SERVICE_${PN}-uuidd = "uuidd.service" Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-15dhcp: Rename .bbappend to match any version from oe-coreMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-14ipsec-tools: Don't link against libflPaul Barker
We can remove all references to yywrap by adding "%option noyywrap" statements to each flex source file which doesn't override yywrap. After this, we no longer need to link against libfl and so no longer get errors about undefined references to yylex. Also change the dependency on flex to flex-native as we no longer need libfl compiled for the target - the lexer is now self-contained. Signed-off-by: Paul Barker <paul@paulbarker.me.uk> Signed-off-by: Joe MacDonald <joe@deserted.net>