buildroot.git
10 years agouclibc: enable parallel building of libraries
Alexey Brodkin [Fri, 27 Jun 2014 16:26:00 +0000 (20:26 +0400)]
uclibc: enable parallel building of libraries

The use of MAKE1 for uClibc dates back 10 years:

commit 8e5fb3fb4ab09b4dc04fe7cb3f7becce6514117b
Author: Eric Andersen <andersen@codepoet.org>
Date:   Sat Dec 11 13:01:10 2004 +0000

    Add initial BR2_JLEVEL support, with some exceptions for apps that
    have broken 'make -j' support

Since that time there were lots of improvements in uClibc that seem to allow
parallel building of libs finally.

Unfortunately uClibc tests have dependences on previously built files,
that's why tests left with MAKE1.

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Anton Kolesov <akolesov@synopsys.com>
Cc: Peter Korsgaard <peter@korsgaard.com>
Cc: Gustavo Zacarias <gustavo@zacarias.com.ar>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoicu: fix usage of libicudata on ARM EABIhf
Maxime Hadjinlian [Thu, 19 Jun 2014 16:13:36 +0000 (18:13 +0200)]
icu: fix usage of libicudata on ARM EABIhf

The libicudata library was linked as a "data only" library using the
-nostdlib -nodefaultlibs flags, but this causes problems when using
the library on ARM EABIhf systems. Removing those flags fixes the
problem, and is the solution used by Debian, see
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=653457 for all the
details.

[Thomas: fix commit log and title, add more details to the patch
description.]

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@devialet.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agodevmem2: fix output when _FILE_OFFSET_BITS=64
Colin Didier [Thu, 19 Jun 2014 16:13:37 +0000 (18:13 +0200)]
devmem2: fix output when _FILE_OFFSET_BITS=64

When built with _FILE_OFFSET_BITS=64, off_t becomes an long long int
and was printed as an unsigned int which lead to a garbled output.

Signed-off-by: Colin Didier <colin.didier@devialet.com>
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@devialet.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopkgconf: don't double prefix lib/include paths with sysroot
Thomas De Schampheleire [Sat, 21 Jun 2014 15:01:49 +0000 (17:01 +0200)]
pkgconf: don't double prefix lib/include paths with sysroot

A .pc file could contain statements of the form:
    -L/usr/lib
but also:
    -L/path/to/sysroot/usr/lib

The latter form typically occurs when the dependency was configured with a
statement like --with-xxx=$(STAGING_DIR)/usr.

pkgconf only expects the first form, and prefixes it with the specified
sysroot. However, this strategy would result in a double sysroot in the
second case:
    -L/path/to/sysroot/path/to/sysroot/usr/lib

This patch checks for the presence of the sysroot in the specified -L or -I
directives, and only adds the sysroot when not already present.

Partially fixes bug #5750 (https://bugs.busybox.net/show_bug.cgi?id=5750)

Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoqt5: support buildroot being located in /usr
Thomas De Schampheleire [Sat, 21 Jun 2014 15:01:48 +0000 (17:01 +0200)]
qt5: support buildroot being located in /usr

qt5 performs sed replacements of /usr to $(STAGING_DIR)/usr in .la files.
However, if buildroot itself is located in /usr, then STAGING_DIR also
starts with /usr, and naive replacements of '/usr' can result in paths of
the form:
    /usr/buildroot/.../sysroot/usr/buildroot/.../sysroot/...

This patch makes the replacements more careful, by first replacing the known
paths BASE_DIR and STAGING_DIR to tokens, then performing the actual
replacement, and finally replacing the tokens with the corresponding paths.

Partially fixes bug #5750 (https://bugs.busybox.net/show_bug.cgi?id=5750)

Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoinfra: support buildroot being located in /usr
Thomas De Schampheleire [Sat, 21 Jun 2014 15:01:47 +0000 (17:01 +0200)]
infra: support buildroot being located in /usr

pkg-generic and pkg-autotools both perform sed replacements of /usr to
$(STAGING_DIR)/usr, in .pc and .la files respectively. However, if buildroot
itself is located in /usr, then STAGING_DIR also starts with /usr, and naive
replacements of '/usr' can result in paths of the form:
    /usr/buildroot/.../sysroot/usr/buildroot/.../sysroot/...

This patch makes the replacements more careful, by first replacing the known
paths BASE_DIR and STAGING_DIR to tokens, then performing the actual
replacement, and finally replacing the tokens with the corresponding paths.

Additionally it removes the unnecessary making of a backup copy in
pkg-autotools.

Partially fixes bug #5750 (https://bugs.busybox.net/show_bug.cgi?id=5750)

