summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* License report: prevent unintended buildptxdist-2016.11.0Juergen Borleis2016-11-091-2/+3
| | | | | | | | | | | Independently from the PTXCONF_PROJECT_CHECK_LICENSES setting the license was extracted from each package due to this '='/'==' mismatch. Also, move the check before the loop that modifies 'this_PKG'. Otherwise the check always fails. Signed-off-by: Juergen Borleis <jbe@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libcurl: version bump 7.49.1 -> 7.51.0Michael Olbrich2016-11-081-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: virtfs requires libcap and libattrMichael Olbrich2016-11-011-0/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: disable icecc for gcc > 4.9Michael Olbrich2016-11-011-0/+7
| | | | | | | | | | | | | The avx2 code used preprocessor magic that break with icecc and gcc < 4.9 with: [...] util/cutils.c:282:29: error: '__m256i' undeclared (first use in this function) [...] Avoid this by disabling icecc for host-qemu if the host-gcc is older than 4.9.x. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* ptxd_make_world_init: never use icecc during the prepare stageMichael Olbrich2016-10-301-1/+1
| | | | | | | | | Only shore test programs are compiled here. So just do this locally and avoid the overhead from calling icecc first. This can speed up the prepare stage significantly. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* ptxd_make_serialize_init: use --jobserver-auth if necessaryMichael Olbrich2016-10-301-2/+6
| | | | | | | In make 4.2 --jobserver-fds was renamed to --jobserver-auth and is now a public command line option. Use the new option if it is recognized. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* ptxdist: use PTXCONF_SETUP_HOST_MAKE to check if --output-sync is supportedMichael Olbrich2016-10-301-1/+1
| | | | | | That's the make version that is used later with the detected argument. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libseccomp: the new version supports PPCMichael Olbrich2016-10-282-4/+1
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libseccomp: bump versionClemens Gruber2016-10-281-2/+2
| | | | | Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libmnl: version bump 1.0.3 -> 1.0.4Bastian Stender2016-10-271-2/+2
| | | | | Signed-off-by: Bastian Stender <bst@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* alfred: version bump 2015.1 -> 2016.2Bastian Stender2016-10-271-2/+2
| | | | | Signed-off-by: Bastian Stender <bst@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* batctl: add license infoBastian Stender2016-10-271-1/+1
| | | | | Signed-off-by: Bastian Stender <bst@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* valgrind: cleanup rulesMichael Olbrich2016-10-261-12/+3
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* valgrind: version bump to 3.12.0Juergen Borleis2016-10-267-2172/+5
| | | | | | | Due to using this new release we can drop two backported patches. Signed-off-by: Juergen Borleis <jbe@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* lm_sensors: install custom config if availableClemens Gruber2016-10-261-1/+1
| | | | | Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* lm_sensors: bump versionClemens Gruber2016-10-261-2/+2
| | | | | Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* util-linux-ng: allow installing wipefsClemens Gruber2016-10-262-0/+11
| | | | | Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* ptxd_make_image_genimage: use unique directory for filtered config filesMichael Olbrich2016-10-251-3/+4
| | | | | | | | Without this, building images that use the same config files in parallel is broken. They use the same file in PTXDIST_TEMPDIR and all may use the substitutions from one of them. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* intel-gpu-tools: fix dependencies and install missing libraryMichael Olbrich2016-10-242-1/+8
| | | | | | | | | While most tools don't need cairo, building without it is unfortunately not possible. Add help text while at it. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* wrapper: add PTXDIST_CROSS_CPPFLAGS lateMichael Olbrich2016-10-211-1/+1
| | | | | | | | | | | | These are only the -isystem arguments for sysroot. They should be added at the end of the commandline. This way any other -isystem generated by the package build system has priority. This fixes building Qt5 packages if Qt4 is installed as well. For Q55 qmake produces '-isystem <sysroot>/usr/include/qt5'. Without this the Qt4 headers in <sysroot>/usr/include are used. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* weston: fix targetinstallMichael Olbrich2016-10-211-6/+11
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libunwind: fix building on PPCMichael Olbrich2016-10-211-1/+6
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* munin: fix building with newer perl versionsMichael Olbrich2016-10-211-1/+1
| | | | | | | | | | With newer perl versions the current directory is no longer in the include path. Add it back to fix building. Without this building fails with: Can't locate MasterBuilder.pm in @INC (you may need to install the MasterBuilder module) (@INC contains: .... Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-mysql: fix building with gcc6Michael Olbrich2016-10-211-0/+2
| | | | | | | Building fails for c++11 which is the default for gcc6. Make sure c++98 is used instead. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* wayland: don't install target wayland-scanner to sysrootMichael Olbrich2016-10-211-0/+2
| | | | | | | | Some packages, such as xorg-server look for wayland-scanner next to the client libraries by default. Make sure it's not there, so that wayland-scanner from sysroot-host is found instead. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* intel-gpu-tools: new packageMichael Olbrich2016-10-212-0/+115
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* qt4: add patch to build host-qt4 with gcc6Michael Olbrich2016-10-2110-35/+87
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* New package: imagemagickGuillermo Rodriguez2016-10-212-0/+178
| | | | | | | | | | | | | | | | | This adds a new package for ImageMagick 7. Some configuration options are set to sensible defaults for embedded targets (quantum depth set to 8 pixels, HDRI disabled). See notes in imagemagick.make. Changes since v2: - Fixed whitespace in .in file - Made comment about quantum depth choice more clear - Sorted configure options as they appear in --configure - Removed unwanted binaries and config files intead of just having them commented out. Signed-off-by: Guillermo Rodriguez <guille.rodriguez@gmail.com> [mol: use sourceforge URL] Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* qwt5: add qwt library based on Qt5Juergen Borleis2016-10-206-0/+158
| | | | | | | | The already existing qwt implementation in PTXdist is based on Qt4. Since Qt4 and Qt5 can co-exist, the same is valid for qwt and qwt5. Signed-off-by: Juergen Borleis <jbe@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* mpg123: bump version to 1.23.8Clemens Gruber2016-10-201-2/+2
| | | | | | | Vulnerability fixes. Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* ethtool: bump version to 4.8Clemens Gruber2016-10-201-2/+2
| | | | | Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* strace: bump version to 4.14Clemens Gruber2016-10-201-2/+2
| | | | | Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gnupg: bump version and add gpgv patch from debianClemens Gruber2016-10-203-3/+47
| | | | | | | | Update to latest GnuPG stable and add patch to improve default security when using gpgv. Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libgcrypt: bump version and make build more reproducibleClemens Gruber2016-10-201-3/+6
| | | | | | | Version bump, add build timestamp, disable documentation and tests. Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libksba: bump version and make build more reproducibleClemens Gruber2016-10-201-3/+9
| | | | | | | Version bump, add build timestamp and enable optimizations. Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libassuan: bump version and make build more reproducibleClemens Gruber2016-10-201-3/+8
| | | | | Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libgpg-error: bump versionClemens Gruber2016-10-201-3/+4
| | | | | | | Bump version and disable building tests. Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libva-intel-driver: version bump 1.7.0 -> 1.7.2Michael Olbrich2016-10-201-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libva: version bump 1.7.0 -> 1.7.2Michael Olbrich2016-10-201-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libunwind: new packageMichael Olbrich2016-10-202-0/+84
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* glib-networking: version bump 2.48.2 -> 2.50.0Michael Olbrich2016-10-201-2/+8
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* glib: version bump 2.48.2 -> 2.50.1Michael Olbrich2016-10-202-2/+4
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* weston: version bump 1.7.0 -> 1.12.0Michael Olbrich2016-10-202-4/+24
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* wayland: version bump 1.7.0 -> 1.12.0Michael Olbrich2016-10-202-7/+10
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* wayland-protocols: new packageMichael Olbrich2016-10-202-0/+41
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* zlib: remove submenuptxdist-2016.10.0Juergen Borleis2016-10-191-2/+2
| | | | | | | | Since commit db01d85e617a8dc4380cb67bd4054f00c1ed4704 zlib has no submenu entry anymore. So switch to a regular and simple menu entry. Signed-off-by: Juergen Borleis <jbe@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* valgrind: add support for compressed debug-infoJuergen Borleis2016-10-192-1/+2026
| | | | | | | | | | | PTXdist separates the debug-info from the programs and libraries and provides them in a .debug sub-directory near the programs and libraries in a compressed manner (toolchain feature). This change enables valgrind to still use the compressed debug-info to improve its output logs. Note: the new patch can be removed again on the next release of valgrind. Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
* iproute2: add patch to avoid iptables dependencyClemens Gruber2016-10-183-1/+24
| | | | | | | | | | | | | New patch, adding the missing build-dependency xtables-version.h. Also set TC_CONFIG_XT=n in Config. libxtables is not required, unless plugins that link to it are used. Currently, none of these plugins are installed/installable in PTXdist. Fixes: 333123a94302 ("iproute2: update version and minor improvements") Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* iproute2: bump versionClemens Gruber2016-10-181-2/+2
| | | | | Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* ptxd_make_image_fix_permissions_check: set the correct IFSMichael Olbrich2016-10-181-1/+1
| | | | | | The escape sequence will not be evaluated without 'echo -e'. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>