summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* libbonobo: unblacklist orbit2 is backAndreas Müller2017-02-221-2/+0
| | | | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
* orbit2: unblacklist - libidl-native is backAndreas Müller2017-02-221-2/+0
| | | | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
* libidl: unblacklist - libidl-native is backAndreas Müller2017-02-221-2/+0
| | | | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
* libidl-native: add flex-native to DEPENDSAndreas Müller2017-02-221-3/+1
| | | | | | | | | * could not reproduce the error mentioned - flex is installed on my build machine * For tests Trevor Woerner's 'Revert "flex: upgrade to 2.6.2"' was in my oe-core Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
* pavucontrol: add pulseaudio-server to RDEPENDSAndreas Müller2017-02-221-0/+2
| | | | | | pavucontrol does not work without pulseaudio-server Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
* ninja: update version to 1.7.2Derek Straka2017-02-221-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gitpkgv.bbclass: fix versioning with multiple reposS. Lockwood-Childs2017-02-221-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gitpkgv class is supposed to use SRCREV_FORMAT variable to define how to smoosh together revision info from multiple repos that are used in a single recipe. It is incorrectly repeating the rev hash for the first repo instead of including the rev from each listed repo. Example: SRC_URI = "git://some-server/purple.git;destsuffix=git/purple;name=purple" SRC_URI += "git://other-server/blue.git;destsuffix=git/blue;name=blue" SRCREV_purple = "${AUTOREV}" SRCREV_blue = "${AUTOREV}" SRCREV_FORMAT = "purple_blue" Suppose gitpkgv calculates "67+ea121ea" for purple repo, and "123+feef001" for blue repo. This should result in a package version with them joined together like so: "67+ea121ea_123+feef001" It didn't. Instead the git hash part for the first repo got repeated: "67+ea121ea_123+ea121ea" Fix this by looking in the right place for the git revisions of 2nd (and following) repos when assembling the full version string. Signed-off-by: S. Lockwood-Childs <sjl@vctlabs.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* lvm2: Move libdevmapper to a separate packagePeter Kjellerstedt2017-02-221-1/+8
| | | | | | | | This allows, e.g., cryptsetup to use libdevmapper without having to pull in all of lvm2. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* lvm2: Move bash scripts to a separate packagePeter Kjellerstedt2017-02-221-2/+10
| | | | | | | | | | | | By putting the bash scripts in a separate package (lvm2-scripts), the lvm2 package no longer needs to depend on bash. For backwards compatibility, the lvm2 package recommends the lvm2-scripts package. Also remove the adding of ${libdir}/device-mapper/.debug to FILES_${PN}-dbg as it has not been needed since Krogoth. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* lvm2: Add a PACKAGECONFIG for lvmetadPeter Kjellerstedt2017-02-221-3/+3
| | | | | | | This allows the support for lvmetad to be disabled. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* lvm2: Add a PACKAGECONFIG for dmeventdPeter Kjellerstedt2017-02-221-4/+5
| | | | | | | This allows the support for dmeventd to be disabled. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* lvm2: Add a PACKAGECONFIG for udev supportPeter Kjellerstedt2017-02-221-12/+4
| | | | | | | | | | | | The added dependency on util-linux is necessary to avoid the following QA warning which appears when the dependency on udev is removed: WARNING: lvm2-2.02.166-r0 do_package_qa: QA Issue: lvm2 rdepends on util-linux-libblkid, but it isn't a build dependency, missing util-linux in DEPENDS or PACKAGECONFIG? [build-deps] Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* lvm2: Standardize how PACKAGECONFIG is definedPeter Kjellerstedt2017-02-221-3/+6
| | | | | | | | The change in 4071e6b4b0 broke support for redefining PACKAGECONFIG in a bbappend without having to resort to use PACKAGECONFIG_class-target. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* lvm2: Make sure odirect is always enabledPeter Kjellerstedt2017-02-221-9/+6
| | | | | | | | Make sure that even if PACKAGECONFIG is modified in a bbappend, odirect will still be enabled. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* lvm2: Depend on autoconf-archive-native instead of autoconf-archivePeter Kjellerstedt2017-02-221-1/+1
| | | | | | | | This still satisfies the dependency, and allows lvm2 to be built when packages that use GPL-3.0 have been disabled via INCOMPATIBLE_LICENSE. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* apache2: Correct the SRC_URIPeter Kjellerstedt2017-02-222-2/+2
| | | | | | | | The change to use ${APACHE_MIRROR} in the SRC_URI in dfbe6cf214 did not take into account that ${APACHE_MIRROR} already contains "/dist". Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* fwts: upgrade to 17.02.00 releaseFathi Boudra2017-02-201-2/+2
| | | | | | | Update PV and SRCREV to match 17.02.00 release Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* libmikmod: create packageconfig option for pulseaudioAndreas Oberritter2017-02-201-1/+3
| | | | | Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-mock: add RDEPENDS on python-pbr and python-funcsigsJackie Huang2017-02-201-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | python-pbr and python-funcsigs are required by python-mock, or it fails with: >>> import mock Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib64/python2.7/site-packages/mock/__init__.py", line 2, in <module> import mock.mock as _mock File "/usr/lib64/python2.7/site-packages/mock/mock.py", line 69, in <module> from pbr.version import VersionInfo ImportError: No module named pbr.version >>> import mock Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib64/python2.7/site-packages/mock/__init__.py", line 2, in <module> import mock.mock as _mock File "/usr/lib64/python2.7/site-packages/mock/mock.py", line 80, in <module> import funcsigs ImportError: No module named funcsigs Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-funcsigs: add new recipeJackie Huang2017-02-201-0/+18
| | | | | | | python-funcsigs is required by python-mock. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gstreamer: fix dependency issue and un-blacklist itPaul Gortmaker2017-02-201-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | In http://errors.yoctoproject.org/Errors/Details/130583/ we see the following: /bin/bash: line 1: glib-mkenums: command not found /bin/bash: glib-genmarshal: command not found Makefile:1808: recipe for target 'gstenumtypes.h' failed make[2]: *** [gstenumtypes.h] Error 127 Most people don't see this because most hosts have these binaries in /usr/bin -- e.g. libglib2.0-dev in Ubuntu provides them. However, after making this change, we see the following in the build for gstreamer: ./recipe-sysroot-native/usr/bin/glib-mkenums ./recipe-sysroot-native/usr/bin/glib-genmarshal ..and hence this change should resolve the above Yocto issue. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gnome-vfs: remove blacklistMax Krummenacher2017-02-201-2/+0
| | | | | | | Build is fixed for gnome-mime-data. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gnome-mime-data: add depends on glib-2.0-nativeMax Krummenacher2017-02-201-3/+1
| | | | | | | | This installs the needed glib-gettextize. Remove blacklist. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* multipath-tools: fix ARM build failurePatrick Ohly2017-02-201-2/+8
| | | | | | | | | | | | | Updating to 0.6.4 introduced a build failure on ARM when thumb was enabled because of the embedded valgrind.h macro calls. The easiest solution and thus the one used here is to disable thumb for this particular recipe for affected machines. The more elaborate solution would be to patch the macro calls out of the code when compiling for ARM with thumb. Signed-off-by: Patrick Ohly <patrick.ohly@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-pymongo: update to version 3.4.0Derek Straka2017-02-203-2/+6
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-flask: update to version 0.12Derek Straka2017-02-203-2/+2
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-jsonschema: update to version 2.6.0Derek Straka2017-02-203-2/+2
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-decorator: update to version 4.0.11Derek Straka2017-02-204-5/+9
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-urllib3: update to version 1.2Derek Straka2017-02-203-3/+3
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* initramfs-kexecboot-klibc-image: remove blacklistingAndrea Adami2017-02-201-2/+0
| | | | | | | | Ex patch 7/9 of the 2017-02-13 serie, not landed in patchwork. Recipe does build with the recent changes for meta-initramfs. Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-certifi: update to version 2017.1.23Derek Straka2017-02-203-3/+2
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-psutil: update to version 5.1.3Derek Straka2017-02-203-2/+2
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-passlib: update to version 1.7.1Derek Straka2017-02-203-3/+3
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-pysocks: update to version 1.6.6Derek Straka2017-02-203-2/+2
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* meson.bbclass: Add meson.bbclassLinus Svensson2017-02-201-0/+86
| | | | | | | | | | | | | | | | Add a class for packages that uses the meson build system. Meson uses a cross-file that contain needed tools and information about the host and target system. Such a file will be created in {WORKDIR}. Meson only allows installation directories to be specified as relative to prefix, except for sysconfdir, which can be absolute. This patch is based on a prototype patch by Ross Burton <ross.burton@intel.com>. Signed-off-by: Linus Svensson <linussn@axis.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* meson: Add recipe for the meson build systemLinus Svensson2017-02-201-0/+18
| | | | | | | | | | | Meson is a build system designed to be fast and as user firendly as possible. Find out more about meson at mesonbuild.com. This patch is based on a prototype patch by Ross Burton <ross.burton@intel.com>. Signed-off-by: Linus Svensson <linussn@axis.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-pyconnman: rdepend on connmanIoan-Adrian Ratiu2017-02-201-1/+1
| | | | | | | | | Having pyconnman installed without connman is useless, so make sure it's pulled at runtime. Connman can also be installed via a 'base' image packagegroup, but let's also add it to rdepend to be safe. Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-networkx: add packageWenzong Fan2017-02-201-0/+8
| | | | | | | Python package for creating and manipulating graphs and networks. Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* libtalloc: fix SRC_URI to use https instead of httpChai, Chong Yi2017-02-181-1/+1
| | | | | | | | | Fetching using http from samba.org is no longer working and changing to https would fix the issue. Signed-off-by: Chai, Chong Yi <chong.yi.chai@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
* fetchmail: update SRC_URIArmin Kuster2017-02-181-1/+1
| | | | | | | | | | | | | | | | ERROR: fetchmail-6.3.26-r0 do_checkuri: Fetcher failure for URL: 'http://download.berlios.de/fetchmail/fetchmail-6.3.26.tar.xz'. URL http://download.berlios.de/fetchmail/fetchmail-6.3.26.tar.xz doesn't work ERROR: fetchmail-6.3.26-r0 do_checkuri: Function failed: do_checkuri ERROR: Logfile of failure stored in: /home/akuster/oss/maint/poky/build/tmp/work/i586-poky-linux/fetchmail/6.3.26-r0/temp/log.do_checkuri.28438 ERROR: Task (/home/akuster/oss/maint/meta-openembedded/meta-networking/recipes-support/fetchmail/fetchmail_6.3.26.bb:do_checkuri) failed with exit code '1' per homepage: NEWS: NOW HOSTED BY SOURCEFORGE.NET AFTER BERLIOS SHUTDOWN The BerliOS developer's website has shut down in the week following 2014 May 12th, and most of the fetchmail contents have been moved to SourceForge.net, including mailing list subscriptions, archives back to 2004, web site contents, download and Git repository. See http://sourceforge.net/projects/fetchmail/. Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
* ipsec-tools: change SRC_URI fetcher.Armin Kuster2017-02-181-1/+1
| | | | | | | | | | | ERROR: ipsec-tools-0.8.2-r0 do_checkuri: Fetcher failure for URL: 'ftp://ftp.netbsd.org/pub/NetBSD/misc/ipsec-tools/0.8/ipsec-tools-0.8.2.tar.bz2'. URL ftp://ftp.netbsd.org/pub/NetBSD/misc/ipsec-tools/0.8/ipsec-tools-0.8.2.tar.bz2 doesn't work ERROR: ipsec-tools-0.8.2-r0 do_checkuri: Function failed: do_checkuri https seems more reliable. Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
* netkit-ruser: update SRC_URIArmin Kuster2017-02-181-2/+2
| | | | | | | | | | | ERROR: netkit-telnet-0.17-r0 do_checkuri: Fetcher failure for URL: 'ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-telnet-0.17.tar.gz'. URL ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-telnet-0.17.tar.gz doesn't work ERROR: netkit-telnet-0.17-r0 do_checkuri: Function failed: do_checkuri Debian moved these sources Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
* libtevent: fix SRC_URI - http has goneAndreas Müller2017-02-181-1/+1
| | | | | | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
* libtdb: fix SRC_URI - http has goneAndreas Müller2017-02-181-1/+1
| | | | | | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
* libuv: update 1.10.2 -> 1.11.0Andre McCurdy2017-02-161-5/+5
| | | | | | | | Also add support for -native, remove redundent definition of S and rename the file in DL_DIR ( v1.11.0.tar.gz -> libuv-1.11.0.tar.gz ). Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* Remove blacklists of python packages where build issues have been resolvedDerek Straka2017-02-166-16/+0
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* python-pbr: remove PNBLACKLISTRobert Yang2017-02-161-2/+0
| | | | | | | The build is OK after the patch: "python-pbr: change the dependency to be a RDEPENDS and fix build issues" Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
* udisks: add dbus-glib-native to DEPENDSRobert Yang2017-02-161-1/+3
| | | | | | | | Fixed: | dbus-binding-tool --prefix=daemon --mode=glib-server --output=daemon-glue.h ../data/org.freedesktop.UDisks.xml | make[2]: dbus-binding-tool: Command not found Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
* postgresql: add gettext-native and tcl-native to DEPENDSRobert Yang2017-02-161-3/+2
| | | | | | | | | | | | Fixed: | checking for msgfmt... no | configure: error: msgfmt is required for NLS And: | checking for tclsh83... no | configure: error: Tcl shell not found Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
* openlmi-tools: remove blacklistMax Krummenacher2017-02-161-2/+0
| | | | | | | Build is fixed for pywbem, pywbem-native. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>