[Thomas: improve pkg-autotools.mk by including the explanation comment
proposed by Arnout.]

Partially-based-on-a-patch-from: Ben Stoltz <benstoltz@gmail.com>
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agogoogle-breakpad: new package
Pascal Huerst [Wed, 25 Jun 2014 13:16:13 +0000 (15:16 +0200)]
google-breakpad: new package

[Thomas:
 - Introduce a BR2_PACKAGE_GOOGLE_BREAKPAD_ARCH_SUPPORTS Config.in
   symbol to be able to easily propagate the architecture
   dependencies.
 - Wrap the help text, add some more details as suggested by Arnout.
 - Propagate the architecture dependencies to the comment, as
   suggested by Arnout.
 - Remove the dependency of google-breakpad on host-google-breakpad,
   since it's not needed.
 - Add <pkg>_TARGET = NO, because google-breakpad only installs a
   static library, so installation to staging is sufficient.
 - Reorder autotools-package/host-autotools-package invocations, as
   suggested by Arnout.]

Signed-off-by: Pascal Huerst <pascal.huerst@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agolzo: security bump to version 2.07
Baruch Siach [Sun, 29 Jun 2014 04:47:51 +0000 (07:47 +0300)]
lzo: security bump to version 2.07

Fixes CVE-2014-4607.

[Thomas: fix small typo in comment.]

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/pifmrds: new package
Eric Limpens [Sat, 21 Jun 2014 15:58:20 +0000 (17:58 +0200)]
package/pifmrds: new package

We needs three little patches:
  - one to make the existing Makefile cross-compile friendly
  - one to pass the LDFLAGS at link time
  - one to add a missing include

[Thomas: add missing 'depends on BR2_arm' in comment, renumber patches
to start at 0001 and not 0000.]

Signed-off-by: Eric Limpens <limpens@gmail.com>
[yann.morin.1998@free.fr: add .mk header; cleanup and split the
 Makefile patch, add missing include; add comments to all patches]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agosystemd: rework network/tty units installation
Eric Le Bihan [Mon, 23 Jun 2014 09:52:06 +0000 (11:52 +0200)]
systemd: rework network/tty units installation

The installation of the network.service and serial-getty.service unit
files are now performed via the <pkg>_INIT_SYSTEMD mechanism instead of
an installation hook.

Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoconfigs: add defconfig for the Atmel SAMA5D3 Xplained board
Thomas Petazzoni [Sun, 15 Jun 2014 13:33:49 +0000 (15:33 +0200)]
configs: add defconfig for the Atmel SAMA5D3 Xplained board

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoat91bootstrap3: bump to v3.6.2
Thomas Petazzoni [Sun, 15 Jun 2014 13:33:48 +0000 (15:33 +0200)]
at91bootstrap3: bump to v3.6.2

In preparation to add support for the SAMA5D3 Xplained board, this
commit bumps the version of the at91bootstrap3 bootloader to
v3.6.2. While doing this, it also:

 - Allows this bootloader on Cortex-A5 based platforms, since SAMA5D3
   are based on Cortex-A5.

 - Removes a patch that no longer applies, and which has been taken
   into account in at91bootstrap3 upstream.

 - Switches to the upstream Github location as the source.

 - Updates the installation commands to match upstream changes in the
   installation process.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agograph-depends: fix when $(O) is a relative path
Arnout Vandecappelle [Wed, 18 Jun 2014 22:10:24 +0000 (00:10 +0200)]
graph-depends: fix when $(O) is a relative path

The graph-depends commands cd into the CONFIG_DIR and run the script
from there. However, this means that when $(O) is a relative path, it
will no longer be correct.  Therefore, use $(BASE_DIR) instead of $(O).

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoperl-xml-libxml: new package
Francois Perrad [Sun, 29 Jun 2014 08:49:34 +0000 (10:49 +0200)]
perl-xml-libxml: new package

[Thomas: split from the original patch of Francois.]

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoperl-xml-sax: new package
Francois Perrad [Sun, 29 Jun 2014 08:49:22 +0000 (10:49 +0200)]
perl-xml-sax: new package

[Thomas: split from the original patch of Francois.]

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoperl-xml-sax-base: new package
Francois Perrad [Sun, 29 Jun 2014 08:48:55 +0000 (10:48 +0200)]
perl-xml-sax-base: new package

[Thomas: split from the original patch of Francois.]

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoperl-xml-namespacesupport: new package
Francois Perrad [Sun, 29 Jun 2014 08:48:24 +0000 (10:48 +0200)]
perl-xml-namespacesupport: new package

