buildroot.git
7 years agolibupnpp: needs gcc >= 4.9
Jörg Krause [Wed, 7 Jun 2017 19:25:39 +0000 (21:25 +0200)]
libupnpp: needs gcc >= 4.9

After bumping libupnpp from version 0.15.1 to 0.15.2 compilation fails
for toolchains using GCC 4.7:

```
libupnpp/control/discovery.cxx: In constructor 'UPnPClient::UPnPDeviceDirectory::UPnPDeviceDirectory(time_t)':
libupnpp/control/discovery.cxx:338:5: error: 'yield' is not a member of 'std::this_thread'
```

Before version 0.15.2, libupnpp used sched_yield() which was replaced by
`std::this_thread::yield()` in the new version.

Looking at the `<thread>` header file of the PowerPC toolchain [1] from
the autobuilder shows that `yield()` is only enabled if
`_GLIBCXX_USE_SCHED_YIELD` is defined:

```
    /// yield
    inline void
    yield() noexcept
    { __gthread_yield(); }
```

Note, that `__gthread_yield()` inlines to a call to `sched_yield()`:

```
static inline int
__gthread_yield (void)
{
  return __gthrw_(sched_yield) ();
}
```

This macro is only defined if GCC was built with `--enable-libstdcxx-time`,
which is obviously not the case for the affected toolchains. For GCC 4.7 and
below this option defaults to no, which means `sched_yield()` is not enabled
though it is be available.

The issue was discussed on stackoverflow [2]. In GCC 4.9.0 the issue has
been fixed, by automatically enabling `sched_yield()` on platforms that are
known to support them.

Therefore, we update the dependency to GCC 4.9.

Fixes:
http://autobuild.buildroot.net/results/506/50670d8119b4fbd26585d3d9bd646adb1d904dbe/
http://autobuild.buildroot.net/results/8b0/8b021648a073bde25dd6936ed1ea1e39977bf89b/
http://autobuild.buildroot.net/results/b6d/b6d7437e1cf8cf0b3726395401ac4ebd9af2833b/
http://autobuild.buildroot.net/results/0bf/0bf84f61a72a65a75c5fd0a787680f483cfead26/
.. and more.

[1] http://autobuild.buildroot.org/toolchains/tarballs/powerpc-ctng_e500v2-linux-gnuspe.tar.xz
[2] https://stackoverflow.com/a/12961816

Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 years agosupport/scripts: fix shebang with python
Francois Perrad [Wed, 7 Jun 2017 19:10:26 +0000 (21:10 +0200)]
support/scripts: fix shebang with python

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 years agopackage/xf86-input-tslib: enable static build
Martin Kepplinger [Wed, 7 Jun 2017 14:07:38 +0000 (16:07 +0200)]
package/xf86-input-tslib: enable static build

since tslib now supports static builds the dependency on !BR2_STATIC_LIBS
can be removed from xf86-input-tslib too.

Signed-off-by: Martin Kepplinger <martin.kepplinger@ginzinger.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 years agopackage/tslib: enable statically linked building
Martin Kepplinger [Wed, 7 Jun 2017 07:01:00 +0000 (09:01 +0200)]
package/tslib: enable statically linked building

tslib can be configured to be built statically linked. So let's add this option.

tslib is quite configurable and each module can be selected to be built into
the static build. This configuration includes the hardware independent filter
modules (obviously), and the Linux evdev input module.

This results in a configuration that fully supports multitouch in any
combination.

Signed-off-by: Martin Kepplinger <martin.kepplinger@ginzinger.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 years agolinux-headers: bump 4.{4, 9, 11}.x series
Fabio Estevam [Wed, 7 Jun 2017 15:50:15 +0000 (12:50 -0300)]
linux-headers: bump 4.{4, 9, 11}.x series

Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 years agolinux: bump default version to 4.11.4
Fabio Estevam [Wed, 7 Jun 2017 15:50:14 +0000 (12:50 -0300)]
linux: bump default version to 4.11.4

Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 years agokmod: add patch to fix build failure with old gcc versions
Thomas Petazzoni [Sat, 3 Jun 2017 14:59:30 +0000 (16:59 +0200)]
kmod: add patch to fix build failure with old gcc versions

When building with old gcc versions (such as gcc 4.3), the current
version of kmod fails with:

shared/util.c:52: error: expected identifier or '(' before 'do'
shared/util.c:52: error: expected identifier or '(' before 'while'

This is due to a use of the internal assert_cc() macro outside of a
function, while this macro is defined for old gcc versions in a way that
cannot be used outside functions.

This wasn't noticed by the autobuilders because we don't have such old
target compilers. On the host side, we have some autobuilder instances
with such old gcc versions, but host-kmod is only used by the linux
package, which is never tested by the autobuilders.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 years agopackage/gnuradio: needs boost regex module
Bernd Kuhls [Mon, 5 Jun 2017 15:48:22 +0000 (17:48 +0200)]
package/gnuradio: needs boost regex module

Since
https://git.gnuradio.org/cgit/gnuradio.git/commit/cmake/Modules/GrBoost.cmake?id=27fbbf22e359e8ec4a04399f3dc139f8c25031cb
gnuradio needs the boost regex module.

Fixes
http://autobuild.buildroot.net/results/d71/d71278032c083c2c4b1bf20b81629225f8965c6e/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 years agopackage/libhdhomerun: fix legal-info
Bernd Kuhls [Mon, 5 Jun 2017 15:59:56 +0000 (17:59 +0200)]
package/libhdhomerun: fix legal-info

