Álvaro Fernández Rojas [Wed, 1 Jun 2016 15:51:28 +0000 (17:51 +0200)]
pciutils: update to v3.5.1
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Álvaro Fernández Rojas [Wed, 1 Jun 2016 15:51:13 +0000 (17:51 +0200)]
libftdi: update to v1.3
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Álvaro Fernández Rojas [Wed, 1 Jun 2016 14:55:35 +0000 (16:55 +0200)]
Merge pull request #2402 from cshore/pull-request-tar-options
utils/tar: Make compression, acl, and xattr support configuration opt…
kuoruan [Sun, 29 May 2016 06:43:39 +0000 (14:43 +0800)]
xupnpd: Update to 2016-05-11
* Change source url to GitHub
* Update to 2016-05-11
* Add LICENSE
* Edit Makefile
Signed-off-by: Hsing-Wang Liao <kuoruan@gmail.com>
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Thomas Heil [Wed, 1 Jun 2016 09:35:55 +0000 (11:35 +0200)]
Merge pull request #2790 from Xotic750/nginx-1101
nginx: Bumped to v1.10.1
Xotic750 [Tue, 31 May 2016 20:54:26 +0000 (22:54 +0200)]
nginx: Bumped to v1.10.1
fixes NULL pointer dereference while writing client request body vulnerability (CVE-2016-4450).
Signed-off-by: Graham Fairweather <xotic750@gmail.com>
Michael Heimpold [Tue, 31 May 2016 19:42:11 +0000 (21:42 +0200)]
libmodbus: upgrade to 3.1.4
While at, also disable the build of the unit tests.
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
Michael Heimpold [Tue, 31 May 2016 19:27:46 +0000 (21:27 +0200)]
libxml2: upgrade to 2.9.4
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
Jiri Slachta [Tue, 31 May 2016 18:22:37 +0000 (20:22 +0200)]
libssh2, libxslt, tiff: change PKG_MAINTAINER email address
Signed-off-by: Jiri Slachta <slachta@cesnet.cz>
Ted Hess [Tue, 31 May 2016 15:16:32 +0000 (11:16 -0400)]
Merge pull request #2783 from feckert/licenses-master
libtasn1: add license tag
Ted Hess [Tue, 31 May 2016 14:17:47 +0000 (10:17 -0400)]
Merge pull request #2771 from jow-/intltool-optional-perl-xml-parser
intltool: make dependency on XML::Parser optional
Ted Hess [Tue, 31 May 2016 14:15:46 +0000 (10:15 -0400)]
Merge pull request #2770 from jow-/libsoup-fix
libsoup: disable overly strict warnings, use system wide intltool.m4
Thomas Heil [Tue, 31 May 2016 13:50:31 +0000 (15:50 +0200)]
Merge pull request #2779 from jow-/crtmpserver-fix
crtmpserver: fix multiple issues
Florian Eckert [Tue, 31 May 2016 12:49:11 +0000 (14:49 +0200)]
libtasn1: add license tag
show the license for this package in opkg
Signed-off-by: Florian Eckert <Eckert.Florian@googlemail.com>
Yousong Zhou [Tue, 31 May 2016 02:18:00 +0000 (10:18 +0800)]
Merge pull request #2769 from kuoruan/webui-aria2
webui-aria2: Add package
Yousong Zhou [Tue, 31 May 2016 02:14:55 +0000 (10:14 +0800)]
Merge pull request #2767 from kuoruan/yaaw
yaaw: Add package
Hsing-Wang Liao [Mon, 30 May 2016 11:03:23 +0000 (19:03 +0800)]
webui-aria2: Add package
* Web interface to aria2
Signed-off-by: Hsing-Wang Liao <kuoruan@gmail.com>
kuoruan [Mon, 30 May 2016 03:05:38 +0000 (11:05 +0800)]
yaaw: Add package
Yet Another Aria2 Web Frontend in pure HTML/CSS/Javascirpt.
Signed-off-by: Hsing-Wang Liao <kuoruan@gmail.com>
Jo-Philipp Wich [Mon, 30 May 2016 17:11:37 +0000 (19:11 +0200)]
crtmpserver: fix multiple issues
- Switch download to the Github clone of crtmpserver
- Rebase patches against latest version
- Pregenerate version.h file
- Disable applestreamingclient as it is broken
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Jo-Philipp Wich [Mon, 30 May 2016 12:27:54 +0000 (14:27 +0200)]
libsoup: disable overly strict warnings, use system wide intltool.m4
When building libsoup within the SDK, the following usually nonfatal warning
is causing the build to fail:
make[6]: Entering directory '.../build_dir/target-arm_xscale_musl-1.1.14_eabi/libsoup-2.53.2/libsoup'
CC libsoup_2_4_la-soup-address.lo
cc1: error: .../staging_dir/target-arm_xscale_musl-1.1.14_eabi/include: No such file or directory [-Werror=missing-include-dirs]
cc1: some warnings being treated as errors
Makefile:962: recipe for target 'libsoup_2_4_la-soup-address.lo' failed
Use the upstream `--disable-more-warnings` configure switch to disable this
class of `-Werror` flags.
Also drop the shipped copy of `intltool.m4` to force using the system wide one
which does not require the `XML::Parser` module to be installed (see #2771).
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Jo-Philipp Wich [Mon, 30 May 2016 14:27:03 +0000 (16:27 +0200)]
intltool: make dependency on XML::Parser optional
Patch `configure` and the shipped `intltool.m4` macro file to make a missing
XML::Parser perl module nonfatal.
All utilities provided by intltool are programmed to fail gracefully at run
time if the module cannot be loaded and those utilities commonly used during
the build do not require it at all.
Also drop the the build-prereq on XML::Parser now that it is optional.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Álvaro Fernández Rojas [Mon, 30 May 2016 10:33:06 +0000 (12:33 +0200)]
Merge pull request #2768 from jow-/libftdi1-fix
libftdi1: explicitely disable Boost unit tests
Jo-Philipp Wich [Mon, 30 May 2016 10:19:10 +0000 (12:19 +0200)]
libftdi1: explicitely disable Boost unit tests
When libftdi1 is detecting the presence of the Boost unit testing framework,
it will conditionally enable the build of libftdi1 test binaries which fail to
link on some targets with the following error:
CMakeFiles/test_libftdi1.dir/basic.cpp.o: In function `main':
basic.cpp:(.text.startup+0xc): undefined reference to `boost::unit_test::unit_test_main(bool (*)(), int, char**)'
collect2: error: ld returned 1 exit status
test/CMakeFiles/test_libftdi1.dir/build.make:123: recipe for target 'test/test_libftdi1' failed
make[6]: *** [test/test_libftdi1] Error 1
Since we do not care about test cases and since we want to avoid unpredictable
conditional compilation simply disable the testcases entirely.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Hannu Nyman [Mon, 30 May 2016 07:27:58 +0000 (10:27 +0300)]
Merge pull request #2766 from ianchi/youtube-dl
youtube-dl: update version
Adrian Panella [Mon, 16 May 2016 04:33:53 +0000 (23:33 -0500)]
youtube-dl: update version
Signed-off-by: Adrian Panella <ianchi74@outlook.com>
youtube-dl: update version
Signed-off-by: Adrian Panella <ianchi74@outlook.com>
Hannu Nyman [Sun, 29 May 2016 20:18:46 +0000 (23:18 +0300)]
Merge pull request #2765 from aTanW/master
gammu: bump to upstream v1.37.3
aTanW [Sun, 29 May 2016 20:12:15 +0000 (23:12 +0300)]
gammu: bump to upstream v1.37.3
Signed-off-by: Vitaly Protsko <villy@sft.ru>
---
Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Hannu Nyman [Sun, 29 May 2016 16:31:15 +0000 (19:31 +0300)]
Merge pull request #2762 from mstorchak/tgt
tgt: update to 1.0.64
Hannu Nyman [Sun, 29 May 2016 16:30:57 +0000 (19:30 +0300)]
Merge pull request #2761 from mstorchak/smartmontools
smartmontools: update to 6.5
Hannu Nyman [Sun, 29 May 2016 16:30:39 +0000 (19:30 +0300)]
Merge pull request #2759 from msva/patch-5
zsh: update to 5.2
Maxim Storchak [Sat, 28 May 2016 11:28:23 +0000 (14:28 +0300)]
tgt: update to 1.0.64
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
Maxim Storchak [Sat, 28 May 2016 10:51:49 +0000 (13:51 +0300)]
smartmontools: update to 6.5
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
Vadim A. Misbakh-Soloviov [Sat, 28 May 2016 17:35:52 +0000 (23:35 +0600)]
zsh: update to 5.2
Signed-off-by: Vadim A. Misbakh-Soloviov <git@mva.name>
Yousong Zhou [Sat, 28 May 2016 17:20:14 +0000 (01:20 +0800)]
Merge pull request #2760 from msva/patch-6
tmux: update to 2.2
Vadim A. Misbakh-Soloviov [Sat, 28 May 2016 17:09:36 +0000 (23:09 +0600)]
tmux: update to 2.2
Signed-off-by: Vadim A. Misbakh-Soloviov <git@mva.name>
Hauke Mehrtens [Sat, 28 May 2016 15:28:07 +0000 (17:28 +0200)]
Merge pull request #2741 from karlp/tor-urls
tor: correct URL for dist downloads
Hannu Nyman [Thu, 26 May 2016 15:59:22 +0000 (18:59 +0300)]
Merge pull request #2751 from dibdot/adblock
adblock: update 1.1.15
Dirk Brenken [Thu, 26 May 2016 15:40:32 +0000 (17:40 +0200)]
adblock: update 1.1.15
* toggle to quickly switch adblocking 'on' or 'off' (/etc/init.d/adblock
toggle)
* new config option 'fetchttl' to set download timeouts (default: 5
seconds)
* better config check, distinct between major/minor changes
* documentation update
Signed-off-by: Dirk Brenken <dev@brenken.org>
Yousong Zhou [Thu, 26 May 2016 12:24:39 +0000 (20:24 +0800)]
Merge pull request #2750 from yousong/reaver-fix
reaver: fix broken source url
Yousong Zhou [Thu, 26 May 2016 11:51:00 +0000 (19:51 +0800)]
reaver: fix broken source url
- Switch to release version 1.4
- Include a bugfix patch not present in version 1.4
Hannu Nyman [Wed, 25 May 2016 07:01:04 +0000 (10:01 +0300)]
Merge pull request #2744 from diizzyy/patch-3
gcc: Use URL alias
Hannu Nyman [Wed, 25 May 2016 07:00:12 +0000 (10:00 +0300)]
Merge pull request #2747 from diizzyy/patch-6
libunistring: Use URL alias
diizzyy [Tue, 24 May 2016 20:01:35 +0000 (22:01 +0200)]
confuse: Use URL alias (#2745)
Remove hardcoded URL and use alias instead.
Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
diizzyy [Tue, 24 May 2016 19:25:37 +0000 (21:25 +0200)]
libunistring: Use URL alias
Remove hardcoded URL and use alias instead.
Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
Hannu Nyman [Tue, 24 May 2016 19:22:08 +0000 (22:22 +0300)]
Merge pull request #2743 from salzmdan/master
knot: update to 2.2.1
diizzyy [Tue, 24 May 2016 19:09:18 +0000 (21:09 +0200)]
gcc: Use URL alias
Remove hardcoded URL and use alias instead.
Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
Daniel Salzman [Tue, 24 May 2016 13:47:17 +0000 (15:47 +0200)]
knot: update to 2.2.1
Signed-off-by: Daniel Salzman <daniel.salzman@nic.cz>
Karl Palsson [Tue, 24 May 2016 09:01:38 +0000 (09:01 +0000)]
tor: correct URL for dist downloads
Original url was 404.
Fixes Github issue #2284
Hannu Nyman [Tue, 24 May 2016 06:29:30 +0000 (09:29 +0300)]
Merge pull request #2736 from dibdot/adblock
adblock: update 1.1.12
Dirk Brenken [Mon, 23 May 2016 19:17:23 +0000 (21:17 +0200)]
adblock: update 1.1.12
* change wget binary naming
* change winspy source url
* documentation update
Signed-off-by: Dirk Brenken <dev@brenken.org>
Naoir [Mon, 23 May 2016 12:27:21 +0000 (14:27 +0200)]
Merge pull request #2703 from cshore/pull-request-cgi-fix
lang/perl-cgi: Fix missing file for perl-cgi
Hannu Nyman [Mon, 23 May 2016 07:41:40 +0000 (10:41 +0300)]
Merge pull request #2708 from cshore/pull-request-netdiscover-sourceforge
net/netdiscover: Download from SourceForge not unreliable site
John Crispin [Mon, 23 May 2016 07:37:51 +0000 (09:37 +0200)]
Merge pull request #2731 from nxhack/node-hid-fix-git-submodule-issue
node-hid: fix git submodule issue
Hannu Nyman [Mon, 23 May 2016 07:33:23 +0000 (10:33 +0300)]
Merge pull request #2723 from the-alien/master
lang/python-ldap: Update to the version 2.4.25
Hannu Nyman [Mon, 23 May 2016 07:29:46 +0000 (10:29 +0300)]
Merge pull request #2732 from xypron/make
devel/make: GNU Make 4.2
Heinrich Schuchardt [Mon, 23 May 2016 05:55:03 +0000 (07:55 +0200)]
devel/make: GNU Make 4.2
The release contains a bunch of bug fixes.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Hirokazu MORIKAWA [Mon, 23 May 2016 05:49:29 +0000 (14:49 +0900)]
node-hid: fix git submodule issue
Nikos Mavrogiannopoulos [Sun, 22 May 2016 15:47:33 +0000 (17:47 +0200)]
gnutls: updated to 3.4.12
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
Nikos Mavrogiannopoulos [Sun, 22 May 2016 15:42:22 +0000 (17:42 +0200)]
openconnect: use proto_add_host_dependency
This ensures that a direct route to the connected host is added
by netifd.
Resolves #2548
Hannu Nyman [Sun, 22 May 2016 11:20:02 +0000 (14:20 +0300)]
vips: fix patch
Correct spelling in a patch back to the faulty original,
as the patch wes broken by #2594
This commit fixes #2719
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Michael Heimpold [Sat, 21 May 2016 20:12:25 +0000 (22:12 +0200)]
php5: update to 5.6.21
This fixes the following CVEs:
- in BCMath: CVE-2016-4537, CVE-2016-4538
- in EXIF: CVE-2016-4542, CVE-2016-4543, CVE-2016-4544
- in GD: CVE-2016-3074
- in Intl: CVE-2016-4540, CVE-2016-4541
- in XML: CVE-2016-4539
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
Yousong Zhou [Sat, 21 May 2016 13:05:50 +0000 (21:05 +0800)]
Merge pull request #2721 from mogulapranay-freescale/xl2tpd-demand-option
xl2tpd: demand option is initialized.
alien [Fri, 20 May 2016 21:23:05 +0000 (00:23 +0300)]
lang/python-ldap: Update to the version 2.4.25
Michael Heimpold [Fri, 20 May 2016 15:54:36 +0000 (17:54 +0200)]
mmc-utils: upgrade to latest revision
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
Jiri Slachta [Fri, 20 May 2016 11:19:11 +0000 (13:19 +0200)]
Merge pull request #2714 from jow-/tiff-ftell-fix
tiff: fix wrong declaration of ftell() compat macro
Daniel Golle [Fri, 20 May 2016 04:22:04 +0000 (06:22 +0200)]
lvm2: fix accidentally augmented goto label
also refresh patches while at it
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Daniel Golle [Thu, 19 May 2016 17:17:38 +0000 (19:17 +0200)]
lvm2: update to version 2.02.154
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Daniel Golle [Thu, 19 May 2016 17:13:53 +0000 (19:13 +0200)]
gnunet: use gnunet-config's new differential write
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Daniel Golle [Thu, 19 May 2016 17:12:25 +0000 (19:12 +0200)]
debootstrap: update to version 1.0.81
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Hannu Nyman [Thu, 19 May 2016 15:18:18 +0000 (18:18 +0300)]
Merge pull request #2718 from kooiot/master
libzmq upgrade to 4.1.4
Dirk Chang [Thu, 19 May 2016 15:13:05 +0000 (23:13 +0800)]
libzmq upgrade to 4.1.4
Signed-off-by: Dirk Chang <dirk@kooiot.com>
Jo-Philipp Wich [Thu, 19 May 2016 12:33:08 +0000 (14:33 +0200)]
Merge pull request #2713 from jow-/mc-gettext-version
mc: apply gettext version fixup
Jo-Philipp Wich [Thu, 19 May 2016 12:29:57 +0000 (14:29 +0200)]
tiff: fix wrong declaration of ftell() compat macro
The libtiff library declares an `ftell()` compat macro redirecting calls
to `ftello()` if such an implementation exists. The compat macro however
is declared with a wrong number of arguments, leading to the following
error on our buildbots:
In file included from .../usr/include/uClibc++/iostream:29:0,
from tif_stream.cxx:31:
.../usr/include/uClibc++/fstream:422:22: error: macro "ftell" requires 3 arguments, but only 1 given
retval = ftell(fp);
Add a patch to fix the macro definition in order to fix compilation of
the tiff package.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Jo-Philipp Wich [Thu, 19 May 2016 12:03:14 +0000 (14:03 +0200)]
mc: apply gettext version fixup
Apply the version fixup in order to solve the following build error on systems
not using exactly gettext version 0.18:
make[6]: Entering directory '.../build_dir/target-mips_34kc_musl-1.1.14/mc-4.8.17/po'
*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version 0.18 but the autoconf macros are from gettext version 0.19
The fixup will ensure that embedded macro versions are replaced with the
version of the staged gettext executable in ./staging_dir/host/bin
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Nikos Mavrogiannopoulos [Thu, 19 May 2016 11:52:44 +0000 (13:52 +0200)]
Merge pull request #2711 from jow-/openconnect-nolz4
openconnect: avoid possible implicit dependency on liblz4
Ted Hess [Wed, 18 May 2016 21:54:07 +0000 (17:54 -0400)]
zile: Fix build with latest ncurses changes
Signed-off-by: Ted Hess <thess@kitschensync.net>
Jo-Philipp Wich [Thu, 19 May 2016 09:41:44 +0000 (11:41 +0200)]
openconnect: avoid possible implicit dependency on liblz4
If the liblz4 library exists within the build environment, the openconnect
configure will pick it up and start depending on it, leading to the following
build error:
Package openconnect is missing dependencies for the following libraries:
liblz4.so.1
Disable LZ4 support in configure in order to avoid this implicit,
nondeterministic dependency.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
John Crispin [Wed, 18 May 2016 14:51:25 +0000 (16:51 +0200)]
Merge pull request #2707 from nxhack/node-hid-fix-compile-error
node-hid: fix compile error, condition of not-installing 'libusb-dev' package at cross-compile host.
Nuno Goncalves [Wed, 18 May 2016 13:38:43 +0000 (14:38 +0100)]
Merge pull request #2709 from jow-/usbip-nonshared
usbip: mark as nonshared
Jo-Philipp Wich [Wed, 18 May 2016 12:59:16 +0000 (14:59 +0200)]
usbip: mark as nonshared
Mark the usbip package nonshared so that is built along with the target
specific binaries and not within the SDK environment.
This is needed since the usbip package draws its source files directly
from the kernel tree which is unavailable within the SDK.
Fixes the following build error encountered by the LEDE buildbots:
http://downloads.lede-project.org/snapshots/faillogs/mipsel_1004kc_dsp/packages/usbip/compile.txt
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Hirokazu MORIKAWA [Wed, 18 May 2016 05:54:38 +0000 (14:54 +0900)]
node-hid: fix compile error
Daniel Golle [Wed, 18 May 2016 00:16:15 +0000 (02:16 +0200)]
gnunet: fix typo in gnunet-flat post-install script
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Daniel Golle [Tue, 17 May 2016 21:36:47 +0000 (23:36 +0200)]
gnunet: update to SVN r37179 and fix SUID permissions (again)
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Hannu Nyman [Mon, 16 May 2016 21:02:10 +0000 (00:02 +0300)]
Merge pull request #2706 from dibdot/adblock
adblock: update 1.1.11
Dirk Brenken [Mon, 16 May 2016 20:51:07 +0000 (22:51 +0200)]
adblock: update 1.1.11
* fix changed winspy source url in default config
* fix adblock counters in config
* cosmetics
Signed-off-by: Dirk Brenken <dev@brenken.org>
mogulapranay [Mon, 16 May 2016 16:17:57 +0000 (21:47 +0530)]
xl2tpd: demand option is initialized.
Signed-off-by: mogulapranay <mogulapranay57@gmail.com>
Hannu Nyman [Mon, 16 May 2016 15:07:51 +0000 (18:07 +0300)]
Merge pull request #2705 from Zokormazo/grep
grep: update to 2.25
Daniel Dickinson [Sun, 20 Dec 2015 08:16:08 +0000 (03:16 -0500)]
utils/tar: Make compression, acl, and xattr support configuration options
This patch make building tar with POSIX ACL and XATTR
support configuration options. It also makes building
seamless (e.g. -z -J -j) compression support a configuration
option for each compression program available in OpenWrt.
It also makes POSIX ACL support disabled by default
(by default OpenWrt doesn't build POSIX ACL support
into the kernel, never mind allowing to mount with it
enabled). Also XATTR support is disabled by
default as this seems to be the standard default for packages
in OpenWrt.
Finally Bzip2, Gzip, and XZ seamless support are made
available by default and appropriate dependencies
are added based on the configuration choice.
Signed-off-by: Daniel Dickinson <openwrt@daniel.thecshore.com>
Julen Landa Alustiza [Mon, 16 May 2016 08:04:28 +0000 (10:04 +0200)]
grep: update to 2.25
Signed-off-by: Julen Landa Alustiza <julen@zokormazo.info>
Hannu Nyman [Mon, 16 May 2016 06:31:39 +0000 (09:31 +0300)]
Merge pull request #2576 from cshore/pull-request-collectd-udev
utils/collectd: Disable libudev linking
John Crispin [Mon, 16 May 2016 06:30:09 +0000 (08:30 +0200)]
Merge pull request #2685 from nxhack/node-modules-for-v4.4.4
node-*: node update to v4.4.4
Hannu Nyman [Mon, 16 May 2016 06:25:52 +0000 (09:25 +0300)]
Merge pull request #2699 from ClaymorePT/boost_1_61_0
boost: Package Version Update to 1.61.0
Hannu Nyman [Mon, 16 May 2016 06:23:47 +0000 (09:23 +0300)]
Merge pull request #2698 from andrenarchy/icecast-2.4.3
icecast: update to 2.4.3
Daniel Dickinson [Mon, 16 May 2016 04:01:59 +0000 (00:01 -0400)]
lang/perl-cgi: Fix missing file for perl-cgi
Perl CGI fails to copy CGI.pm to package and therefore
perl programs and modules depend on CGI module fail.
Signed-off-by: Daniel Dickinson <lede@daniel.thecshore.com>
Daniel Dickinson [Sun, 27 Mar 2016 14:07:47 +0000 (10:07 -0400)]
utils/collectd: Disable libudev linking
At least when building with OpenWrt SDK, if libudev is present
(even if not actually used by the system), then at least the
disk plugin attempts to link against udev, which results in
packages failure due to lack of dependencies, and it's not
desirable to add a dependency on udev just because udev
was built for the SDK, so we disable libudev support
explicity.
Signed-off-by: Daniel Dickinson <openwrt@daniel.thecshore.com>
Conflicts:
utils/collectd/Makefile
carlos ferreira [Sun, 15 May 2016 23:56:57 +0000 (00:56 +0100)]
Boost: Package Version Update
This package version update brings four new libraries:
- Compute [1]
- DLL [2]
- Hana [3]
- Metaparse [4]
More information about the 1.61.0 release (bug fixes, etc), can be found
here[5].
[1]: http://www.boost.org/libs/compute/
[2]: http://www.boost.org/libs/dll/
[3]: http://www.boost.org/libs/hana/
[4]: http://www.boost.org/libs/metaparse/
[5]: http://www.boost.org/users/history/version_1_61_0.html
Signed-off-by: Carlos M. Ferreira <carlosmf.pt@gmail.com>
André Gaul [Sun, 15 May 2016 20:00:26 +0000 (22:00 +0200)]
icecast: update to 2.4.3
Signed-off-by: André Gaul <gaul@gaul.io>
Peter Wagner [Fri, 13 May 2016 10:54:35 +0000 (12:54 +0200)]
git: update to 2.8.2
Fixes:
CVE-2016-2315
CVE-2016-2324
Signed-off-by: Peter Wagner <tripolar@gmx.at>
Hannu Nyman [Fri, 13 May 2016 09:25:39 +0000 (12:25 +0300)]
Merge pull request #2695 from dibdot/adblock
adblock: update 1.1.10
Dirk Brenken [Fri, 13 May 2016 07:54:20 +0000 (09:54 +0200)]
adblock: update 1.1.10
* automatic AP mode detection (change nullip address accordingly)
* (de-)compress backups on the fly
* remove hardcoded path for logger
* documentation update
* change maintainer email address
* cosmetics
Signed-off-by: Dirk Brenken <dev@brenken.org>