[Thomas: split from the original patch of Francois.]

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoperl-net-ssleay: new package
Francois Perrad [Mon, 23 Jun 2014 18:14:45 +0000 (20:14 +0200)]
perl-net-ssleay: new package

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agosupport/script/cpan: improve Makefile generation
Francois Perrad [Mon, 23 Jun 2014 18:14:44 +0000 (20:14 +0200)]
support/script/cpan: improve Makefile generation

- remove trailing space after perl when it's the only dependency
- license: substitution of perl name by BR name
- add a tabulation before source

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agograph-build-time: support python3
Vivien Didelot [Mon, 23 Jun 2014 14:23:37 +0000 (10:23 -0400)]
graph-build-time: support python3

This patch is the result of 2to3.

Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agograph-depends: remove unnecessary redirect of stderr
Arnout Vandecappelle [Mon, 23 Jun 2014 20:11:24 +0000 (22:11 +0200)]
graph-depends: remove unnecessary redirect of stderr

It hides any error messages reported by make.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: Samuel Martin <s.martin49@gmail.com>
Tested-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agograph-depends: support calling from recursive make
Arnout Vandecappelle [Mon, 23 Jun 2014 20:11:23 +0000 (22:11 +0200)]
graph-depends: support calling from recursive make

The graph-depends script calls make. If the outer make was called
recursively, or if it was called with '-C <somedir>', then the
environment will contain "MAKEFLAGS=w --". Therefore, the recursive
make prints 'Entering' and 'Leaving' messages, which clobbers the
output for dot.

To avoid this, add "--no-print-directory" to the recursive make
arguments. Since we require GNU make 3.81, we can be sure that this
option is available.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopkg-download: fix svn download for deleted path
Ryan Barnett [Thu, 26 Jun 2014 13:17:39 +0000 (08:17 -0500)]
pkg-download: fix svn download for deleted path

If a SVN path has been deleted in a future revision, downloading a
package's source will fail using 'svn checkout -r'. Fix using
URL@REV syntax since the SVN command will then verify the path at the
specified version. Without using the URL@REV syntax, the SVN command
will attempt to verify the path exists on the the HEAD revision before
checking out the path at the specified revision.

Error seen if SVN path has been deleted in HEAD using svn checkout -r:
  svn: E160013: '/svn/path/' path not found

Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agodhcpcd: refer to the actual homepage
Baruch Siach [Thu, 26 Jun 2014 18:10:19 +0000 (21:10 +0300)]
dhcpcd: refer to the actual homepage

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agophp: security bump to version 5.5.14
Gustavo Zacarias [Fri, 27 Jun 2014 13:17:50 +0000 (10:17 -0300)]
php: security bump to version 5.5.14

Fixes:

CVE-2014-3981 - insecure temporary file use in the configure script.
CVE-2014-0207 - cdf_read_short_sector insufficient boundary check.
CVE-2014-3478 - mconvert incorrect handling of truncated pascal string
size.
CVE-2014-3479 - cdf_check_stream_offset insufficient boundary check.
CVE-2014-3480 - cdf_count_chain insufficient boundary check.
CVE-2014-3487 - cdf_read_property_info insufficient boundary check.
CVE-2014-4049 - Fix potential segfault in dns_get_record().
CVE-2014-3515 - unserialize() SPL ArrayObject / SPLObjectStorage Type
Confusion.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoopkg: bump to version 0.2.2 and update upstream url
Ivan Sergeev [Fri, 27 Jun 2014 19:40:35 +0000 (12:40 -0700)]
opkg: bump to version 0.2.2 and update upstream url

Signed-off-by: Ivan Sergeev <vsergeev@kumunetworks.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agomxs-bootlets: add license information
Gustavo Zacarias [Sat, 28 Jun 2014 11:38:44 +0000 (08:38 -0300)]
mxs-bootlets: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoradvd: bump to version 1.14
Gustavo Zacarias [Sat, 28 Jun 2014 10:33:52 +0000 (07:33 -0300)]
radvd: bump to version 1.14

This bump reverts e92fb1f90f1b51cd111105d86c058fdca6f3434a (radvd: fix
build against older glibc) since Gustavo has contributed a fix
upstream, which was merged in the 1.14 release of radvd.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoffmpeg: bump to version 1.2.7
Gustavo Zacarias [Sat, 28 Jun 2014 00:58:32 +0000 (21:58 -0300)]
ffmpeg: bump to version 1.2.7

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoliboauth: bump to version 1.0.3
Gustavo Zacarias [Fri, 27 Jun 2014 20:09:26 +0000 (17:09 -0300)]
liboauth: bump to version 1.0.3