Fixes
http://autobuild.buildroot.net/results/8ea/8eaa8c4027bca26d5a21da83f67358a43627f1b2/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 years agopackage/ffmpeg: bump version to 3.3.2
Bernd Kuhls [Wed, 7 Jun 2017 04:47:25 +0000 (06:47 +0200)]
package/ffmpeg: bump version to 3.3.2

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 years agolinux-headers: bump 3.2.x series
Bernd Kuhls [Wed, 7 Jun 2017 04:45:40 +0000 (06:45 +0200)]
linux-headers: bump 3.2.x series

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 years agorefpolicy: add ability to set default state.
Adam Duskett [Sat, 20 May 2017 20:41:43 +0000 (16:41 -0400)]
refpolicy: add ability to set default state.

SELinux requires a config file in /etc/selinux which controls the state
of SELinux on the system.

This config file has two options set in it:
SELINUX which set's the state of selinux on boot.
SELINUXTYPE which should equal the name of the policy.  In this case, the
default name is targeted.

This patch adds:
- A choice menu on Config.in that allows the user to select a default
  SELinux state.

- A basic config file that will be installed to
  target/etc/selinux and will set SELINUX= to the selected state.

Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
Acked-by: Matt Weber <matthew.weber@rockwellcollins.com>
[Thomas:
 - rename option to BR2_PACKAGE_REFPOLICY_POLICY_STATE
 - qstrip the variable
 - drop unused REFPOLICY_NAME variable.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agorefpolicy: add ability to specify policy version
Adam Duskett [Sat, 20 May 2017 20:41:42 +0000 (16:41 -0400)]
refpolicy: add ability to specify policy version

Refpolicy by default will build the highest version supported. This may
cause older kernels to not load the policy.

This patch adds a custom policy version string which is defaulted to 30,
which is the highest supported as of today.

Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
Acked-by: Matt Weber <matthew.weber@rockwellcollins.com>
[Thomas:
 - rename option to BR2_PACKAGE_REFPOLICY_POLICY_VERSION
 - use qstrip to remove double quotes]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agorefpolicy: new package
Adam Duskett [Sat, 20 May 2017 20:41:41 +0000 (16:41 -0400)]
refpolicy: new package

The patch is for adding selinux reference policy (refpolicy).
It is a complete SELinux policy that can be used as the system policy
for a variety of systems and used as the basis for creating other policies.

Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
Tested-by: Matt Weber <matthew.weber@rockwellcollins.com>
Acked-by: Matt Weber <matthew.weber@rockwellcollins.com>
[Thomas:
 - add entry to DEVELOPERS file
 - remove redundant dependencies
 - drop unused REFPOLICY_PYINC option
 - use SPDX tag for license
 - minor formatting fixes.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/stella: bump version to 4.7.3
Bernd Kuhls [Mon, 29 May 2017 19:14:29 +0000 (21:14 +0200)]
package/stella: bump version to 4.7.3

Removed patch applied upstream:
https://github.com/stella-emu/stella/commit/be2f6f5b64266f4d68af6a2236bd4b59a7e6638d

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agoimx-uuc: fix start-stop-daemon stop failure
Alexandre Esse [Wed, 31 May 2017 21:40:45 +0000 (23:40 +0200)]
imx-uuc: fix start-stop-daemon stop failure

The daemon service script associated with imx-uuc failed to stop the daemon
since the PID of the process wasn't stored at start time.

Adding -m option allowed to create the uuc.pid file as expected.

Signed-off-by: Alexandre Esse <alexandre.esse.dev@gmail.com>
Reviewed-by: Gary Bisson <gary.bisson@boundarydevices.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agoratpoison: new package
Mario Rugiero [Thu, 1 Jun 2017 14:33:49 +0000 (11:33 -0300)]
ratpoison: new package

Tested with:
nitrogen6sx_defconfig

Signed-off-by: Mario J. Rugiero <mrugiero@gmail.com>
[Thomas:
 - formatting fixes
 - license is GPL-2.0+, not GPL-2.0
 - explicitly disable xft/xkb support]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agocmake: bump version to 3.8.2
Vicente Olivert Riera [Fri, 2 Jun 2017 10:16:41 +0000 (11:16 +0100)]
cmake: bump version to 3.8.2

cmake depends on rhash, but host-cmake doesn't. This is because we use
the bundled dependencies for host-cmake but not for target.

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agorhash: new package
Vicente Olivert Riera [Fri, 2 Jun 2017 10:16:40 +0000 (11:16 +0100)]
rhash: new package

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
[Thomas:
 - fix indentation
 - don't use post install target hook.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agoejabberd: bump to version 17.04
Johan Oudinet [Tue, 6 Jun 2017 14:33:11 +0000 (16:33 +0200)]
ejabberd: bump to version 17.04

There are new dependencies: erlang-p1-jiffy, erlang-p1-oauth2,
erlang-p1-stun, erlang-p1-tls, erlang-p1-utils, erlang-p1-xmpp

as well as two host dependencies on erlang-p1-utils and
erlang-p1-xmpp. Otherwise the compilation via rebar fails.

4 patches have been refreshed and a new patch have been introduced to
tell rebar to use host dependencies instead of trying to download them.
Hopefully this patch could be drop in ejabberd 17.06. Missing SoB in
patches have been added as well.

Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agoerlang-p1-oauth2: New package
Johan Oudinet [Tue, 6 Jun 2017 14:33:10 +0000 (16:33 +0200)]
erlang-p1-oauth2: New package

OAuth2 library for Erlang
https://github.com/processone/p1_oauth2

Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/x11r7/xserver_xorg-server: fix gcc5+ build with version 1.14.7
Bernd Kuhls [Mon, 5 Jun 2017 18:00:44 +0000 (20:00 +0200)]
package/x11r7/xserver_xorg-server: fix gcc5+ build with version 1.14.7

Fixes

sdksyms.c:311:15: error: expected expression before »,« token
     (void *) &,                                                  /* ../../include/os.h:96 */

by backporting an upstream patch, sdksyms.c is generated by
hw/xfree86/sdksyms.sh which is broken when used with gcc5+.

Problem was found while testing
http://patchwork.ozlabs.org/patch/762102/

using this defconfig

BR2_TOOLCHAIN_BUILDROOT_WCHAR=y
BR2_TOOLCHAIN_BUILDROOT_CXX=y
BR2_PACKAGE_XORG7=y
BR2_PACKAGE_XSERVER_XORG_SERVER=y
BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_14=y
BR2_PACKAGE_XDRIVER_XF86_INPUT_TSLIB=y

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/icu: needs host gcc >= 4.8
Bernd Kuhls [Mon, 5 Jun 2017 17:14:42 +0000 (19:14 +0200)]
package/icu: needs host gcc >= 4.8

Fixes
http://autobuild.buildroot.net/results/2b3/2b3a9be1780857db8827ea70df9d8699116a5df7/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/dovecot: bump version to 2.2.30.2
Bernd Kuhls [Tue, 6 Jun 2017 19:48:13 +0000 (21:48 +0200)]
package/dovecot: bump version to 2.2.30.2

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agotoolchain/toolchain-common.in: adjust BR2_TOOLCHAIN_HAS_GCC_BUG_64735 for GCC 7
Jörg Krause [Tue, 6 Jun 2017 19:52:07 +0000 (21:52 +0200)]
toolchain/toolchain-common.in: adjust BR2_TOOLCHAIN_HAS_GCC_BUG_64735 for GCC 7

As GCC 7 is now available in Buildroot, update the definition for
BR2_TOOLCHAIN_HAS_GCC_BUG_64735 as the bug #64735 is fixed in GCC 7.

Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/mesa3d: bump version to 17.0.7
Bernd Kuhls [Tue, 6 Jun 2017 04:33:54 +0000 (06:33 +0200)]
package/mesa3d: bump version to 17.0.7

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agobotan: disable AltiVec if the CPU does not support it
Tobias Blass [Tue, 6 Jun 2017 14:29:11 +0000 (16:29 +0200)]
botan: disable AltiVec if the CPU does not support it

Botan compiles all PowerPC code with AltiVec support and only determines
at runtime whether the CPU even supports it. If the target CPU uses the
older SPE extensions, though, this is too late; since SPE and AltiVec
are incompatible, gcc aborts the compilation. This patch explicitly
disables AltiVec support unless BR2_POWERPC_CPU_HAS_ALTIVEC is defined

Signed-off-by: Tobias Blass <tobias.blass@rohde-schwarz.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agoperl-cross: bump to version 1.1.5
Francois Perrad [Tue, 6 Jun 2017 15:31:05 +0000 (17:31 +0200)]
perl-cross: bump to version 1.1.5

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/gnu-efi: add arm/aarch64 support
Bernd Kuhls [Sun, 4 Jun 2017 10:08:18 +0000 (12:08 +0200)]
package/gnu-efi: add arm/aarch64 support

We need BR2_ARM_CPU_HAS_ARM, otherwise build for cortex-m4 breaks with
"target CPU does not support ARM mode".

We only enable arm/aarch64 support for now, mips support is broken:
test-pkg/br-mips64-n64-full/build/gnu-efi-3.0.5/lib/mips64el/setjmp.S:40:
 Error: opcode not supported on this processor: mips64 (mips64) `ext $v0,$v0,29,1'

Tested by test-pkg using this defconfig

BR2_PACKAGE_GNU_EFI=y

with the following results:

                armv5-ctng-linux-gnueabi [ 1/49]: OK
              armv7-ctng-linux-gnueabihf [ 2/49]: OK
                        br-aarch64-glibc [ 3/49]: OK
                           br-arcle-hs38 [ 4/49]: SKIPPED
                            br-arm-basic [ 5/49]: OK
                  br-arm-cortex-a9-glibc [ 6/49]: OK
                   br-arm-cortex-a9-musl [ 7/49]: OK
                   br-arm-cortex-m4-full [ 8/49]: SKIPPED
                             br-arm-full [ 9/49]: OK
                    br-arm-full-nothread [10/49]: OK
                      br-arm-full-static [11/49]: OK
                            br-bfin-full [12/49]: SKIPPED
                   br-i386-pentium4-full [13/49]: OK
                br-i386-pentium-mmx-musl [14/49]: OK
                       br-m68k-5208-full [15/49]: SKIPPED
                      br-m68k-68040-full [16/49]: SKIPPED
                    br-microblazeel-full [17/49]: SKIPPED
                 br-mips32r6-el-hf-glibc [18/49]: SKIPPED
                      br-mips64-n64-full [19/49]: SKIPPED
                 br-mips64r6-el-hf-glibc [20/49]: SKIPPED
                      br-mipsel-o32-full [21/49]: SKIPPED
                          br-nios2-glibc [22/49]: SKIPPED
                      br-openrisc-uclibc [23/49]: SKIPPED
               br-powerpc-603e-basic-cpp [24/49]: SKIPPED
             br-powerpc64le-power8-glibc [25/49]: SKIPPED
               br-powerpc64-power7-glibc [26/49]: SKIPPED
                  br-powerpc-e500mc-full [27/49]: SKIPPED
                             br-sh4-full [28/49]: SKIPPED
                        br-sparc64-glibc [29/49]: SKIPPED
                         br-sparc-uclibc [30/49]: SKIPPED
                    br-x86-64-core2-full [31/49]: OK
                          br-x86-64-musl [32/49]: OK
                          br-xtensa-full [33/49]: SKIPPED
                     i686-ctng-linux-gnu [34/49]: OK
                          linaro-aarch64 [35/49]: OK
                              linaro-arm [36/49]: OK
             mips64el-ctng_n32-linux-gnu [37/49]: SKIPPED
             mips64el-ctng_n64-linux-gnu [38/49]: SKIPPED
        powerpc-ctng_e500v2-linux-gnuspe [39/49]: SKIPPED
                     sourcery-arm-armv4t [40/49]: OK
                            sourcery-arm [41/49]: OK
                     sourcery-arm-thumb2 [42/49]: OK
                         sourcery-mips64 [43/49]: SKIPPED
                           sourcery-mips [44/49]: SKIPPED
                          sourcery-nios2 [45/49]: SKIPPED
                             sourcery-sh [46/49]: SKIPPED
                         sourcery-x86-64 [47/49]: OK
                            sourcery-x86 [48/49]: OK
           x86_64-ctng_locales-linux-gnu [49/49]: OK
49 builds, 27 skipped, 0 build failed, 0 legal-info failed

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/gnu-efi: bump version to 3.0.5
Bernd Kuhls [Sun, 4 Jun 2017 10:08:17 +0000 (12:08 +0200)]
package/gnu-efi: bump version to 3.0.5

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/python-pyicu: bump version to 1.9.7
Bernd Kuhls [Mon, 5 Jun 2017 19:45:56 +0000 (21:45 +0200)]
package/python-pyicu: bump version to 1.9.7

Fixes build with ICU 59.1, updated broken URL in Config.in.

Fixes
http://autobuild.buildroot.net/results/d32/d32b7c98323e2a25a378143795583716bd5b74a9/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 years agopackage/tslib: bump version to 1.11
Martin Kepplinger [Tue, 6 Jun 2017 12:50:09 +0000 (14:50 +0200)]
package/tslib: bump version to 1.11

Release notes for the curious:
   https://github.com/kergoth/tslib/blob/master/NEWS

Signed-off-by: Martin Kepplinger <martin.kepplinger@ginzinger.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 years agolibgcrypt: security bump to version 1.7.7
Baruch Siach [Mon, 5 Jun 2017 20:26:04 +0000 (23:26 +0300)]
libgcrypt: security bump to version 1.7.7

Fix possible timing attack on EdDSA session key.

https://lists.gnupg.org/pipermail/gnupg-announce/2017q2/000406.html

Add upstream provided SHA1 hash.

Switch to https download for better corporate firewall compatibility.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 years agopackage/libass: bump version to 0.13.7
Bernd Kuhls [Mon, 5 Jun 2017 09:54:51 +0000 (11:54 +0200)]
package/libass: bump version to 0.13.7

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/intel-microcode: bump version to 20170511
Bernd Kuhls [Mon, 5 Jun 2017 10:46:09 +0000 (12:46 +0200)]
package/intel-microcode: bump version to 20170511

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/inadyn: bump version to 2.1
Bernd Kuhls [Mon, 5 Jun 2017 10:39:42 +0000 (12:39 +0200)]
package/inadyn: bump version to 2.1

Switched to tarball provided by upstream, autoreconf is not needed
anymore.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/imlib2: bump version to 1.4.10
Bernd Kuhls [Mon, 5 Jun 2017 10:31:34 +0000 (12:31 +0200)]
package/imlib2: bump version to 1.4.10

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/imagemagick: bump version to 7.0.5-10
Bernd Kuhls [Mon, 5 Jun 2017 10:28:25 +0000 (12:28 +0200)]
package/imagemagick: bump version to 7.0.5-10

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/igmpproxy: bump version
Bernd Kuhls [Mon, 5 Jun 2017 10:21:02 +0000 (12:21 +0200)]
package/igmpproxy: bump version

Last bump dates back to April 2016, time for current git HEAD.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/icu: bump version to 59.1
Bernd Kuhls [Mon, 5 Jun 2017 10:14:52 +0000 (12:14 +0200)]
package/icu: bump version to 59.1

According to the release notes "Compiler support for C++11 is now
required for building the ICU libraries.
GCC: version 4.8 and later has been tested."

Added corresponding dependencies and reverse dependencies.
Removed patch 0006 applied upstream.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agomemcached: bump version to 1.4.37
Vicente Olivert Riera [Mon, 5 Jun 2017 10:06:19 +0000 (11:06 +0100)]
memcached: bump version to 1.4.37

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/iputils: bump version to s20161105
Bernd Kuhls [Mon, 5 Jun 2017 11:43:15 +0000 (13:43 +0200)]
package/iputils: bump version to s20161105

Bump package to latest tagged release, fix typo and check-package
errors.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/hiawatha: fix build when c++ support is disabled
Bernd Kuhls [Mon, 5 Jun 2017 11:30:10 +0000 (13:30 +0200)]
package/hiawatha: fix build when c++ support is disabled

Fixes
http://autobuild.buildroot.net/results/c04/c04ff29b83c020573add597c355c57a6d9c9761d/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/iprutils: bump version to 2.4.14.1
Bernd Kuhls [Mon, 5 Jun 2017 11:06:20 +0000 (13:06 +0200)]
package/iprutils: bump version to 2.4.14.1

Removed patches applied upstream:

0001-iprutils-Don-t-use-gettext.patch
https://sourceforge.net/p/iprdd/iprutils/ci/4512cfb915b492e9eed65f7b9f72fc1c1bd097c2/

0002-configure.ac-use-pow-instead-of-matherr-for-libm-che.patch
https://sourceforge.net/p/iprdd/iprutils/ci/d7cfe35b9706da357814d4bdd21563396733753c/

0003-iprlib-fixes-for-compatibility-with-musl.patch
https://sourceforge.net/p/iprdd/iprutils/ci/ed9da50d114ea5e97f3cf599fb7b305e0cec18d6/

Autoreconf is not needed anymore, added upstream hashes, switched _SITE
to https.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/iperf3: bump version to 3.1.7
Bernd Kuhls [Mon, 5 Jun 2017 10:51:26 +0000 (12:51 +0200)]
package/iperf3: bump version to 3.1.7

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/libhdhomerun: bump version to 20161117
Bernd Kuhls [Mon, 5 Jun 2017 11:48:56 +0000 (13:48 +0200)]
package/libhdhomerun: bump version to 20161117

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/exiv2: disable on musl
Bernd Kuhls [Mon, 5 Jun 2017 11:47:03 +0000 (13:47 +0200)]
package/exiv2: disable on musl

Musl build is broken:

/home/buildroot/build/instance-0/output/build/exiv2-910f3507795e1930ae216c9febee0bf9a88e99c0/src/actions.cpp:2052:32:
 error: 'PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP' was not declared in this scope

According to http://www.openwall.com/lists/musl/2017/02/20/3
the define is not available on musl.

Fixes
http://autobuild.buildroot.net/results/283/28334a8a0b23c7c8260023b9a3aa15e8dd7613d0/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/ffmpeg: add optional support for alsa-lib
Bernd Kuhls [Thu, 1 Jun 2017 20:39:29 +0000 (22:39 +0200)]
package/ffmpeg: add optional support for alsa-lib

ffmpeg has optional support for alsa as input and/or output device:
http://git.videolan.org/?p=ffmpeg.git;a=blob;f=configure;h=23823e3b7012d847b614bd43316fb614676bedb2;hb=refs/heads/release/3.3#l2987

Problem was found while fixing
http://autobuild.buildroot.net/results/7ba/7ba485532fcab74928246a8f95dba7e5eea9d4a5/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agoopenldap: bump version to 2.4.45
Vicente Olivert Riera [Fri, 2 Jun 2017 15:20:45 +0000 (16:20 +0100)]
openldap: bump version to 2.4.45

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agoalsa-lib: bump version to 1.1.4.1
Vicente Olivert Riera [Fri, 2 Jun 2017 15:30:29 +0000 (16:30 +0100)]
alsa-lib: bump version to 1.1.4.1

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agolibiio: bump version to 0.10
Vicente Olivert Riera [Fri, 2 Jun 2017 16:36:31 +0000 (17:36 +0100)]
libiio: bump version to 0.10

Patch 0001 already included in this release:
  https://github.com/analogdevicesinc/libiio/commit/913c2cc740d60450e91e066cf38f5654936a6015

Patch 0002 already included in this release:
  https://github.com/analogdevicesinc/libiio/commit/6e5a40566ee44694b186d4c2cbcf5f8690d8bba4

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agogcc: allow gcc 7.1 for microblaze architecture
Waldemar Brodkorb [Thu, 1 Jun 2017 09:02:36 +0000 (11:02 +0200)]
gcc: allow gcc 7.1 for microblaze architecture

Add patch from gcc upstream master to fix an issue.

Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agogcc: add upstream patch to fix build of GCC6 with GCC7
Jörg Krause [Thu, 1 Jun 2017 07:37:58 +0000 (09:37 +0200)]
gcc: add upstream patch to fix build of GCC6 with GCC7

Building host-gcc-initial with GCC7 on the host fails due to the
comparison of a pointer to an integer in ubsan_use_new_style_p, which
is forbidden by ISO C++:

ubsan.c:1474:23: error: ISO C++ forbids comparison between pointer and
integer [-fpermissive]
       || xloc.file == '\0' || xloc.file[0] == '\xff'

Backported from:
https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=239971

Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/libldns: bump version to 1.7.0
Bernd Kuhls [Sat, 3 Jun 2017 13:12:53 +0000 (15:12 +0200)]
package/libldns: bump version to 1.7.0

Commit https://git.nlnetlabs.nl/ldns/commit/host2str.c?id=f7b3a9700e91f8e46477f335c5aaac7c6cdd8acb
added compatability with openssl 1.1.0 but, at the same time, breaks
build without openssl:

./host2str.c:1934:74: error: unknown type name ‘BIGNUM’
 ldns_print_bignum_b64_line(ldns_buffer* output, const char* label, const BIGNUM* num)

This bump makes openssl a mandatory dependency to circumvent the
problem, we do not gain much by leaving out crypto support in a
sensitive area like dns. The only package using libldns, freeswitch,
selects openssl as well, so we have no use case for having libldns
without openssl support.

--disable-dane-verify is needed until we bump our openssl to 1.1.x.,
this fixes the following configure error:

checking for SSL_get0_dane... no
configure: error: OpenSSL does not support offline DANE verification
(Needed for the DANE-TA usage type).  Please upgrade OpenSSL to version
>= 1.1.0 or rerun with --disable-dane-verify or --disable-dane-ta-usage

Removed patches applied upstream:

0001-bugfix-548-Double-free-for-answers-4096.patch
https://git.nlnetlabs.nl/ldns/commit/?h=release-1.7.x&id=2853eb352b4461e98f2926ace4ea3810cedf4167

0002-whitespace-bug-in-ldns-read-zone.patch
https://git.nlnetlabs.nl/ldns/commit/?h=release-1.7.x&id=d6037a22fbedb8ef3a22de4107e4eaa36840865b

0003-let-doxyparse-output-manpage-generation-issues.patch
https://git.nlnetlabs.nl/ldns/commit/?h=release-1.7.x&id=168ee09a4bf184947798c3ee3ac99b6651470d64

0004-Comment-out-debugging-remnants.patch
https://git.nlnetlabs.nl/ldns/commit/?h=release-1.7.x&id=a0a943d504debb05ce4d62ea81c2d218a6cc8727

0005-Remove-manpage-content-nondeterminicity-warnings.patch
https://git.nlnetlabs.nl/ldns/commit/?h=release-1.7.x&id=a56e48856d519d12f1ef600848f335615467f147

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/exiv2: fix gettext detection, part II
Bernd Kuhls [Sun, 4 Jun 2017 08:43:17 +0000 (10:43 +0200)]
package/exiv2: fix gettext detection, part II

It seems getting the gettext stuff right on all platforms is not that
easy, this patch bumps exiv2 to include all gettext (and pthreads)
patches applied upstream.

To reproduce the problem gettext has to be built before exiv2 so we
make gettext an optional dependency when NLS support is used.

Fixes
http://autobuild.buildroot.net/results/a56/a56c8a8a4c76b7c359ca7f5252be93fd70c6a4c1/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/exiv2: fix pthread detection
Bernd Kuhls [Sun, 4 Jun 2017 08:27:14 +0000 (10:27 +0200)]
package/exiv2: fix pthread detection

This commit fixes an error during configure:

-- Check if compiler accepts -pthread
CMake Error: TRY_RUN() invoked in cross-compiling mode, please set the
 following cache variables appropriately:
   THREADS_PTHREAD_ARG (advanced)

Patch ported from librtlsdr:
https://git.busybox.net/buildroot/commit/?id=4c6eace6f756d15ae9639a503c9245d1e7fb12a9

Fixes
http://autobuild.buildroot.net/results/0f9/0f985993a0c0076f027cfe25bb13d6b85c644c0d/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/exiv2: needs threads
Bernd Kuhls [Sun, 4 Jun 2017 08:04:56 +0000 (10:04 +0200)]
package/exiv2: needs threads

Exiv2 itself depends on threads, not only with xmp support.

Follow-up patch for http://patchwork.ozlabs.org/patch/770813/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/doxygen: add upstream patch fixing segfault
Romain Naour [Sun, 4 Jun 2017 20:16:42 +0000 (22:16 +0200)]
package/doxygen: add upstream patch fixing segfault

Backport an upstream patch fixing a segfault in xmlgen [1].

[1] https://github.com/doxygen/doxygen/pull/555

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Bartosz Golaszewski <brgl@bgdev.pl>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/doxygen: bump version to 1.8.13, switch to cmake
Bernd Kuhls [Fri, 2 Jun 2017 18:16:10 +0000 (20:16 +0200)]
package/doxygen: bump version to 1.8.13, switch to cmake

Doxygen switched to cmake with release 1.8.10:
http://www.stack.nl/~dimitri/doxygen/manual/changelog.html#log_1_8_10

and added support for flex 2.6.0 with release 1.8.11:
http://www.stack.nl/~dimitri/doxygen/manual/changelog.html#log_1_8_11

Fixes
http://autobuild.buildroot.net/results/ba1/ba1444709523c59393aaaa3710e9933bafacc6b5/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/erlang-jiffy: set version in jiffy.app.src
Romain Naour [Sun, 4 Jun 2017 15:29:18 +0000 (17:29 +0200)]
package/erlang-jiffy: set version in jiffy.app.src

Fixes:
http://autobuild.buildroot.net/results/5c0/5c045a517ccdc97244a4cfca54465dc8d5fcc717

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Johan Oudinet <johan.oudinet@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agosystemd: add upstream security fix
Baruch Siach [Sun, 4 Jun 2017 18:24:34 +0000 (21:24 +0300)]
systemd: add upstream security fix

Fixes CVE-2017-9217: remote DoS (daemon crash) via a crafted DNS response with
an empty question section.

Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/hiawatha: bump version to 10.6
Bernd Kuhls [Sun, 4 Jun 2017 13:24:16 +0000 (15:24 +0200)]
package/hiawatha: bump version to 10.6

Changed _SITE to https.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/hans: bump version to 1.0
Bernd Kuhls [Sun, 4 Jun 2017 13:15:08 +0000 (15:15 +0200)]
package/hans: bump version to 1.0

Added sha256 hash.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/guile: bump version to 2.0.14
Bernd Kuhls [Sun, 4 Jun 2017 13:09:25 +0000 (15:09 +0200)]
package/guile: bump version to 2.0.14

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/gssdp: bump version to 1.0.2
Bernd Kuhls [Sun, 4 Jun 2017 13:08:53 +0000 (15:08 +0200)]
package/gssdp: bump version to 1.0.2

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/gsl: bump version to 2.3
Bernd Kuhls [Sun, 4 Jun 2017 13:08:06 +0000 (15:08 +0200)]
package/gsl: bump version to 2.3

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/graphite2: bump version to 1.3.10
Bernd Kuhls [Sun, 4 Jun 2017 13:07:09 +0000 (15:07 +0200)]
package/graphite2: bump version to 1.3.10

Added sha256 hash.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/granite: bump version to 0.4.1
Bernd Kuhls [Sun, 4 Jun 2017 13:05:14 +0000 (15:05 +0200)]
package/granite: bump version to 0.4.1

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/gqrx: bump version to 2.6.1
Bernd Kuhls [Sun, 4 Jun 2017 13:04:22 +0000 (15:04 +0200)]
package/gqrx: bump version to 2.6.1

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/gptfdisk: bump version to 1.0.1
Bernd Kuhls [Sun, 4 Jun 2017 13:03:43 +0000 (15:03 +0200)]
package/gptfdisk: bump version to 1.0.1

Added sha256 hash.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/gnuradio: bump version to 3.7.11
Bernd Kuhls [Sun, 4 Jun 2017 10:58:06 +0000 (12:58 +0200)]
package/gnuradio: bump version to 3.7.11

Removed patches applied upstream:

0002-fix_cmake_3_5_0_build_failure.patch
https://github.com/gnuradio/volk/commit/9aa0f07693053d44aaaad8e54dd5250909705c02

0003-fix_compilation_in_gcc-6.patch
https://github.com/gnuradio/gnuradio/commit/a1cf11937665392bcfa223a5095ff903eb44c69b

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/gnuplot: bump version to 5.0.6
Bernd Kuhls [Sun, 4 Jun 2017 10:40:24 +0000 (12:40 +0200)]
package/gnuplot: bump version to 5.0.6

Added sha256 hash.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/hwloc: bump version to 1.11.7
Bernd Kuhls [Sun, 4 Jun 2017 13:36:22 +0000 (15:36 +0200)]
package/hwloc: bump version to 1.11.7

Added md5 & sha256 hashes, removed patch applied upstream:
https://github.com/open-mpi/hwloc/commit/f08f4629f93e927e10143eaf6378d2619aa27954

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/hdparm: bump version to 9.52, add myself to DEVELOPERS
Bernd Kuhls [Sun, 4 Jun 2017 13:20:40 +0000 (15:20 +0200)]
package/hdparm: bump version to 9.52, add myself to DEVELOPERS

Added sha256 hash.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agoDEVELOPERS: Add Martin Bark for package/connman
Martin Bark [Sun, 4 Jun 2017 19:53:56 +0000 (20:53 +0100)]
DEVELOPERS: Add Martin Bark for package/connman

Signed-off-by: Martin Bark <martin@barkynet.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/connman: bump version to 1.34
Martin Bark [Sun, 4 Jun 2017 19:53:55 +0000 (20:53 +0100)]
package/connman: bump version to 1.34

Signed-off-by: Martin Bark <martin@barkynet.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/nodejs: bump version to 8.0.0
Martin Bark [Sun, 4 Jun 2017 22:16:01 +0000 (23:16 +0100)]
package/nodejs: bump version to 8.0.0

See https://nodejs.org/en/blog/release/v8.0.0/

Signed-off-by: Martin Bark <martin@barkynet.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/ipsec-tools: add security patch to fix CVE-2015-4047
Bernd Kuhls [Fri, 2 Jun 2017 18:50:53 +0000 (20:50 +0200)]
package/ipsec-tools: add security patch to fix CVE-2015-4047

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/ipsec-tools: fix build error with newer flex versions
Bernd Kuhls [Fri, 2 Jun 2017 18:50:52 +0000 (20:50 +0200)]
package/ipsec-tools: fix build error with newer flex versions

Fixes
http://autobuild.buildroot.net/results/5c1/5c1e80d4dd57dac73345e08702af4c3fbc55f8e0/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/ipsec-tools: allow autoreconf
Bernd Kuhls [Fri, 2 Jun 2017 18:50:51 +0000 (20:50 +0200)]
package/ipsec-tools: allow autoreconf

Upstream release is broken w.r.t autoreconf, patch 0002 fixes it.
Needed to prepare for upcoming patch to fix linking against newer
flex versions.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agoncurses: Copy terminfo for 'screen-256color' terminal
Andrey Smirnov [Sat, 3 Jun 2017 00:00:13 +0000 (17:00 -0700)]
ncurses: Copy terminfo for 'screen-256color' terminal

Tmux uses 256 color version of 'screen' terminfo by default, so copy
corresponding file to support that usecase.

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agoncurses: Copy terminfo for 'dumb' terminal
Andrey Smirnov [Sat, 3 Jun 2017 00:00:12 +0000 (17:00 -0700)]
ncurses: Copy terminfo for 'dumb' terminal

Definition of 'dumb' terminal is required to be able to call 'top -b'
from 'procps-ng'.

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/armadillo: bump version to 7.900.1
Bernd Kuhls [Sat, 3 Jun 2017 17:01:24 +0000 (19:01 +0200)]
package/armadillo: bump version to 7.900.1

Changed upstream URL to https, use .xz instead of .gz tarball.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/libev: bump version to 4.24
Bernd Kuhls [Sat, 3 Jun 2017 17:01:08 +0000 (19:01 +0200)]
package/libev: bump version to 4.24

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/x11r7/xkeyboard-config: bump version to 2.21
Bernd Kuhls [Sat, 3 Jun 2017 17:19:25 +0000 (19:19 +0200)]
package/x11r7/xkeyboard-config: bump version to 2.21

Added all hashes provided by upstream.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/gdbm: add optional support for readline
Bernd Kuhls [Sat, 3 Jun 2017 17:34:59 +0000 (19:34 +0200)]
package/gdbm: add optional support for readline

readline support was added in version 1.13:

http://puszcza.gnu.org.ua/forum/forum.php?forum_id=1145
"The gdbmtool utility now offers the usual line-editing facilities
 (if the package has been compiled with GNU Readline."

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/gdbm: bump version to 1.13
Bernd Kuhls [Sat, 3 Jun 2017 17:34:58 +0000 (19:34 +0200)]
package/gdbm: bump version to 1.13

Added sha256 hash.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/gauche: bump version to 0.9.5
Bernd Kuhls [Sat, 3 Jun 2017 17:25:59 +0000 (19:25 +0200)]
package/gauche: bump version to 0.9.5

Removed patch applied upstream:
https://github.com/shirok/Gauche/commit/13a196557848f22a1607a300643131345e9f32b3

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/geoip: bump version to 1.6.11
Bernd Kuhls [Sat, 3 Jun 2017 17:38:13 +0000 (19:38 +0200)]
package/geoip: bump version to 1.6.11

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/gesftpserver: security bump to version 0.2.2
Bernd Kuhls [Sat, 3 Jun 2017 17:41:50 +0000 (19:41 +0200)]
package/gesftpserver: security bump to version 0.2.2

For details refer to
http://www.chiark.greenend.org.uk/pipermail/sgo-software-announce/2016/000035.html

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/glm: bump version to 0.9.8.4
Bernd Kuhls [Sat, 3 Jun 2017 17:47:53 +0000 (19:47 +0200)]
package/glm: bump version to 0.9.8.4

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/glog: bump version to v0.3.5
Bernd Kuhls [Sat, 3 Jun 2017 17:50:53 +0000 (19:50 +0200)]
package/glog: bump version to v0.3.5

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/uboot-tools: revert the removal of 0001-drop-configh-from-tools.patch
Romain Naour [Sat, 3 Jun 2017 17:24:10 +0000 (19:24 +0200)]
package/uboot-tools: revert the removal of 0001-drop-configh-from-tools.patch

Patch 0001-drop-configh-from-tools.patch is not upstream, instead it
must be rebased on top of 2017.05 release since the code was moved by
[1].

Fixes:
http://autobuild.buildroot.net/results/949/94910513d1b14e3b02ec4aed34de89d1b1d7a12a

[1] http://git.denx.de/?p=u-boot.git;a=commit;h=9d80b49a671c9922931adcd823aab0ed319a42d1

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Fabio Estevam <festevam@gmail.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/gmrender-resurrect: bump version
Bernd Kuhls [Sat, 3 Jun 2017 18:04:30 +0000 (20:04 +0200)]
package/gmrender-resurrect: bump version

gmrender-resurrect now builds with musl after
https://github.com/hzeller/gmrender-resurrect/commit/4ebbb5cabee79aefd88e0cffc8655dd703512e7a
removed the usage of error.h.

Build tested based on
http://autobuild.buildroot.net/toolchains/configs/br-x86-64-musl.config

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/dovecot: bump version to 2.30.1
Bernd Kuhls [Sat, 3 Jun 2017 18:07:32 +0000 (20:07 +0200)]
package/dovecot: bump version to 2.30.1

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agoiproute2: needs kernel headers 3.4+
Baruch Siach [Sat, 3 Jun 2017 21:30:33 +0000 (00:30 +0300)]
iproute2: needs kernel headers 3.4+

iproute2 needs the __kernel_long_t and __kernel_ulong_t types that were
introduced in kernel v3.4.

Fixes:
http://autobuild.buildroot.net/results/823/823f0dbe17999c07134fac5a0620e3ad15362204/
http://autobuild.buildroot.net/results/a79/a797a6e3d193fa70abd59411df21657a1c0a45d4/

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/libiconv: bump to 1.15
Romain Naour [Sat, 3 Jun 2017 21:47:44 +0000 (23:47 +0200)]
package/libiconv: bump to 1.15

libiconv doesn't build with gcc 6 due to a macro in stdio.h using gets()
which has been removed with the C11 standard.

_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");

With libiconv 1.15, this macro is protected by

 #if HAVE_RAW_DECL_GETS && !defined __cplusplus
 _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
 #endif

Fixes:
http://autobuild.buildroot.net/results/61b/61bbfc839f99feb043d3456f107429d6e5319258

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/exiv2: fix thread detection with xmp support disabled
Bernd Kuhls [Sat, 3 Jun 2017 16:43:22 +0000 (18:43 +0200)]
package/exiv2: fix thread detection with xmp support disabled

Fixes:

  http://autobuild.buildroot.net/results/46f273cf46ab5050ce7c23c968fcc7ce69f32626/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/exiv2: fix gettext support
Bernd Kuhls [Sat, 3 Jun 2017 16:30:11 +0000 (18:30 +0200)]
package/exiv2: fix gettext support

Fixes:

  http://autobuild.buildroot.net/results/defcdd3dd57b031c31bb16c0075f079a482bf52d

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 years agopackage/openpowerlink: bump to 2.6.0
Romain Naour [Sat, 3 Jun 2017 15:19:35 +0000 (17:19 +0200)]
package/openpowerlink: bump to 2.6.0

See https://sourceforge.net/p/openpowerlink/news/2017/05/openpowerlink-v260

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>