Yann E. MORIN [Sat, 14 Feb 2015 09:23:08 +0000 (10:23 +0100)]
toolchain/buildroot: forget about avr32
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Yann E. MORIN [Sat, 14 Feb 2015 09:23:07 +0000 (10:23 +0100)]
linux: get rid of avr32 specifics
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Yann E. MORIN [Sat, 14 Feb 2015 09:23:06 +0000 (10:23 +0100)]
packages: all salute the passing of avr32
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Yann E. MORIN [Sat, 14 Feb 2015 09:23:05 +0000 (10:23 +0100)]
configs: get rid of avr32 defconfigs
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Yann E. MORIN [Sat, 14 Feb 2015 09:23:04 +0000 (10:23 +0100)]
arch: kill avr32
avr32 was slated for removal in 2015.02. Make it so!
This patch only definitively hides the symbol. When all references
to it are eradicated (to come in followup patches), we'll eventually
kill the symbol altogether.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas De Schampheleire [Tue, 3 Feb 2015 14:21:48 +0000 (15:21 +0100)]
linux: avoid unnecessary changes in defconfig for INITRAMFS_SOURCE
When Buildroot is configured to append the root filesystem to the Linux
kernel as initramfs, Buildroot sets the path to the initramfs source
dynamically in the Linux configuration file.
As this path is specified as an absolute path, typically being different
for different users of the same project (e.g. containing a username),
saving the configuration to a version control system (for example using
'make linux-update-defconfig') would result in a difference for this
path at every invocation by a different user.
Although this is technically not an issue, it is confusing that this
generates a difference.
Address this issue by using a not-yet-expanded make variable to specify
the path to the initramfs source. That variable will be expanded by the
Linux build system, which uses it both as a Makefile variable and a
shell variable; thus, it needs to be specified in LINUX_MAKE_ENV (so
it is exported and available in sub-processes of make). Any saved
configuration file would simply contain the reference to the
not-yet-expanded variable.
As in the Linux build system, the config variables are both read from
make as from a shell script, we cannot use $() syntax as this would be
interpreted as a command invocation by the shell. Instead, use ${}
syntax which is interpreted as variable reference both by the shell as
by make.
[Thomas:
- Really make the patch work by using $(LINUX_MAKE_ENV) instead of
$(TARGET_MAKE_ENV). Otherwise, the new BR2_BINARIES_DIR variable is
not passed at all stages of the build process, which makes the
build fail when an initramfs is used.]
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: "Yann E. Morin" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas De Schampheleire [Tue, 3 Feb 2015 14:21:50 +0000 (15:21 +0100)]
barebox: migrate to the kconfig infrastructure
[Thomas:
- use $(BAREBOX_DIR) instead of $(@D) when defining
BAREBOX_SOURCE_CONFIG, because $(@D) has no value at this point
since we're outside of a make rule. This was causing Barebox to be
constantly rebuilt, since the defconfig path was not a full path,
it was looking like: '/arch/arm/configs/tegra_v7_defconfig'. The
solution of using $(BAREBOX_DIR) has been used to mimic was is done
in the linux package, which uses $(LINUX_DIR).]
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: "Yann E. Morin" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas De Schampheleire [Tue, 3 Feb 2015 14:21:49 +0000 (15:21 +0100)]
barebox: qstrip the path to the custom configuration file
Even though this is not strictly necessary with the current version
of barebox.mk, it becomes necessary when migrating barebox.mk to the
kconfig infrastructure.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: "Yann E. Morin" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas De Schampheleire [Tue, 3 Feb 2015 14:21:47 +0000 (15:21 +0100)]
linux: migrate to the kconfig infrastructure
Migrate the linux package to the kconfig infrastructure.
A notable change compared to the original behavior:
- the targets linux-update-(def)config are now always saving the config
file, even for a defconfig bundled in the linux sources. This is done
to keep the kconfig infrastructure simple.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: "Yann E. Morin" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas De Schampheleire [Tue, 3 Feb 2015 14:21:46 +0000 (15:21 +0100)]
linux: qstrip the path to the custom configuration file
Even though this is not strictly necessary with the current version of
linux.mk, it becomes necessary when migrating linux.mk to the kconfig
infrastructure.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: "Yann E. Morin" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Yann E. Morin [Tue, 3 Feb 2015 14:21:45 +0000 (15:21 +0100)]
kconfig infra: only provide foo-*config targets when the package is enabled
Signed-off-by: "Yann E. Morin" <yann.morin.1998@free.fr>
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas De Schampheleire [Tue, 3 Feb 2015 14:21:44 +0000 (15:21 +0100)]
kconfig infra: remove all install stamp files
Some packages (like linux) may install things inside images/ as well, so
remove the associated stamp file after running the configuration editor.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: "Yann E. Morin" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas De Schampheleire [Tue, 3 Feb 2015 14:21:43 +0000 (15:21 +0100)]
kconfig infra: make update-config/defconfig handling symmetrical
Replace a 'cp --preserve' with a 'touch --reference' so that the code
for foo-update-config and foo-update-defconfig is symmetrical to ease
maintainability and increase clarity.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: "Yann E. Morin" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas De Schampheleire [Tue, 3 Feb 2015 14:21:42 +0000 (15:21 +0100)]
kconfig infra: add support for defconfig files
This commit adds support for using a defconfig file instead of a full
.config. This is a precondition to migrate packages like linux and
barebox to the kconfig infrastructure.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: "Yann E. Morin" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas De Schampheleire [Tue, 3 Feb 2015 14:21:41 +0000 (15:21 +0100)]
kconfig infra: support built-in config files
When the configuration file of a package is located inside of the
package sources, a make dependency can only be expressed after the
package has been extracted (and patched).
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: "Yann E. Morin" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:48 +0000 (21:11 +0100)]
package/x11r7/xserver_xorg-server: bump version to 1.17.0
- remove patches, all were applied upstream
- add support for libglamor, needed by package/x11r7/xdriver_xf86-video-ati
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:47 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-video-geode: mark as broken
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:46 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-video-v4l: mark as broken
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:45 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-video-mga: bump version
Use git snapshot for compatibility with xorg xserver 1.17.0.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:44 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-video-cirrus: bump version
Use git snapshot for compatibility with xorg xserver 1.17.0.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:43 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-video-neomagic: bump version
Use git snapshot for compatibility with xorg xserver 1.17.0.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:42 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-video-voodoo: bump version
Use git snapshot for compatibility with xorg xserver 1.17.0.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:41 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-video-vmware: bump version to 13.1.0
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:40 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-video-tdfx: bump version
Use git snapshot for compatibility with xorg xserver 1.17.0,
remove patch applied upstream.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:39 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-video-siliconmotion: bump version
Use git snapshot for compatibility with xorg xserver 1.17.0,
remove patch applied upstream.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:38 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-video-savage: bump version
Use git snapshot for compatibility with xorg xserver 1.17.0.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:37 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-video-r128: bump version
Use git snapshot for compatibility with xorg xserver 1.17.0.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:36 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-video-mach64: bump version
Use git snapshot for compatibility with xorg xserver 1.17.0.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:35 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-input-synaptics: bump version to 1.7.8
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:34 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-video-ati: bump version to 7.5.0
Remove patches applied upstream.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:33 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-video-sis: bump version
Use git snapshot for compatibility with xorg xserver 1.17.0,
remove patches applied upstream.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:32 +0000 (21:11 +0100)]
package/x11r7/xproto_xproto: bump version to 7.0.27
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:31 +0000 (21:11 +0100)]
package/x11r7/xkeyboard-config: bump version to 2.14
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:30 +0000 (21:11 +0100)]
package/x11r7/xdriver_xf86-input-evdev: bump version to 2.9.1
Package now needs libevdev:
http://cgit.freedesktop.org/xorg/driver/xf86-input-evdev/commit/?id=
164c62a97591d4c9b649460e7442977ea82ac02b
[Thomas: adapt to current master, update hash file.]
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:29 +0000 (21:11 +0100)]
package/x11r7/xapp_xkbcomp: bump version to 1.3.0
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:28 +0000 (21:11 +0100)]
package/x11r7/xapp_xfsinfo: bump version to 1.0.5
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:27 +0000 (21:11 +0100)]
package/x11r7/xapp_xcalc: bump version to 1.0.6
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:26 +0000 (21:11 +0100)]
package/x11r7/xapp_showfont: bump version to 1.0.5
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:25 +0000 (21:11 +0100)]
package/x11r7/xapp_sessreg: bump version to 1.1.0
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:24 +0000 (21:11 +0100)]
package/x11r7/xapp_rgb: bump version to 1.0.6
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:23 +0000 (21:11 +0100)]
package/x11r7/xapp_mkfontscale: bump version to 1.1.2
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:22 +0000 (21:11 +0100)]
package/x11r7/xapp_iceauth: bump version to 1.0.7
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:21 +0000 (21:11 +0100)]
package/x11r7/xapp_fstobdf: bump version to 1.0.6
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:20 +0000 (21:11 +0100)]
package/x11r7/xapp_fslsfonts: bump version to 1.0.5
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:19 +0000 (21:11 +0100)]
package/x11r7/xapp_bitmap: bump version to 1.0.8
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:18 +0000 (21:11 +0100)]
package/x11r7/xapp_bdftopcf: bump version to 1.0.5
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:17 +0000 (21:11 +0100)]
package/libpciaccess: bump version to 0.13.3
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:16 +0000 (21:11 +0100)]
package/x11r7/libepoxy: New package
xdriver_xf86-video-ati needs glamor support from xserver_xorg-server,
which in turn depends on libepoxy.
[Thomas: add license information.]
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:15 +0000 (21:11 +0100)]
package/x11r7/xlib_libxshmfence: bump version to 1.2
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd Kuhls [Sat, 7 Feb 2015 20:11:14 +0000 (21:11 +0100)]
package/x11r7/xlib_xtrans: bump to version 1.3.5, add hash
xserver_xorg-server 1.17.0 depends on it.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Angelo Compagnucci [Thu, 12 Feb 2015 13:49:30 +0000 (14:49 +0100)]
package/mono: enable mono library compilation
This patch enables the compilation of mono library to be used
in third party software.
Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Yegor Yefremov [Tue, 10 Feb 2015 20:01:08 +0000 (21:01 +0100)]
package/python-lxml: new package
The lxml XML toolkit is a Pythonic binding for the C libraries libxml2
and libxslt.
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
[yann.morin.1998@free.fr: fix staging path; trim dependencies of
the host variant]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Fabio Porcedda [Wed, 11 Feb 2015 17:52:21 +0000 (18:52 +0100)]
pkg-cmake: reduce output when being silent
Use CMAKE_RULE_MESSAGES and CMAKE_INSTALL_MESSAGE variables to reduce
cmake output when it is a silent build.
[Thomas:
- use ifneq instead of ifdef
- remove unneeded else clause
- also add to the host variant of the configure commands]
Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Fabio Porcedda [Tue, 10 Feb 2015 17:59:36 +0000 (18:59 +0100)]
rtmpdump: use TARGET_LDFLAGS instead of TARGET_CFLAGS for XLDFLAGS
The XLDFLAGS is for ld related flags so use TARGET_LDFLAGS instead of
TARGET_CFLAGS, also the TARGET_CFLAGS is already used for XCFLAGS.
This fix is also needed for supporting the per-package staging directory.
Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Jerzy Grzegorek [Thu, 12 Feb 2015 12:48:37 +0000 (13:48 +0100)]
imagemagick: bump to version 6.9.0-5
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Jörg Krause [Thu, 12 Feb 2015 10:57:50 +0000 (11:57 +0100)]
package/shairport-sync: bump to version 2.2.1
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Peter Korsgaard [Thu, 12 Feb 2015 20:53:27 +0000 (21:53 +0100)]
xdriver_xf86-input-evdev: add optional mtdev support
Needed for multitouch handling.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Thu, 12 Feb 2015 20:50:49 +0000 (21:50 +0100)]
xdriver_xf86-input-evdev: needs host-pkgconf
The configure script uses PKG_CHECK_MODULES, so explictly add it to
dependencies instead of relying on the fact that the xserver pulls it in.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Thu, 12 Feb 2015 20:45:29 +0000 (21:45 +0100)]
xdriver_xf86-input-evdev: bump version
And add hash file.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Tue, 10 Feb 2015 06:06:46 +0000 (07:06 +0100)]
glibc: fix version string for 2.21
Reported-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Philippe Reynes [Mon, 9 Feb 2015 17:47:21 +0000 (18:47 +0100)]
armadeus apf27: update kernel to 3.18.6
Signed-off-by: Philippe Reynes <tremyfr@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Jens Zettelmeyer [Mon, 9 Feb 2015 20:22:18 +0000 (20:22 +0000)]
batctl: new package
[Thomas:
- remove trailing whitespace
- remove "# libnl" comment in Config.in
- remove BATCTL_SOURCE, which is not needed, since the default value
is used
- pass $(TARGET_CONFIGURE_OPTS) in the make environment, not as a
make option, otherwise the CFLAGS += lines of batctl Makefile do
not have any effect, and lead to not have the proper include path
to the libnl header files.]
Signed-off-by: Jens Zettelmeyer <zettelmeyerj@goooglemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Vicente Olivert Riera [Sat, 7 Feb 2015 18:34:43 +0000 (18:34 +0000)]
cmake: bump version to 3.1.2
- Bump version to 3.1.2
- Add a hash file
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Peter Korsgaard [Mon, 9 Feb 2015 12:37:44 +0000 (13:37 +0100)]
linux: bump default to version 3.19
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Mon, 9 Feb 2015 12:33:46 +0000 (13:33 +0100)]
linux-headers: add 3.19.x series
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Mon, 9 Feb 2015 12:31:23 +0000 (13:31 +0100)]
toolchain: add 3.19 choice for headers
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Vicente Olivert Riera [Mon, 9 Feb 2015 10:53:50 +0000 (10:53 +0000)]
fluxbox: bump version to 1.3.7
- Bump version to 1.3.7
- Update the hash file
- Use xz instead of bz2 to save disk space and bandwidth
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Fabio Porcedda [Sun, 8 Feb 2015 20:36:40 +0000 (21:36 +0100)]
prboom: remove uninstall command
Useless since the uninstall commands were removed in
eb7bd9ef
Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Vicente Olivert Riera [Sun, 8 Feb 2015 15:07:07 +0000 (15:07 +0000)]
glibc: remove version 2.19
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Vicente Olivert Riera [Sun, 8 Feb 2015 15:07:06 +0000 (15:07 +0000)]
glibc: set version 2.20 as default
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Vicente Olivert Riera [Sun, 8 Feb 2015 15:07:05 +0000 (15:07 +0000)]
glibc: add version 2.21
- Add version 2.21
- Add a hash value for it
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Sun, 8 Feb 2015 20:57:14 +0000 (21:57 +0100)]
Update for 2015.02-rc1
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Sun, 8 Feb 2015 20:55:10 +0000 (21:55 +0100)]
CHANGES: Update with recent changes
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Sun, 8 Feb 2015 21:02:03 +0000 (22:02 +0100)]
libselinux: add patch to fix Blackfin build issue
Fixes:
http://autobuild.buildroot.org/results/165/
165a227a0a8ecd4cb3f96761aacdf90ae974fea7/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Alex Suykov [Sun, 8 Feb 2015 18:02:37 +0000 (20:02 +0200)]
perl: remove poisoned path from dynaloader hints
Fixes
http://autobuild.buildroot.net/results/
323a82776cccf17afaa00ebe3483cfc06a06f264/
http://autobuild.buildroot.net/results/
7d4cf7b63fda1a062263b7a4e758c699049105af/
Signed-off-by: Alex Suykov <alex.suykov@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Romain Naour [Sun, 8 Feb 2015 16:57:20 +0000 (17:57 +0100)]
package/erlang: fix build issue with pcre package
If the pcre package is build before erlang, the erlang's build
system use pcre.h from pcre package instead of using pcre.h bundled
by Erlang.
Erlang use an old version of this file which is incompatible
with the upstream one.
http://autobuild.buildroot.net/results/cbd/
cbd8b54eef535f19d7d400fd269af1b3571d6143/build-end.log
And many more.
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Vicente Olivert Riera [Sun, 8 Feb 2015 16:04:58 +0000 (16:04 +0000)]
qt5multimedia: Make it compile with no-opengl
Backport an upstream patch to make it compile with no-opengl. Otherwise
it will fail showing an error message like this one:
qpaintervideosurface.cpp:99:47: error: 'QOpenGLContext' has not been
declared
Upstream commit:
https://qt.gitorious.org/qt/qtmultimedia/commit/
2b181d546970d18a48a0f36f5d1a22418b61cd4d
Fixes:
http://autobuild.buildroot.net/results/b77/
b77cdf9b1cf6cafd5afef7337553bb32489207e5/
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Seiderer [Sun, 8 Feb 2015 15:58:28 +0000 (16:58 +0100)]
postgresql: bump version to 9.4.1
See [1] for a detailed list of changes.
[1] http://www.postgresql.org/docs/9.4/static/release-9-4-1.html
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORIN [Sat, 7 Feb 2015 22:10:14 +0000 (23:10 +0100)]
legacy: add missing option for util-linux' wdctl
In
349c9c7 (package/util-linux: add more tool select options), the
util-linux' wdctl option was renamed, but a entry in the legacy menu was
no added.
Add this now.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Maxim Mikityanskiy <maxtram95@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:19 +0000 (01:34 +0100)]
qt5webkit: add missing indirect dependency on atomics and !flat
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:18 +0000 (01:34 +0100)]
qt5cinex: add missing indirect dependency on libegl
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:17 +0000 (01:34 +0100)]
enlightenment: add missing indirect dependency on atomics
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:16 +0000 (01:34 +0100)]
xscreensaver: add missing indirect dependency on atomics
Also reformat the comment lines and fix the comment.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:15 +0000 (01:34 +0100)]
pinenty: add missing indirect dependency on atomics for gtk2 support
Also remove redundant comment lines.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:14 +0000 (01:34 +0100)]
opencv: add missing indirect dependency on atomics for gtk support
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:13 +0000 (01:34 +0100)]
cwiid: add missing indirect dependency on atomics for wmgui
Also add a comment for cwiid itself.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:12 +0000 (01:34 +0100)]
php: add missing indirect dependency on !avr32 for mysql extensions
Also fix the comment.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:11 +0000 (01:34 +0100)]
dovecot: add missing indirect dependency on !avr32 for mysql
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:10 +0000 (01:34 +0100)]
util-linux: add missing indirect dependency on !avr32 for setpriv
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:09 +0000 (01:34 +0100)]
oprofile: add missing indirect dependency on NPTL for PPC
[Peter: also adjust comment dependencies]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:08 +0000 (01:34 +0100)]
kodi: add missing indirect dependency on dynamic lib for shairport
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:07 +0000 (01:34 +0100)]
espeak: add missing indirect dependency on atomics for pulseaudio
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:06 +0000 (01:34 +0100)]
libgail: add missing indirect dependency on C++ and atomics
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:05 +0000 (01:34 +0100)]
grantlee: add missing indirect dependency on jscore available
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:04 +0000 (01:34 +0100)]
qemu: add missing indirect dependency on dynamic library for fdt
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:03 +0000 (01:34 +0100)]
gst1-plugins-base: add missing indirect dependency on atomics for pango
Also removed the redundant indirect dependencies on wchar, threads, mmu
(gstreamer depends on libglib2 so this indirect dependency is obvious).
[Peter: drop wchar+threads from comment as suggested by Jerzy Grzegorek]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:02 +0000 (01:34 +0100)]
gst-plugins-base: add missing indirect dependency on atomics for pango
Also removed the redundant indirect dependencies on wchar, threads, mmu
(gstreamer depends on libglib2 so this indirect dependency is obvious).
[Peter: drop wchar+threads from comment as suggested by Jerzy Grzegorek]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:01 +0000 (01:34 +0100)]
gst1-plugins-bad: add missing indirect dependency on atomics for rsvg
Also removed the redundant indirect dependencies on wchar, threads
(gstreamer depends on libglib2 so this indirect dependency is obvious).
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:34:00 +0000 (01:34 +0100)]
gst-plugins-bad: add missing indirect dependency on atomics for rsvg
Also removed the redundant indirect dependencies on wchar, threads
(gstreamer depends on libglib2 so this indirect dependency is obvious).
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Wed, 4 Feb 2015 00:33:59 +0000 (01:33 +0100)]
python-coherence: add missing indirect dependency on c++
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>