Add license information as well.
It could be "or GPL" as well but since we link to openssl that's a murky path
as stated in the README so just leave it at MIT.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agolibndp: bump to 1.3
Yegor Yefremov [Fri, 27 Jun 2014 18:42:09 +0000 (20:42 +0200)]
libndp: bump to 1.3

Remove upstreamed patch.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agojquery-validation: bump to version 1.12.0
Gustavo Zacarias [Fri, 27 Jun 2014 21:19:37 +0000 (18:19 -0300)]
jquery-validation: bump to version 1.12.0

Switch homepage and upstream source, add license file (just mentions
it's under MIT, better than none). Also fixes:
http://autobuild.buildroot.net/results/a2e/a2ed2efe09b12612247a21c5fa3c129f58c9afd8/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agohaserl: add preprocessed lualib file so host-lua isn't needed
Max Filippov [Thu, 26 Jun 2014 07:03:15 +0000 (11:03 +0400)]
haserl: add preprocessed lualib file so host-lua isn't needed

Updated for haserl-0.9.33

Fixes:
  http://autobuild.buildroot.net/results/663/663daf3d61c12b68dbe5ff42494a3d0d45dfb832/

[Peter: drop unused 0.9.30 patch, host-lua dependency and lua2c LDFLAGS handling]
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibtasn1: bump to version 4.0
Gustavo Zacarias [Fri, 27 Jun 2014 11:00:24 +0000 (08:00 -0300)]
libtasn1: bump to version 4.0

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoradvd: fix build against older glibc
Baruch Siach [Fri, 27 Jun 2014 07:30:30 +0000 (10:30 +0300)]
radvd: fix build against older glibc

clock_gettime() requires -lrt when linking against glibc older than 2.17.

Fixes:
http://autobuild.buildroot.net/results/e07/e07dd9a82ae4c8778b6901b9bd777f5affb9293a/

[Peter: add comment in .mk as well]
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoqt5: bump to 5.3.1
Fatih Aşıcı [Fri, 27 Jun 2014 06:19:17 +0000 (09:19 +0300)]
qt5: bump to 5.3.1

Remove upstreamed patch.

Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolinux: bump default to version 3.15.2
Gustavo Zacarias [Thu, 26 Jun 2014 20:01:44 +0000 (17:01 -0300)]
linux: bump default to version 3.15.2

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolinux-headers: bump 3.{4, 10, 14, 15}.x series
Gustavo Zacarias [Thu, 26 Jun 2014 20:01:43 +0000 (17:01 -0300)]
linux-headers: bump 3.{4, 10, 14, 15}.x series

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agobmon: bump to version 3.2
Gustavo Zacarias [Thu, 26 Jun 2014 18:06:39 +0000 (15:06 -0300)]
bmon: bump to version 3.2

And add license information, homepage and switch upstream source.

[Peter: no longer needs IPv6/mmu, fix static link]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agometacity: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:56:00 +0000 (15:56 -0300)]
metacity: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoti-utils: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:59 +0000 (15:55 -0300)]
ti-utils: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoprotobuf-c: update license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:58 +0000 (15:55 -0300)]
protobuf-c: update license information

[Peter: license is BSD-2c]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agostartup-notification: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:57 +0000 (15:55 -0300)]
startup-notification: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agogptfdisk: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:56 +0000 (15:55 -0300)]
gptfdisk: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agogqview: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:55 +0000 (15:55 -0300)]
gqview: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agofreerdp: fix typo in license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:54 +0000 (15:55 -0300)]
freerdp: fix typo in license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoavrdude: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:53 +0000 (15:55 -0300)]
avrdude: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonbd: update icense information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:52 +0000 (15:55 -0300)]
nbd: update icense information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agox11vnc: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:51 +0000 (15:55 -0300)]
x11vnc: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoxapp_xinit: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:50 +0000 (15:55 -0300)]
xapp_xinit: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agouclibc: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:49 +0000 (15:55 -0300)]
uclibc: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agotransmission: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:48 +0000 (15:55 -0300)]
transmission: add license information

[Peter: also mention openssl exception]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosysprof: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:47 +0000 (15:55 -0300)]
sysprof: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosynergy: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:46 +0000 (15:55 -0300)]
synergy: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agostatserial: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:45 +0000 (15:55 -0300)]
statserial: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosredird: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:44 +0000 (15:55 -0300)]
sredird: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosquashfs: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:43 +0000 (15:55 -0300)]
squashfs: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosocketcand: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:42 +0000 (15:55 -0300)]
socketcand: add license information

