aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2016-12-13xfce4-clipman-plugin: update to 1.4.1Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-13xfce4-notifyd: update 0.3.4Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-13gnome-menus3: add gnome-common-native to DEPENDSAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-13exo: update to 0.11.2Andreas Müller
0001-Probable-fix-for-Thunar-detailed-view-Xfce-12916.patch was applied upstream [1] [1] https://git.xfce.org/xfce/exo/commit/?id=fea2619e6d07ac72b2eff6f408bb3daa2dbdf671 Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-13pypi: add default values for UPSTREAM_CHECK_URI and UPSTREAM_CHECK_REGEXDerek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-13iozone3: Fix parallel build problemKhem Raj
ibasync.o and libbif.o are built twice once wrongly without CFLAGS, clang catches this since it does not specify -DHAVE_ANSIC_C and clang flags bunch of errors. Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-13gthumb: Add missing dependency on gnome-common-nativeKhem Raj
| ../gthumb-2.12.4/configure: line 17557: GNOME_MAINTAINER_MODE_DEFINES: command not found | ../gthumb-2.12.4/configure: line 17558: syntax error near unexpected token `maximum' | ../gthumb-2.12.4/configure: line 17558: `GNOME_COMPILE_WARNINGS(maximum)' Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-13libwnck3: Add missing dependency on gnome-common-nativeKhem Raj
Fixes configure errors ../libwnck-3.20.1/configure: line 13391: syntax error near unexpected token `maximum' ../libwnck-3.20.1/configure: line 13391: `GNOME_COMPILE_WARNINGS(maximum)' Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-13toybox: Upgrade to 0.7.2Paul Barker
Patches are dropped as they are no longer needed. Signed-off-by: Paul Barker <paul@paulbarker.me.uk> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-13msgpack-c: Add recipeKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-13dmalloc: Add recipeKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-13python-cson: Add recipeKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-13libvncserver: Fix build with security flags on and disable libvaKhem Raj
When libva is present it detects it and then fails to build until the support is fixed, lets disable it Add a patch to fix issue found when compiling with security flags turned on Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-pylint: modifies package bin to match source and adds dependenciesDaniela Plascencia
The pylint script mismatches from source in the target, producing runtime errors, such as: "pkg_resources.DistributionNotFound: The 'configparser' was not found and is required by pylint" This exception is raised mainly because pkg_resources, which is used by pylint, looks for modules named as in Py3, but the target has only Py2. For instance, 'ConfigParser' (already installed), has been renamed to 'configparser' in Py3, and thus not found by pkg_resources. To ensure none of these compatibility issues happen, the pylint script handles all the imports. Thus, /usr/bin/pylint has to be installed in the same fashion as in source, and the recipe in this patch states the content of such script and deletes the previous one. Also, a set of runtime dependencies is added to the recipe. Signed-off-by: Daniela Plascencia <daniela.plascencia@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-isort: add new recipeDaniela Plascencia
The recipe defines the isort python module. This module sorts imports alphabetically, and automatically separates them into sections. Signed-off-by: Daniela Plascencia <daniela.plascencia@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-setuptools-scm: add native to BBCLASSEXTENDDaniela Plascencia
Enables a native variant of python-setuptools-scm by adding BBCLASSEXTEND to the recipe. Signed-off-by: Daniela Plascencia <daniela.plascencia@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-lazy-object-proxy: add new recipeDaniela Plascencia
The recipe defines the lazy-object-proxy python module: a fast and thorough lazy object proxy. Signed-off-by: Daniela Plascencia <daniela.plascencia@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-astroid: add new recipeDaniela Plascencia
The recipe defines the astroid python module. This module provides a common base representation of python source code for projects such as pylint. Signed-off-by: Daniela Plascencia <daniela.plascencia@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-wrapt: add new recipeDaniela Plascencia
The recipe defines the wrapt python module. This module provides a transparent object proxy for Python that can be used in the construction of function wrappers and decorators. Signed-off-by: Daniela Plascencia <daniela.plascencia@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-backports-functools-lru-cache: add new recipeDaniela Plascencia
The recipe defines the backports.functools_lru_cache package. This package backports LRU cache from Python 3.3, supporting the full Py3.3 API. Signed-off-by: Daniela Plascencia <daniela.plascencia@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-pymisp: update to version 2.4.54Derek Straka
* Verified license remains the same Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-pyopenssl: update to version 16.2.0Derek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-cryptography: update to version 1.6Derek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-cryptography-vectors: update to version 1.6Derek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-ipaddress: add native and nativesdkDerek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-pip: update to version 9.0.1Derek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-pyasn1: fix RDEPENDS to work correctly when building native versionDerek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-enum34: add native and nativesdkDerek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-six: remove recipe that was pulled into oe-coreDerek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-pytest: update to version 3.0.4Derek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-pymongo: update to version 3.3.1Derek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-psutil: update to version 5.0.0Derek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09nginx: update to version 1.11.6Derek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09imagemagick: use correct major version in program suffixAndreas Oberritter
Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09krb5: create Debian-like package structureAndreas Oberritter
Split libraries and plugins into their own packages. Create packages for admin-server, kdc, user and examples. Remove some unneeded binaries. Enable daemons on boot. Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09libcdio: clean up recipeAndreas Oberritter
Fix description, use packageconfig, use packagesplitfuncs. Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09libcdio-paranoia: new recipe for 10.2+0.93.1Andreas Oberritter
Since libcdio 0.90, libcdio-paranoia is a separate project. Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09redis: increase the max number of fds to actually match redis.confFrank Meerkoetter
Now that the processes no longer runs as root, we need to increase the limit for it. This only affects systemd based systems. Signed-off-by: Frank Meerkoetter <frank@meerkoetter.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09redis: do not run as rootFrank Meerkoetter
Running a network facing daemon written in C as root is not a good idea. Introduce a redis system user/group for that. A drawback is that now redis can no longer increase the number of open fds to 10000 (MaxClients). If this is needed the ulimit needs to be tweaked in the init script or systemd unit file. This only affects systemd based systems. Signed-off-by: Frank Meerkoetter <frank@meerkoetter.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09redis: log to syslogFrank Meerkoetter
Creating /var/log/redis.log requires root permissions to create the file. Use syslog instead so redis does not require root. This affects both sysv and systemd based systems. Signed-off-by: Frank Meerkoetter <frank@meerkoetter.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09redis: do not expose the service to the network by defaultFrank Meerkoetter
Binding it to localhost is a safe default. This affects both sysv and systemd based systems. Signed-off-by: Frank Meerkoetter <frank@meerkoetter.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09redis: add a systemd service fileFrank Meerkoetter
The redis.conf is changed on the fly to not daemonize redis. The reason for that is that with this appraoch we don't need special permissions to write to /var/run/. Signed-off-by: Frank Meerkoetter <frank@meerkoetter.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-09python-pyconnman: Add new recipeHeghedus Razvan
Signed-off-by: Heghedus Razvan <razvan.heghedus@ni.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-02libxml++: fix LICENSEMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-02meta_oe_security_flags.inc: Disable PIE for luajitKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-02mpv: Add PACKAGECONFIG for vaapiKhem Raj
Now that we have libva its important to enable/disable vaapi explicitly Fixes WARNING: mpv-0.15.0-r0 do_package_qa: QA Issue: mpv rdepends on libva-x11, but it isn't a build dependency, missing libva in DEPENDS or PACKAGECONFIG? [build-deps] WARNING: mpv-0.15.0-r0 do_package_qa: QA Issue: mpv rdepends on libva, but it isn't a build dependency, missing libva in DEPENDS or PACKAGECONFIG? [build-deps] Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-02obex-data-server: Fix build with new openobex versionKhem Raj
Add missing dependency on dbus-glib-native, this is needed for getting DBUS_BINDING_TOOL Signed-off-by: Khem Raj <raj.khem@gmail.com>
2016-12-02openobex,obexftp: Update recipesKhem Raj
Update obexftp to 0.24.2 and openobex to 1.7.2 These packages moved to CMake infra for builds therefore make adjustments to cross compile it Add packageconfig options for fuse and swig Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-02miniupnpd: Add recipeKhem Raj
Add missing dep on libmnl and libnetfilter-conntrack Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-02xfce4-vala: fix buildAndreas Müller
follow oe-core's vala update Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>