Thomas De Schampheleire [Fri, 3 Jan 2014 16:02:50 +0000 (17:02 +0100)]
deprecated handling: introduce BR2_DEPRECATED_SINCE_xxxx_xx
In order to keep better track of when a feature got deprecated, and hence
when it can be removed, a new set of symbols BR2_DEPRECATED_SINCE_xxxx_xx is
introduced. These symbols are automatically selected when BR2_DEPRECATED is
selected, and thus are transparent to the user.
A deprecated feature will no longer depend on BR2_DEPRECATED directly, but
rather on the appropriate BR2_DEPRECATED_SINCE_xxxx_xx. If that symbol does
not yet exist, it has to be created in Config.in.
When removing a deprecated feature, one should also check whether this was
the last feature using the BR2_DEPRECATED_SINCE_xxxx_xx symbol, in which
case the latter can be removed from Config.in.
A followup patch will make sure the overview is added to the list of
deprecated features in the manual, so that a buildroot core developer can
easily determine which features to remove in a given development cycle.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Matt Weber [Mon, 6 Jan 2014 17:37:06 +0000 (11:37 -0600)]
omniorb: add option to build applications and services
Signed-off-by: Matt Weber <mlweber1@rockwellcollins.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Alexander Lukichev [Fri, 10 Jan 2014 13:17:53 +0000 (15:17 +0200)]
zmqpp: add proper header include
The patch has been submitted upstream. If it is accepted, the
patch here will not be necessary.
Fixes http://autobuild.buildroot.net/results/425/
42590285167f779e27a4e8db9853c7065b9e31c0/
and some others.
Signed-off-by: Alexander Lukichev <alexander.lukichev@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Clayton Shotwell [Fri, 10 Jan 2014 13:38:43 +0000 (07:38 -0600)]
sdl: Fix missing autoconf
Fixing an issue seen on the autobuilders with sdl failing to run the
autogen.sh script. Several of the autobuild issues are listed below.
http://autobuild.buildroot.net/results/
7326631048bc9e15ffadc6f541f2235592b5259b/
http://autobuild.buildroot.net/results/
0adf5ea64075323eba1183f93c16d2954673f3e1/
Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Thu, 9 Jan 2014 21:00:27 +0000 (18:00 -0300)]
linux: bump to version 3.12.7
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Thu, 9 Jan 2014 21:00:26 +0000 (18:00 -0300)]
linux-headers: bump 3.{2, 4, 10, 12}.x stable versions
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORIN [Thu, 9 Jan 2014 19:15:01 +0000 (20:15 +0100)]
package/ola: fix build against google.protobuf
To test for the google.protobuf presence, ola's ./conifgure runs the
host Python. This is doomed to fail, as google.protobuf is installed
in target/ and not in host/
Since our dependencies ensures that google.protobuf is indeed installed
before we attempt to configure and build ola, we can just ditch the
test altogether.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORIN [Tue, 7 Jan 2014 22:46:08 +0000 (23:46 +0100)]
manual: add section about dealing efficiently with big image files
As reported by Ryan, it is not well-known that most tools can deal
efficiently with big sparse files.
Add a section in the manual about this, with tar and cp used as
examples, and a hinting to the man pages for the others.
Reported-by: Ryan Barnett <rjbarnet@rockwellcollins.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Ryan Barnett <rjbarnet@rockwellcollins.com>
Cc: Peter Korsgaard <jacmet@uclibc.org>
Cc: Thomas De Schampheleire <patrickdepinguin@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORIN [Tue, 7 Jan 2014 22:46:06 +0000 (23:46 +0100)]
package/tzdata: install a default localtime
Add an option to install a default localtime.
since tzdata only makes sense for (e)glibc, we don't care
that we install timezone files that uClibc can't understand.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORIN [Tue, 7 Jan 2014 22:46:05 +0000 (23:46 +0100)]
toolchain/external: fix wrapper by not passing conflicting flags
In our wrapper, we forcibly add the -march=, -mcpu= and-mtune= flags
to the actual compiler, this in an attempt to always generate correct
and optimised code for the target.
But in some cases, the caller knows better than we do, and passes its
own set, or subset of those flags. In this case, some may conflict with
the ones we pass. The most prominent offender being the Linux kernel.
For example, on the ARM Raspberry Pi, the Linux kernel will set the
-march=armv6 flag and no -mcpu= flag, but we pass -mcpu=arm1176jzf-s,
which conflicts:
drivers/scsi/scsi_trace.c:1:0: warning: switch -mcpu=arm1176jzf-s
conflicts with -march=armv6 switch
(and so for all the files the kernel compiles, pretty messy)
(note: arm1176jzf-s is not an armv6, it is an armv6zk. Yeah...)
To avoid this situation, we scan our commandline for any occurence of
the possibly conflicting flags. If none is found, then we add our owns.
If any is found, then we don't add any of our owns.
The idea behind this is that we trust the caller to know better than
we do what it is doing. Since the biggest, and sole so far, offender
is the Linux kernel, then this is a rather safe bet.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Peter Korsgaard <jacmet@uclibc.org>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORIN [Tue, 7 Jan 2014 22:46:04 +0000 (23:46 +0100)]
Makefile: support running graph-depends from out-of-tree
Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Julien Boibessot [Mon, 6 Jan 2014 21:43:02 +0000 (22:43 +0100)]
qt4: allow separate build/installation of demos and examples
Signed-off-by: Jeremie Scheer <jeremie.scheer@armadeus.com>
Signed-off-by: Julien Boibessot <julien.boibessot@armadeus.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Thu, 9 Jan 2014 15:26:03 +0000 (16:26 +0100)]
busybox: add upstream 1.22.0 fixes
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Vicente Olivert Riera [Thu, 9 Jan 2014 11:57:33 +0000 (11:57 +0000)]
sdl: Fix compilation with libX11 >= 1.5.99.902
Applying an upstream patch to fix a compilation error with versions of
libX11 since 1.5.99.902. This patch modifies configure.in so we need to
run autogen.sh to make it working correctly. Running autoreconf will
fail because SDL uses bit tricky automake/autoconf configuration.
Upstream patch URL:
http://hg.libsdl.org/SDL/rev/
91ad7b43317a
Fixes:
http://autobuild.buildroot.net/results/bf8/
bf83466a7bbb0635d97fe279a18778d92f20bea2/
[Peter: add comment why we're doing this, add needed dependencies]
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Vicente Olivert Riera [Thu, 9 Jan 2014 11:57:32 +0000 (11:57 +0000)]
sdl: rename patches to add sequence numbers
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Thu, 9 Jan 2014 12:12:29 +0000 (09:12 -0300)]
grep: enable optional pcre integration
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
eric.le.bihan.dev@free.fr [Tue, 7 Jan 2014 10:29:21 +0000 (11:29 +0100)]
network-manager: bump to version 0.9.8.2
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
eric.le.bihan.dev@free.fr [Tue, 7 Jan 2014 10:29:20 +0000 (11:29 +0100)]
network-manager: fix DHCP clients detection.
If either dhclient or dhcpcd are selected, network-manager is now
configured with the proper paths.
This allows 'dhcp=dhclient' or 'dhcp=dhcpcd' to be set in
/etc/NetworkManager/NetworkManager.conf.
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
eric.le.bihan.dev@free.fr [Tue, 7 Jan 2014 10:29:19 +0000 (11:29 +0100)]
dhcpcd: install dhcpcd as /usr/sbin/dhcpcd.
GNU/Linux distributions usually install dhcpcd in /usr/sbin.
NetworkManager will look for it in this directory.
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Thu, 9 Jan 2014 02:08:29 +0000 (10:08 +0800)]
cryptsetup: fix build error after bump version
Fixes:
http://autobuild.buildroot.net/results/9ca/
9cad1cf49ee6b5c58d8260ee33beef2e6c1ada4d/
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Thu, 9 Jan 2014 10:23:56 +0000 (11:23 +0100)]
libfreefare: examples need to link with zlib for openssl when static linking
Fixes http://autobuild.buildroot.net/results/f09/
f09d515f0e7b6d78010f1ce624336ceaef624989/
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Anton Blanchard [Mon, 2 Dec 2013 06:33:37 +0000 (17:33 +1100)]
strace: Fix build issue with duplicate ptrace_peeksiginfo_args definition
Backport a patch from upstream to fix a conflict between glibc
headers and recent kernel headers (v3.10 or newer).
Signed-off-by: Anton Blanchard <anton@samba.org>
Acked-by: Spenser Gilliland <spenser@gillilanding.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Simon Dawson [Wed, 8 Jan 2014 08:47:54 +0000 (08:47 +0000)]
python-nfc: bump version
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Naumann Andreas [Wed, 8 Jan 2014 16:05:08 +0000 (17:05 +0100)]
evemu: new package
[Peter: don't try to generate manpages even if host has asciidoc]
Signed-off-by: Andreas Naumann <anaumann@ultratronik.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Francois Perrad [Wed, 8 Jan 2014 12:27:27 +0000 (13:27 +0100)]
perl-cross: workaround with PERL5LIB no longer needed
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Francois Perrad [Wed, 8 Jan 2014 12:27:26 +0000 (13:27 +0100)]
perl: bump to version 5.18.2
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Frank Hunleth [Wed, 8 Jan 2014 14:16:09 +0000 (09:16 -0500)]
libdmtx: add license information
Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Jeremy Rosen [Wed, 8 Jan 2014 13:48:33 +0000 (14:48 +0100)]
linux: force inotify kernel option when udev is used as dev handler
[Peter: drop unneeded devtmpfs handling]
Signed-off-by: Jérémy Rosen <jeremy.rosen@openwide.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Simon Dawson [Wed, 8 Jan 2014 13:37:56 +0000 (13:37 +0000)]
libnfc: bump version
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Wed, 8 Jan 2014 18:25:24 +0000 (19:25 +0100)]
xorg: Bump xlib_libXfont version to 1.4.7
CVE-2013-6462: unlimited sscanf overflows stack buffer in bdfReadCharacters()
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Wed, 8 Jan 2014 16:16:24 +0000 (17:16 +0100)]
docs.html: add links to nightly build of manual as well
The html/pdf/text version of the manual is regenerated from current
git head every 6 hours.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Wed, 8 Jan 2014 16:12:04 +0000 (17:12 +0100)]
Update copyright year
Happy new year!
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Wed, 8 Jan 2014 08:00:11 +0000 (09:00 +0100)]
minidlna: fix static linking
The configure script / Makefile forgets to link with some of the dependent
libraries breaking static linking, so help it along.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Fri, 3 Jan 2014 20:20:45 +0000 (21:20 +0100)]
minidlna: bump version to 1.1.1
- remove all patches needed for pre-autotools minidlna release
- convert .mk file to autotools-package
- disable broken static build
- compile-tested only with ffmpeg 1.2.4 (see other patch)
[Peter: fix license filename]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Jeremy Rosen [Tue, 7 Jan 2014 10:51:09 +0000 (11:51 +0100)]
udev: mention dependancy on inotify
[Peter: wrap help text]
Signed-off-by: Jérémy Rosen <jeremy.rosen@openwide.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Mon, 6 Jan 2014 20:40:11 +0000 (21:40 +0100)]
xorg: Bump xlib_libdmx to version 1.1.3
thanks to Jerzy Grzegorek for the hint
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Mon, 6 Jan 2014 20:40:10 +0000 (21:40 +0100)]
xorg: Bump xlib_libXxf86dga to version 1.1.4
- remove patches applied upstream
thanks to Jerzy Grzegorek for the hint
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Mon, 6 Jan 2014 20:40:09 +0000 (21:40 +0100)]
xorg: Bump xlib_libXv to version 1.0.10
thanks to Jerzy Grzegorek for the hint
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Mon, 6 Jan 2014 20:40:08 +0000 (21:40 +0100)]
xorg: Bump xlib_libXres to version 1.0.7
thanks to Jerzy Grzegorek for the hint
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Mon, 6 Jan 2014 20:40:07 +0000 (21:40 +0100)]
xorg: Bump xlib_libXpm to version 3.5.11
thanks to Jerzy Grzegorek for the hint
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Mon, 6 Jan 2014 20:40:06 +0000 (21:40 +0100)]
xorg: Bump xlib_libXcursor to version 1.1.14
thanks to Jerzy Grzegorek for the hint
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Mon, 6 Jan 2014 20:40:05 +0000 (21:40 +0100)]
xorg: Bump xlib_libXaw to version 1.0.12
thanks to Jerzy Grzegorek for the hint
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Mon, 6 Jan 2014 20:40:04 +0000 (21:40 +0100)]
xorg: Bump xlib_libFS to version 1.0.5
thanks to Jerzy Grzegorek for the hint
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Tue, 7 Jan 2014 12:55:26 +0000 (09:55 -0300)]
openssl: bump to version 1.0.1f
Fixes CVE-2013-4343, CVE-2013-6450 and the previously patched
CVE-2013-6449.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Wed, 4 Dec 2013 21:11:00 +0000 (22:11 +0100)]
grub: bump to 0.97-67
Bump to a more recent version of the Debian patches for grub legacy,
that fix an incorrect build with gcc 4.6.
Fixes #6092 and #2629.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:34 +0000 (14:38 +0100)]
xorg: Bump xdriver_xf86-video-intel version to 2.99.907
- enable sna support by default, disable unneeded stuff
ported from OpenELEC:
https://github.com/OpenELEC/OpenELEC.tv/blob/master/packages/x11/driver/xf86-video-intel/package.mk
[Peter: drop Xtst dependency]
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Julien Boibessot [Mon, 6 Jan 2014 11:54:06 +0000 (12:54 +0100)]
Add LBreakout2 package (SDL game)
[Peter: needs gettext with uClibc+locale]
Signed-off-by: Julien Boibessot <julien.boibessot@armadeus.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 08:51:10 +0000 (09:51 +0100)]
transmission: Fix line feeds in patch file
Upstream code has DOS line endings...
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Mon, 6 Jan 2014 13:16:20 +0000 (14:16 +0100)]
libxcb: re-disable building documentation for the host
Fixes http://autobuild.buildroot.net/results/98f/
98f8dd2d1a9f8fac3024caf5aa0ca54fcf320389/
Commit
862e1221d (Bump xcb-proto & libxcb version to 1.10) accidently
dropped the --disable-build-docs configure arguments for the host variant,
which in the best case slows down the build for no use, and on certain
hosts breaks the build as doxygen runs out of memory.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Mon, 6 Jan 2014 10:27:03 +0000 (11:27 +0100)]
xkeyboard-config: disable 'runtime deps as build time deps'
Fixes http://autobuild.buildroot.net/results/f11/
f11687ae661f9d3570c55a9d62a7822e667ad9ad/
xkeyboard-config has runtime dependencies (when using X11) on xproto and
libX11, and by default checks at build time if they are available.
Disable this check as it doesn't apply for wayland and the needed deps are
taken care of by BR for X11.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORIN [Sun, 5 Jan 2014 22:56:18 +0000 (23:56 +0100)]
fs/ext2: fix generation of ext4 filesystems
cset
7a58a4e (e2fsprogs: bump to version 1.42.9) broke the generation
of ext4 filesystems.
This is because, in ext4, some metadata are dependent on the UUID.
If changing the UUID of an ext4 filesystem, tune2fs now exits with
exit-code 1, and prints a message to run fsck, to avoid trashing the
filesystem.
This condition is of utmost importance on a mounted filesysten (which
is not our case) to avoid corruption (yes, it is possible to change
the UUID of a mounted filesystem).
But the error is not valid for us, since we are working on an unmonted
filesystem image in the first place.
Since we change the UUID after we convert the filesystem (to ext4),
tune2fs just bails out.
We can not just ignore the exit code of tune2fs, since we still want
to catch any other failure.
It turns out that, changing the UUID before converting the filesystem
is just the way to go.
Fixes #6752.
Reported-by: Daniel Mentz <daniel@exxm.de>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Daniel Mentz <daniel@exxm.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Sun, 5 Jan 2014 19:00:39 +0000 (16:00 -0300)]
dbus-cpp: fix cross build for tools when expat is missing
dbus-c++ tools use CXX_FOR_BUILD to build in cross scenarios, however
they don't use CXXFLAGS_FOR_BUILD nor LDFLAGS_FOR_BUILD thus breaking
when there aren't any expat devel files in the default PATHs (build
host). Fixes:
http://autobuild.buildroot.net/results/44f/
44fc2cab2b60aa82460bb46b1035ddda115af750/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:39:04 +0000 (14:39 +0100)]
xorg: Bump xutil_util-macros version to 1.18.0
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:39:03 +0000 (14:39 +0100)]
xorg: Bump xutil_makedepend version to 1.0.5
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:35 +0000 (14:38 +0100)]
xorg: Bump xkeyboard-config version to 2.10.1
[Peter: drop uneeded extra dependencies]
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:55 +0000 (14:38 +0100)]
xorg: Bump xlib_xtrans version to 1.3.2
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:54 +0000 (14:38 +0100)]
xorg: Bump xlib_libXxf86vm version to 1.1.3
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:53 +0000 (14:38 +0100)]
xorg: Bump xlib_libXtst version to 1.2.2
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:52 +0000 (14:38 +0100)]
xorg: Bump xlib_libXt version to 1.1.4
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:51 +0000 (14:38 +0100)]
xorg: Bump xlib_libXrender version to 0.9.8
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:48 +0000 (14:38 +0100)]
xorg: Bump xlib_libXmu version to 1.1.2
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:47 +0000 (14:38 +0100)]
xorg: Bump xlib_libXinerama version to 1.1.3
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:45 +0000 (14:38 +0100)]
xorg: Bump xlib_libXfont version to 1.4.6
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:42 +0000 (14:38 +0100)]
xorg: Bump xlib_libXdamage version to 1.1.4
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:41 +0000 (14:38 +0100)]
xorg: Bump xlib_libXcomposite version to 0.4.4
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:40 +0000 (14:38 +0100)]
xorg: Bump xlib_libXau version to 1.0.8
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:39 +0000 (14:38 +0100)]
xorg: Bump xlib_libX11 version to 1.6.2
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:38 +0000 (14:38 +0100)]
xorg: Bump xlib_libSM version to 1.2.2
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:37 +0000 (14:38 +0100)]
xorg: Bump xlib_libpciaccess version to 0.13.2
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:36 +0000 (14:38 +0100)]
xorg: Bump xlib_libfontenc version to 1.1.2
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:39:00 +0000 (14:39 +0100)]
xorg: Bump xproto_videoproto version to 2.3.2
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:57 +0000 (14:38 +0100)]
xorg: Bump xproto_glproto version to 1.4.17
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:56 +0000 (14:38 +0100)]
xorg: Bump xproto_dri2proto version to 2.8
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:46 +0000 (14:38 +0100)]
xorg: Bump xlib_libXi version to 1.7.2
[Peter: needs libXfixes, cleanup dependency list (white space)]
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:58 +0000 (14:38 +0100)]
xorg: Bump xproto_inputproto version to 2.3
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:44 +0000 (14:38 +0100)]
xorg: Bump xlib_libXfixes version to 5.0.1
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:39:02 +0000 (14:39 +0100)]
xorg: Bump xproto_xproto version to 7.0.25
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:43 +0000 (14:38 +0100)]
xorg: Bump xlib_libXext version to 1.3.2
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:39:01 +0000 (14:39 +0100)]
xorg: Bump xproto_xextproto version to 7.3.0
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:33 +0000 (14:38 +0100)]
xorg: Bump xapp_xrandr version to 1.4.1
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:50 +0000 (14:38 +0100)]
xorg: Bump xlib_libXrandr version to 1.4.2
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:59 +0000 (14:38 +0100)]
xorg: Bump xproto_randrproto version to 1.4.0
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Sun, 5 Jan 2014 20:50:02 +0000 (21:50 +0100)]
xapp_xdpyinfo: fix dependencies
Most of the dependencies listed were optional or only indirectly needed
(E.G. the xproto ones), so don't select them.
Further more, the optional xcomposite and xinerama dependencies were missing.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:31 +0000 (14:38 +0100)]
xorg: Bump xcb-proto & libxcb version to 1.10
These have to be bumped together as new libxcb requires new xcb-proto, and
old libxcb doesn't build with new xcb-proto.
[Peter: fixup xcb-proto.pc instead of playing tricks with --define-variable]
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Sat, 4 Jan 2014 13:38:30 +0000 (14:38 +0100)]
xorg: New package xproto_presentproto
[Peter: fix license file, add host-pkgconf / xutil_util-macros dependencies]
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Sun, 5 Jan 2014 11:01:35 +0000 (08:01 -0300)]
tn5250: needs mmu
Fixes:
http://autobuild.buildroot.net/results/02c/
02cedc329c355255e9f9b3b87aa2777de321d1a4/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Sun, 5 Jan 2014 10:56:13 +0000 (11:56 +0100)]
gst1-plugins-bad: bump version
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Sun, 5 Jan 2014 10:54:25 +0000 (11:54 +0100)]
gst1-plugins-ugly: bump version
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Sun, 5 Jan 2014 10:52:36 +0000 (11:52 +0100)]
gst1-plugins-good: bump version
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Sun, 5 Jan 2014 10:51:01 +0000 (11:51 +0100)]
gst1-plugins-base: bump version
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Sun, 5 Jan 2014 10:50:10 +0000 (11:50 +0100)]
gstreamer1: bump version
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Thu, 26 Dec 2013 15:00:26 +0000 (12:00 -0300)]
dbus-cpp: new package
D-Bus C++ bindings, closes bug #65.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Baruch Siach [Sun, 5 Jan 2014 09:06:00 +0000 (11:06 +0200)]
libpfm4: disable when pthreads barrier support in missing
The old linuxthreads pthreads implementation does not support barriers.
Disable libpfm4 for arches that don't have either NPTL or new linuxthreads
pthreads implementation.
Fixes
http://autobuild.buildroot.net/results/ea5/
ea594807b891cbe1f0eddad7f89d34af160636c4/.
Also, add missing comment arches dependency.
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Jérôme Pouiller [Thu, 2 Jan 2014 16:34:40 +0000 (17:34 +0100)]
valgrind: bump to version 3.9.0
Drop some patches:
- glibc 2.17 and 2.18 are now supported by upstream
- coregrind/link_tool_exe_linux.in has been reworked and should now
support ccache
[Peter: drop unneeded AUTORECONF as configure.in no longer gets patched]
Signed-off-by: Jérôme Pouiller <jezz@sysmic.org>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORIN [Sat, 4 Jan 2014 16:25:28 +0000 (17:25 +0100)]
manual: use current date/time for 'generated on'
Currently, the manual uses the last modification date and time of
manual.txt in the generated manual.
This is confusing, especially for long-checked-out repositories where
the top-level manual.txt has not changed since the check out. Moreover,
the manual explicitly states 'generated on', which is confusing at best.
Use the current date and time instead.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Samuel Martin <s.martin49@gmail.com>
Acked-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Sat, 4 Jan 2014 12:11:45 +0000 (09:11 -0300)]
grep: bump to version 2.16
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Sat, 4 Jan 2014 12:11:44 +0000 (09:11 -0300)]
iftop: bump to version 1.0pre3
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Sat, 4 Jan 2014 12:11:43 +0000 (09:11 -0300)]
haveged: bump to version 1.8
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Sat, 4 Jan 2014 12:11:42 +0000 (09:11 -0300)]
squid: bump to version 3.4.2
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Simon Dawson [Sat, 4 Jan 2014 11:08:36 +0000 (11:08 +0000)]
gpsd: bump git snapshot
The 3.11 release of gpsd still hasn't materialised. For now, bump the Git
snapshot again, removing local patches that have now been merged upstream.
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>