[Peter: use socketcand.c as license file]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoshared-mime-info: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:41 +0000 (15:55 -0300)]
shared-mime-info: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosane-backends: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:40 +0000 (15:55 -0300)]
sane-backends: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agorubix: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:39 +0000 (15:55 -0300)]
rubix: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agowhois: add extra libs for libiconv
Gustavo Zacarias [Thu, 26 Jun 2014 10:05:31 +0000 (07:05 -0300)]
whois: add extra libs for libiconv

The main makefile doesn't check/do anything about linking properly, so
add -liconv to LIBS when it's used. Fixes:
http://autobuild.buildroot.net/results/7e5/7e551efacfa16b9e1915748a2f66fd1021d5bb49/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agomusl: bump to version 1.1.3
Gustavo Zacarias [Thu, 26 Jun 2014 01:10:59 +0000 (22:10 -0300)]
musl: bump to version 1.1.3

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibevent: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 22:10:30 +0000 (19:10 -0300)]
libevent: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibfreefare: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 21:59:06 +0000 (18:59 -0300)]
libfreefare: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopython-pygame: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:38 +0000 (15:55 -0300)]
python-pygame: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopython-mad: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:37 +0000 (15:55 -0300)]
python-mad: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopython-dpkt: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:36 +0000 (15:55 -0300)]
python-dpkt: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopython-id3: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:35 +0000 (15:55 -0300)]
python-id3: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoproxychains-ng: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:34 +0000 (15:55 -0300)]
proxychains-ng: add license information

[Peter: strip whitespace]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agocrda: bump to version 3.13
Gustavo Zacarias [Tue, 24 Jun 2014 17:33:10 +0000 (14:33 -0300)]
crda: bump to version 3.13

[Peter: adjust patch to also drop ldconfig call]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopango: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:33 +0000 (15:55 -0300)]
pango: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoopenocd: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:32 +0000 (15:55 -0300)]
openocd: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoopen2300: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:31 +0000 (15:55 -0300)]
open2300: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonetwork-manager: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:30 +0000 (15:55 -0300)]
network-manager: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonetplug: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:29 +0000 (15:55 -0300)]
netplug: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agondisc6: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:28 +0000 (15:55 -0300)]
ndisc6: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonasm: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:27 +0000 (15:55 -0300)]
nasm: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolsuio: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:26 +0000 (15:55 -0300)]
lsuio: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibv4l: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:25 +0000 (15:55 -0300)]
libv4l: add license information

[Peter: fix typo + add libv4l1 clarification file as suggested by Yann]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibsysfs: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:24 +0000 (15:55 -0300)]
libsysfs: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibsvgtiny: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:23 +0000 (15:55 -0300)]
libsvgtiny: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibrsvg: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:22 +0000 (15:55 -0300)]
librsvg: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibraw1394: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:21 +0000 (15:55 -0300)]
libraw1394: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibiqrf: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:20 +0000 (15:55 -0300)]
libiqrf: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibical: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:19 +0000 (15:55 -0300)]
libical: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibhid: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:18 +0000 (15:55 -0300)]
libhid: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibgtk2: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:17 +0000 (15:55 -0300)]
libgtk2: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibglade: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:16 +0000 (15:55 -0300)]
libglade: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibgail: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:15 +0000 (15:55 -0300)]
libgail: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibesmtp: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:12 +0000 (15:55 -0300)]
libesmtp: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibart: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:11 +0000 (15:55 -0300)]
libart: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoleafpad: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:10 +0000 (15:55 -0300)]
leafpad: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agokexec: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:09 +0000 (15:55 -0300)]
kexec: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agogvfs: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 18:55:07 +0000 (15:55 -0300)]
gvfs: add license information

[Peter: fix license files tag]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agogtkperf: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 19:15:24 +0000 (16:15 -0300)]
gtkperf: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoirda-utils: add license information
Gustavo Zacarias [Tue, 24 Jun 2014 19:15:23 +0000 (16:15 -0300)]
irda-utils: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonftables: bump to version 0.3
Gustavo Zacarias [Wed, 25 Jun 2014 19:01:27 +0000 (16:01 -0300)]
nftables: bump to version 0.3

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibnftnl: bump to version 1.0.2
Gustavo Zacarias [Wed, 25 Jun 2014 19:01:26 +0000 (16:01 -0300)]
libnftnl: bump to version 1.0.2

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolinux-headers: bump 3.12.x series
Gustavo Zacarias [Wed, 25 Jun 2014 18:47:48 +0000 (15:47 -0300)]
linux-headers: bump 3.12.x series

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>