feed/packages.git
6 years agopython,python3: install mk files in the Host/Install phase 4524/head
Alexandru Ardelean [Thu, 29 Jun 2017 11:03:51 +0000 (14:03 +0300)]
python,python3: install mk files in the Host/Install phase

The Build/InstallDev rule is activated only for target builds.
But if someone needs only the host Python, then
these files need to be installed in this phase, and not Build/InstallDev

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
6 years agoopenvswitch: make dependencies conditional for openvswitch-python subpackage
Alexandru Ardelean [Thu, 29 Jun 2017 10:50:40 +0000 (13:50 +0300)]
openvswitch: make dependencies conditional for openvswitch-python subpackage

Apparently, even if you don't select the `openvswitch-python` package,
Python still gets built (for the target build).

But, if the python dependencies are conditional on the
`PACKAGE_openvswitch-python` symbol then they aren't build.

This should improve build times, if you only want to build the
`openvswitch` package.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
6 years agoopenvswitch: add CONFIG_PACKAGE_openvswitch-python to PKG_BUILD_DEPENDS
Alexandru Ardelean [Sun, 18 Jun 2017 17:41:24 +0000 (20:41 +0300)]
openvswitch: add CONFIG_PACKAGE_openvswitch-python to PKG_BUILD_DEPENDS

That way, OVS gets rebuilt if the openvswitch-python
package is selected or unselected.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
6 years agopython-six: rename PKG_NAME to python-six, and adapt unpack cmd for build
Alexandru Ardelean [Sun, 18 Jun 2017 17:17:11 +0000 (20:17 +0300)]
python-six: rename PKG_NAME to python-six, and adapt unpack cmd for build

OVS has PKG_BUILD_DEPENDS:=python-six/host as dep.
But that doesn't seem to work, since the PKG_NAME:=six

So, this change renames the PKG_NAME to python-six, to
make it clear it's Python package.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
6 years agoopenvswitch: enforce the use of the python binary from `packages`
Alexandru Ardelean [Sat, 17 Jun 2017 19:05:08 +0000 (22:05 +0300)]
openvswitch: enforce the use of the python binary from `packages`

Seems it was not failing for me because it was probably
using my host Python, which may have the `six` package
available.

This patch enforces the use of the packaged Python.
That way, it's more consistent that the python-six
package is available.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
6 years agolighttpd: backport more mod_cgi fixes queued for 1.4.46
Rafał Miłecki [Thu, 29 Jun 2017 07:24:37 +0000 (09:24 +0200)]
lighttpd: backport more mod_cgi fixes queued for 1.4.46

The most important change is local redirects being disabled by default.
There is an option called cgi.local-redir that allows enabling this
optimization manually back if needed.

Local redirects were initially introduced in 1.4.40 but caused many
problems for *some* web services.

One of problems is breaking Post/Redirect/Get design pattern. With
redirects handled on server side there is no browser redirection making
it "lose" the POST data.

Another possible issue are HTML forms with action="". With CGI local
redirects browser may be sending form data to the wrong URL (the one
that was supposed to redirect the browser).

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
6 years agoMerge pull request #4483 from andor-pierdelacabeza/patch-1
Hannu Nyman [Wed, 28 Jun 2017 20:17:44 +0000 (23:17 +0300)]
Merge pull request #4483 from andor-pierdelacabeza/patch-1

ddns: Fix dnsmadeeasy ddns url

6 years agoMerge pull request #4519 from zx2c4/patch-7
Hannu Nyman [Wed, 28 Jun 2017 13:01:28 +0000 (16:01 +0300)]
Merge pull request #4519 from zx2c4/patch-7

wireguard: version bump

6 years agowireguard: version bump 4519/head
Jason A. Donenfeld [Wed, 28 Jun 2017 12:57:04 +0000 (14:57 +0200)]
wireguard: version bump

From upstream's changelog:

  * main: annotate init/exit functions to save memory
  * selftest: remove antique siphash self test
  * haskell: re-add updated haskell example
  * socket: use ip_rt_put instead of dst_release
  * device: avoid double icmp send on routing loop
  * compat: clean up cruft
  * global: cleanup IP header checking
  * compat: do not export symbols unnecessarily

  Various cleanups and updates.

  * device: netdevice destruction logic change for 4.12

  When Linux 4.12 is released next week, we're good to go.

  * device: only use one sleep notifier

  Rather than have a separate sleep notification for every interface, we now
  have a single notifier for every interface. This improves performance,
  especially when creating many interfaces at once.

  * device: remove icmp conntrack hacks

  We're moving hacks upstream the proper way, and then backporting them to
  compat.

  * receive: extend rate limiting to 1 second after under load detection

  After we determine that we're under load, we now wait 1 second before not
  being under load again, a timer which is global across all interfaces on a
  given system.

  * curve25519: satisfy sparse and use short types
  * curve25519: keep certain sandy2x functions in C

  Certain functions have been made into C, which should improve stack frames and
  reliability.

  * ratelimiter: rewrite from scratch

  This is a big change. We no longer rely on x_tables or xt_hashlimit, instead
  using a super minimal and sleek token bucket ratelimiter. This works much
  better than the old cruft and should allow us to run more places. It also has
  the benefit of being global, so that it's possible to have thousands of
  interfaces without killing the system with separate GCs and vmallocs, which is
  what happened prior.

  * socket: verify saddr belongs to interface

  We now more quickly react to changes of the v4 routing table, by ensuring that
  the sticky source address is actually still valid.

  * wg-quick: properly match IPv6 endpoint

  wg-quick now works better with IPv6.

  * wg-quick: use printf -v instead of namerefs for bash 4.2

  This adds support for old bash, which means wg-quick should be generically
  "bash 4 and up". I'm not happy about this but EL7 uses old bash, so we're
  stuck with it.

  * compat: support EL7.3

  Support for RHEL, CentOS, ScientificLinux, and so forth.

  * compat: support Ubuntu 14.04

  An old crufty Ubuntu is now supported, since it's LTS.

6 years agoMerge pull request #4518 from EricLuehrsen/unbound_1_6_4
Hannu Nyman [Wed, 28 Jun 2017 06:04:53 +0000 (09:04 +0300)]
Merge pull request #4518 from EricLuehrsen/unbound_1_6_4

unbound: update to 1.6.4

6 years agounbound: update to 1.6.4 4518/head
Eric Luehrsen [Wed, 28 Jun 2017 03:12:22 +0000 (23:12 -0400)]
unbound: update to 1.6.4

Signed-off-by: Eric Luehrsen <ericluehrsen@hotmail.com>
6 years agoFix http/https, increase PKG_RELEASE 4483/head
Alvaro [Andor] [Tue, 27 Jun 2017 21:48:53 +0000 (23:48 +0200)]
Fix http/https, increase PKG_RELEASE

6 years agoMerge pull request #4515 from pprindeville/rng-tools-fix-newlines
Hannu Nyman [Tue, 27 Jun 2017 07:25:15 +0000 (10:25 +0300)]
Merge pull request #4515 from pprindeville/rng-tools-fix-newlines

rng-tools: add upstreamed patch to fix newlines in syslog messages

6 years agoMerge pull request #4517 from dibdot/adblock
Hannu Nyman [Tue, 27 Jun 2017 07:24:47 +0000 (10:24 +0300)]
Merge pull request #4517 from dibdot/adblock

adblock: update 2.8.0 (release 2)

6 years agorng-tools: add upstreamed patch to fix newlines in syslog messages 4515/head
Philip Prindeville [Tue, 27 Jun 2017 03:27:10 +0000 (21:27 -0600)]
rng-tools: add upstreamed patch to fix newlines in syslog messages

Don't embed newlines in syslog strings.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
6 years agoadblock: update 2.8.0 (release 2) 4517/head
Dirk Brenken [Tue, 27 Jun 2017 06:31:51 +0000 (08:31 +0200)]
adblock: update 2.8.0 (release 2)

* fix a logical glitch

Signed-off-by: Dirk Brenken <dev@brenken.org>
6 years agoMerge pull request #4516 from dibdot/adblock
Hannu Nyman [Tue, 27 Jun 2017 06:19:59 +0000 (09:19 +0300)]
Merge pull request #4516 from dibdot/adblock

adblock: update 2.8.0

6 years agoadblock: update 2.8.0 4516/head
Dirk Brenken [Mon, 26 Jun 2017 18:58:29 +0000 (20:58 +0200)]
adblock: update 2.8.0

* add bind support (see readme)
* export all blocked domains in one central file (adb_list.overall)
  * prerequisite for proper bind support
  * much faster sort operation with less memory consumption
  * backups are still handled per source separately,
    to be more flexible in adding/removing block list sources
* add additional 'wan6' interface trigger in default configuration
* various small fixes & optimizations

Signed-off-by: Dirk Brenken <dev@brenken.org>
6 years agoMerge pull request #4494 from yousong/openconnect
Nikos Mavrogiannopoulos [Mon, 26 Jun 2017 09:03:36 +0000 (11:03 +0200)]
Merge pull request #4494 from yousong/openconnect

openconnect: openconnect-wrapper: rewrite

6 years agoMerge pull request #4416 from diizzyy/patch-50
Hannu Nyman [Sun, 25 Jun 2017 17:00:27 +0000 (20:00 +0300)]
Merge pull request #4416 from diizzyy/patch-50

mail/msmtp: Update to 1.6.6

6 years agogit: update to 2.13.2
Peter Wagner [Sun, 25 Jun 2017 14:54:14 +0000 (16:54 +0200)]
git: update to 2.13.2

Signed-off-by: Peter Wagner <tripolar@gmx.at>
6 years agoglib2: update to 2.52.3
Peter Wagner [Sun, 25 Jun 2017 14:53:24 +0000 (16:53 +0200)]
glib2: update to 2.52.3

Signed-off-by: Peter Wagner <tripolar@gmx.at>
6 years agognunet: update source and init script
Daniel Golle [Sat, 24 Jun 2017 13:03:51 +0000 (15:03 +0200)]
gnunet: update source and init script

Fixes starting EXIT service when offering services.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agopostgresql: fix host build and correctly apply NLS
Daniel Golle [Sat, 24 Jun 2017 12:39:34 +0000 (14:39 +0200)]
postgresql: fix host build and correctly apply NLS

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agoMerge pull request #4508 from diizzyy/patch-60
Ted Hess [Sat, 24 Jun 2017 12:59:49 +0000 (08:59 -0400)]
Merge pull request #4508 from diizzyy/patch-60

libs/opus: Update to 1.2

6 years agolibs/opus: Update to 1.2 4508/head
Daniel Engberg [Sat, 24 Jun 2017 11:51:46 +0000 (13:51 +0200)]
libs/opus: Update to 1.2

Update (lib)opus to 1.2

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
6 years agoacpica: initial commit
Philip Prindeville [Thu, 22 Jun 2017 00:41:07 +0000 (18:41 -0600)]
acpica: initial commit

Add the UNIX-based ACPI utilities.  For now, only "acpidump" seems to
be useful on the target system.  The others would only be of interest
on the host system, and only then if one were developing BIOS.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
6 years agolibiio: add missing dependency to libusb
Michael Heimpold [Fri, 23 Jun 2017 22:03:07 +0000 (00:03 +0200)]
libiio: add missing dependency to libusb

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
6 years agognunet: update source
Daniel Golle [Fri, 23 Jun 2017 18:57:56 +0000 (20:57 +0200)]
gnunet: update source

fixes namestore iterator and other bugs when using PostgreSQL

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agopostgresql: properly handle pg_config host build
Daniel Golle [Fri, 23 Jun 2017 16:32:41 +0000 (18:32 +0200)]
postgresql: properly handle pg_config host build

pg_config needs to be build for each target which creates some
extra complications...

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agoMerge pull request #4430 from diizzyy/patch-58
Daniel Golle [Fri, 23 Jun 2017 15:02:07 +0000 (17:02 +0200)]
Merge pull request #4430 from diizzyy/patch-58

utils/pcsc-tools: Add to repo

6 years agoMerge pull request #4454 from poranje/fs#785 4504/head
Hannu Nyman [Fri, 23 Jun 2017 05:54:52 +0000 (08:54 +0300)]
Merge pull request #4454 from poranje/fs#785

unbound: manage resolv.conf iff when listening on 127.0.0.1#53

6 years agolibiio: add new package
Michael Heimpold [Thu, 22 Jun 2017 21:49:24 +0000 (23:49 +0200)]
libiio: add new package

libiio is a library for interfacing with Linux's Industrial Input/Output (IIO)
subsystem. The Linux IIO subsystem is intended to provide support for devices
that in some sense are analog to digital or digital to analog converters.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
6 years agolibudev-fbsd: select libevdev
Daniel Golle [Thu, 22 Jun 2017 12:24:41 +0000 (14:24 +0200)]
libudev-fbsd: select libevdev

select instead of depend on libevdev.

Reported-by: Michał Plebański <m.plebanski4@gmail.com>
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agoMerge pull request #4503 from TDT-GmbH/mwan3_changes
Hannu Nyman [Thu, 22 Jun 2017 12:25:23 +0000 (15:25 +0300)]
Merge pull request #4503 from TDT-GmbH/mwan3_changes

net/mwan3: add lock

6 years agonet/mwan3: update version 4503/head
Florian Eckert [Thu, 22 Jun 2017 09:54:12 +0000 (11:54 +0200)]
net/mwan3: update version

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
6 years agonet/mwan3: simplify tracking status statement command
Florian Eckert [Thu, 22 Jun 2017 09:53:35 +0000 (11:53 +0200)]
net/mwan3: simplify tracking status statement command

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
6 years agonet/mwan3: add lock for mwan3 hotplug script
Florian Eckert [Thu, 22 Jun 2017 09:48:01 +0000 (11:48 +0200)]
net/mwan3: add lock for mwan3 hotplug script

If more then one interface get up/down at once mwan3 could be in a
undefined state, because more then one mwan3 hotplug script are running
and editing the iptables.

Lock the critical section should solve this issue.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
6 years agoMerge pull request #4485 from pprindeville/php7-enable-snmp
Michael Heimpold [Thu, 22 Jun 2017 09:57:46 +0000 (11:57 +0200)]
Merge pull request #4485 from pprindeville/php7-enable-snmp

php7: add SNMP module to bundle

6 years agoMerge pull request #4484 from pprindeville/net-snmp-add-config-symlink
Stijn Tintel [Thu, 22 Jun 2017 01:38:23 +0000 (03:38 +0200)]
Merge pull request #4484 from pprindeville/net-snmp-add-config-symlink

net-snmp: add symlink for net-snmp-config into usr/bin

6 years agonet-snmp: add symlink for net-snmp-config into usr/bin 4484/head
Philip Prindeville [Fri, 16 Jun 2017 23:13:30 +0000 (17:13 -0600)]
net-snmp: add symlink for net-snmp-config into usr/bin

A lot of autoconf-based scripts expect --with-foo-dir=$(STAGING_DIR)/usr
and break if they can't find bin/foo-config as a child of that path.

Putting things in $(STAGING_DIR)/host/bin seems to be suboptimal; I
could change the install path but there's no saying what that would
break.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
6 years agopostgresql: set include path to fix building contribs
Daniel Golle [Tue, 20 Jun 2017 21:21:43 +0000 (23:21 +0200)]
postgresql: set include path to fix building contribs

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agopostgresql: disable parallel build
Daniel Golle [Tue, 20 Jun 2017 20:18:28 +0000 (22:18 +0200)]
postgresql: disable parallel build

It seems to break things (occasionally)

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agounbound: manage resolv.conf iff when listening on 127.0.0.1#53 4454/head
Paul Oranje [Tue, 13 Jun 2017 22:19:25 +0000 (00:19 +0200)]
unbound: manage resolv.conf iff when listening on 127.0.0.1#53

With this patch the unbound init routines manage resolv.conf if and only if
when unbound will listen on 127.0.0.1#53 and dnsmasq is not.

Also logs some cases where config values are overriden with sane defaults.

Fixes (partially) LEDE FS#785
Fixes openwrt/packages#4487

Signed-off-by: Paul Oranje <por@xs4all.nl>
6 years agoutils/pcsc-tools: Add to repo 4430/head
Daniel Engberg [Sat, 3 Jun 2017 22:49:27 +0000 (00:49 +0200)]
utils/pcsc-tools: Add to repo

Add pcsc-tools to repo

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
6 years agoMerge pull request #4273 from dedeckeh/pr-netsnmp-trap
Stijn Tintel [Tue, 20 Jun 2017 03:44:19 +0000 (05:44 +0200)]
Merge pull request #4273 from dedeckeh/pr-netsnmp-trap

net-snmp: add notification config options

6 years agoMerge pull request #4498 from lynxis/libmicrohttpd0.9.55
Hannu Nyman [Mon, 19 Jun 2017 21:23:26 +0000 (00:23 +0300)]
Merge pull request #4498 from lynxis/libmicrohttpd0.9.55

libmicrohttpd: update to version 0.9.55

6 years agoeudev: remove package
Daniel Golle [Mon, 19 Jun 2017 16:29:53 +0000 (18:29 +0200)]
eudev: remove package

It's pretty useless as udev cannot run in coexistence with procd.
It was added mostly to get packages compiled which depend on libudev,
knowing that the udev related functionality will be broken.
eudev has now been replaced by libudev-fbsd which does the job much
better and may serve as a drop-in replacement with even some working
features.
In future we may want our own libudev-procd library which can also be
a mostly-stub implementation but may query things from procd using
ubus in some situations...

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agouvcdynctrl: get rid of udev
Daniel Golle [Mon, 19 Jun 2017 16:39:18 +0000 (18:39 +0200)]
uvcdynctrl: get rid of udev

The udev rule installed was ineffective as udev cannot run in
coexistence with procd. If needed, it should be reimplemented as
rule under /etc/hotplug.d/

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agousbip: use libudev-fbsd instead of eudev
Daniel Golle [Mon, 19 Jun 2017 16:34:48 +0000 (18:34 +0200)]
usbip: use libudev-fbsd instead of eudev

eudev was removed, switch to libudev-fbsd

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agolibudev-fbsd: add stubs for usbip
Daniel Golle [Mon, 19 Jun 2017 16:32:23 +0000 (18:32 +0200)]
libudev-fbsd: add stubs for usbip

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agopostgresql: fix build and improve packaging
Daniel Golle [Mon, 19 Jun 2017 18:47:16 +0000 (20:47 +0200)]
postgresql: fix build and improve packaging

* make sure contrib stuff gets built and installed
* refresh patches and improve Makefile while at it

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agolibmicrohttpd: update to version 0.9.55 4498/head
Alexander Couzens [Wed, 24 May 2017 09:39:29 +0000 (11:39 +0200)]
libmicrohttpd: update to version 0.9.55

Compile tested on ar71xx.
Runtime tested on ar71xx.

Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
6 years agoMerge pull request #4495 from dibdot/travelmate
Hannu Nyman [Mon, 19 Jun 2017 14:18:31 +0000 (17:18 +0300)]
Merge pull request #4495 from dibdot/travelmate

travelmate: update 0.8.0

6 years agoMerge pull request #4496 from aTanW/master
Hannu Nyman [Mon, 19 Jun 2017 14:17:52 +0000 (17:17 +0300)]
Merge pull request #4496 from aTanW/master

gammu: bump to a new upstream v1.38.4

6 years agottyd: update to 1.3.3
Shuanglei Tao [Mon, 19 Jun 2017 13:25:14 +0000 (21:25 +0800)]
ttyd: update to 1.3.3

Signed-off-by: Shuanglei Tao <tsl0922@gmail.com>
6 years agocgi-io: merge changes from luci2-io-helper
Daniel Golle [Mon, 19 Jun 2017 10:48:32 +0000 (12:48 +0200)]
cgi-io: merge changes from luci2-io-helper

luci2-io-helper: bugfix buckup script read timeout

Reading files from stdin will block for ever. The uhttpd is killing the
backup process after script_timeout.

Switching read to non blocking mode and add a waitpid for the slave
process does not end in a script_timeout anymore.

Signed-off-by: Florian Eckert <Eckert.Florian@googlemail.com>
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agogammu: bump to a new upstream v1.38.4 4496/head
aTanW [Mon, 19 Jun 2017 09:04:41 +0000 (12:04 +0300)]
gammu: bump to a new upstream v1.38.4

Signed-off-by: Vitaly Protsko <villy@sft.ru>
---
 Makefile |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

6 years agotravelmate: update 0.8.0 4495/head
Dirk Brenken [Fri, 16 Jun 2017 19:29:34 +0000 (21:29 +0200)]
travelmate: update 0.8.0

* use iwinfo instead iw for wlan scanning,
  scanning now works on radio-level
* enhance multiple radio support:
    * support STA-only radio configurations,
      e.g first radio with local AP, second radio
      with a bunch of STAs (without APs)

Signed-off-by: Dirk Brenken <dev@brenken.org>
6 years agonet-snmp: add notification config options 4273/head
Hans Dedecker [Tue, 18 Apr 2017 13:42:49 +0000 (15:42 +0200)]
net-snmp: add notification config options

Add config support which allow snmpd to take a more active role by sending
traps.

Following config options are supported which map directly on snmpd directives:
-trapcommunity
-trapsink
-trap2sink
-informsink
-authtrapenable
-v1trapaddress
-trapsess

Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
6 years agoMerge pull request #4493 from yousong/coreutils-stdbuf
Jo-Philipp Wich [Mon, 19 Jun 2017 05:27:37 +0000 (07:27 +0200)]
Merge pull request #4493 from yousong/coreutils-stdbuf

coreutils: stdbuf: fix missing libstdbuf.so

6 years agoopenconnect: openconnect-wrapper: rewrite 4494/head
Yousong Zhou [Mon, 8 May 2017 05:07:47 +0000 (13:07 +0800)]
openconnect: openconnect-wrapper: rewrite

 - use exec directly to eliminate a level in the process tree
 - use "$@" instead of "$*" to pass arguments to openconnect

According to openconnect(8), openconnect will call vpnc-script to
cleanup before quit when it received SIGINT(2) and will quit immediately
when it received SIGTERM (the default signal by kill command)

Before and after the change, openconnect process will be killed first
with SIGINT sent from netifd.  This was decided by the
'proto_kill_command "$config" 2' notify call in the proto script.

SIGKILL is the only other signal that can be sent from netifd when the
process did not quit on SIGINT on time.  There should be no need to trap
on signal 1 3 6 9 (HUP QUIT ABRT KILL)

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
6 years agocoreutils: stdbuf: fix missing libstdbuf.so 4493/head
Yousong Zhou [Mon, 19 Jun 2017 01:47:00 +0000 (09:47 +0800)]
coreutils: stdbuf: fix missing libstdbuf.so

Fixes #1674

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
6 years agorxtx: Fix permissions and format
Florian Fainelli [Mon, 19 Jun 2017 03:06:03 +0000 (20:06 -0700)]
rxtx: Fix permissions and format

* Don't make the Makefile executable
* run dos2unix on the Makefile

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
6 years agozerotier: Allow building with older GCC 4.8
Florian Fainelli [Mon, 19 Jun 2017 03:00:51 +0000 (20:00 -0700)]
zerotier: Allow building with older GCC 4.8

ZeroTier builds fine with GCC 4.8, so relax the check to make that
possible.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
6 years agolibinput: update to version 1.7.3 and use libudev-fbsd
Daniel Golle [Sun, 18 Jun 2017 21:20:59 +0000 (23:20 +0200)]
libinput: update to version 1.7.3 and use libudev-fbsd

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agolibudev-fbsd: add package
Daniel Golle [Sun, 18 Jun 2017 21:07:03 +0000 (23:07 +0200)]
libudev-fbsd: add package

This package provides a small udev shim originally intended for
FreeBSD/devd, but it works well for our non-systemd-environment as
well. It has limited features, but it's enough to detect and
enumerate input devices.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agolibevdev: update to version 1.5.6
Daniel Golle [Sun, 18 Jun 2017 23:32:07 +0000 (01:32 +0200)]
libevdev: update to version 1.5.6

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agombtools: use https to clone and add PKG_MIRROR_HASH
Daniel Golle [Sun, 18 Jun 2017 20:12:49 +0000 (22:12 +0200)]
mbtools: use https to clone and add PKG_MIRROR_HASH

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agolibp11: update to version 0.4.6
Daniel Golle [Sun, 18 Jun 2017 19:19:47 +0000 (21:19 +0200)]
libp11: update to version 0.4.6

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agopcsc-lite: update to version 1.8.22
Daniel Golle [Sun, 18 Jun 2017 17:31:05 +0000 (19:31 +0200)]
pcsc-lite: update to version 1.8.22

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agoglpk: update to version 4.62
Daniel Golle [Sun, 18 Jun 2017 17:02:08 +0000 (19:02 +0200)]
glpk: update to version 4.62

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agognurl: update to version 7.54.1
Daniel Golle [Sun, 18 Jun 2017 17:01:34 +0000 (19:01 +0200)]
gnurl: update to version 7.54.1

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agopostgresql: update to version 9.4.12
Daniel Golle [Sun, 18 Jun 2017 19:46:15 +0000 (21:46 +0200)]
postgresql: update to version 9.4.12

Fixes CVE-2017-7484 and CVE-2017-7485.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agoopentracker: bump source
Daniel Golle [Sun, 18 Jun 2017 18:58:51 +0000 (20:58 +0200)]
opentracker: bump source

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agolibowfat: update to version 0.31
Daniel Golle [Sun, 18 Jun 2017 18:53:28 +0000 (20:53 +0200)]
libowfat: update to version 0.31

now requires host-build to provide the 'ent' build-tool which generates
entities.h for use in scan_html.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agoopenzwave: Avoid picking host libraries
Florian Fainelli [Sun, 18 Jun 2017 21:23:40 +0000 (14:23 -0700)]
openzwave: Avoid picking host libraries

cpp/examples/MinOZW/Makefile contains this rule:

LIBS =  $(wildcard $(LIBDIR)/*.so $(LIBDIR)/*.dylib $(top_builddir)/*.so
$(top_builddir)/*.dylib $(top_builddir)/cpp/build/*.so
$(top_builddir)/cpp/build/*.dylib )
LIBSDIR = $(abspath $(dir $(firstword $(LIBS))))

with LIBDIR not being defined anywhere we end up picking up host
libraries.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
6 years agocgi-io: Find and search for libubus.h
Florian Fainelli [Sun, 18 Jun 2017 19:45:30 +0000 (12:45 -0700)]
cgi-io: Find and search for libubus.h

Fixes build errors with external toolchains:

[ 33%] Building C object CMakeFiles/cgi-io.dir/main.c.o
/home/florian/dev/openwrt/trunk/build_dir/target-mipsel-unknown-linux-gnu_glibc/cgi-io/main.c:30:21:
fatal error: libubus.h: No such file or directory
 #include <libubus.h>
                     ^
compilation terminated.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
6 years agofping: Set -std=gnu99 to fix build errors due to C99 constructs
Florian Fainelli [Sun, 18 Jun 2017 18:39:44 +0000 (11:39 -0700)]
fping: Set -std=gnu99 to fix build errors due to C99 constructs

Fixes build errors such as:

mipsel-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I..
-I/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/include
-I/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/include
-I/home/florian/dev/toolchains/stbgcc-4.8-1.5/usr/include
-I/home/florian/dev/toolchains/stbgcc-4.8-1.5/include  -Wall -Wextra
-Wno-sign-compare -DIPV6 -Os -pipe -mno-branch-likely -mips32r2
-mtune=24kc -fno-caller-saves -Wno-unused-result  -D_FORTIFY_SOURCE=1
-Wl,-z,now -Wl,-z,relro  -MT fping-optparse.o -MD -MP -MF
.deps/fping-optparse.Tpo -c -o fping-optparse.o `test -f 'optparse.c' ||
echo './'`optparse.c
optparse.c: In function 'permute':
optparse.c:55:5: error: 'for' loop initial declarations are only allowed
in C99 mode
     for (int i = index; i < options->optind - 1; i++)
     ^
optparse.c:55:5: note: use option -std=c99 or -std=gnu99 to compile your
code
optparse.c: In function 'optstring_from_long':
optparse.c:160:5: error: 'for' loop initial declarations are only
allowed in C99 mode
     for (int i = 0; !longopts_end(longopts, i); i++) {

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
6 years agognutls: updated to 3.5.13
Nikos Mavrogiannopoulos [Sun, 18 Jun 2017 11:18:44 +0000 (13:18 +0200)]
gnutls: updated to 3.5.13

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
6 years agolibtasn1: updated to 4.12
Nikos Mavrogiannopoulos [Sun, 18 Jun 2017 11:20:40 +0000 (13:20 +0200)]
libtasn1: updated to 4.12

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
6 years agoopenconnect: new option mtu
Yousong Zhou [Mon, 8 May 2017 05:07:23 +0000 (13:07 +0800)]
openconnect: new option mtu

According to openconnect --help output:

  -m, --mtu=MTU                   Request MTU from server
      --base-mtu=MTU              Indicate path MTU to/from server

Fixes #2099 by allowing setting tunnel mtu

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
6 years agoopenconnect: drop stale config: interface
Yousong Zhou [Mon, 8 May 2017 05:06:10 +0000 (13:06 +0800)]
openconnect: drop stale config: interface

It was introduced with 41f8d5465 ("openconnect: fix a couple of minor
things and add an interface option") and not needed since 4083de9d7
("openconnect: use proto_add_host_dependency")

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
6 years agobtrfs-progs: no longer maintained by me
Daniel Golle [Sun, 18 Jun 2017 11:06:31 +0000 (13:06 +0200)]
btrfs-progs: no longer maintained by me

Remove myself as maintainer.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
6 years agoMerge pull request #4489 from DocLM/gphoto2
Hannu Nyman [Sun, 18 Jun 2017 10:58:32 +0000 (13:58 +0300)]
Merge pull request #4489 from DocLM/gphoto2

libgphoto2: fix configure args to disable libgd

6 years agolibgphoto2: fix configure args to disable libgd 4489/head
Leonardo Medici [Sun, 18 Jun 2017 10:10:17 +0000 (12:10 +0200)]
libgphoto2: fix configure args to disable libgd

Signed-off-by: Leonardo Medici <leonardo_medici@me.com>
6 years agoMerge pull request #4429 from sdwalker/cleanup
Hannu Nyman [Sat, 17 Jun 2017 06:25:22 +0000 (09:25 +0300)]
Merge pull request #4429 from sdwalker/cleanup

packages: cleanup Makefile variables

6 years agoMerge pull request #4475 from commodo/fix-distutils-import
Hannu Nyman [Sat, 17 Jun 2017 06:22:58 +0000 (09:22 +0300)]
Merge pull request #4475 from commodo/fix-distutils-import

python3: fix distutils path to package when using bytecodes

6 years agobtrfs-progs: Fix build with external toolchains
Florian Fainelli [Sat, 17 Jun 2017 03:06:20 +0000 (20:06 -0700)]
btrfs-progs: Fix build with external toolchains

TARGET_CPPFLAGS were not propagated correctly leading to these kinds of
build failure:

btrfstune.c:26:23: fatal error: uuid/uuid.h: No such file or directory
 #include <uuid/uuid.h>
                       ^
compilation terminated.
btrfs-find-root.c:24:18: fatal error: zlib.h: No such file or directory
 #include <zlib.h>
                  ^
compilation terminated.
mkfs/common.c:18:23: fatal error: uuid/uuid.h: No such file or directory
 #include <uuid/uuid.h>

Fix that by passing TARGET_CPPFLAGS via EXTRA_CFLAGS

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
6 years agoreaver: Fix build with external toolchains
Florian Fainelli [Sat, 17 Jun 2017 02:53:59 +0000 (19:53 -0700)]
reaver: Fix build with external toolchains

We would not be able to search for pcap.h because CFLAGS are not passed
from src/Makefile down to src/wps/Makefile:

make[4]: Entering directory
'/home/florian/dev/openwrt/trunk/build_dir/target-mipsel-unknown-linux-gnu_glibc/reaver-1.4/src/wps'
mipsel-linux-gnu-gcc -I../utils -I ../ wps_attr_build.c -c
mipsel-linux-gnu-gcc -I../utils -I ../ wps_attr_parse.c -c
mipsel-linux-gnu-gcc -I../utils -I ../ wps_attr_process.c -c
mipsel-linux-gnu-gcc -I../utils -I ../ wps.c -c
mipsel-linux-gnu-gcc -I../utils -I ../ wps_common.c -c
mipsel-linux-gnu-gcc -I../utils -I ../ wps_dev_attr.c -c
mipsel-linux-gnu-gcc -I../utils -I ../ wps_enrollee.c -c
mipsel-linux-gnu-gcc -I../utils -I ../ wps_registrar.c -c
In file included from ../misc.h:41:0,
                 from wps_registrar.c:27:
../defs.h:43:18: fatal error: pcap.h: No such file or directory
 #include <pcap.h>
                  ^
compilation terminated.
Makefile:28: recipe for target 'wps_registrar.o' failed

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
6 years agostoken: Explicitly link with zlib
Florian Fainelli [Sat, 17 Jun 2017 02:36:32 +0000 (19:36 -0700)]
stoken: Explicitly link with zlib

Fixes build issues with external toolchains:
/home/florian/dev/toolchains/stbgcc-4.8-1.5/bin/../lib/gcc/mipsel-linux-gnu/4.8.5/../../../../mipsel-linux-gnu/bin/ld:
warning: libz.so.1, needed by
/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/lib/libxml2.so,
not found (try using -rpath or -rpath-link)
/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/lib/libxml2.so:
undefined reference to `gzopen64'
/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/lib/libxml2.so:
undefined reference to `gzdirect'
/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/lib/libxml2.so:
undefined reference to `gzclose'
/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/lib/libxml2.so:
undefined reference to `gzwrite'
/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/lib/libxml2.so:
undefined reference to `gzdopen'
/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/lib/libxml2.so:
undefined reference to `gzread'
collect2: error: ld returned 1 exit status

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
6 years agophp7: add SNMP module to bundle 4485/head
Philip Prindeville [Sat, 17 Jun 2017 01:51:11 +0000 (19:51 -0600)]
php7: add SNMP module to bundle

Add native support for SNMP manager functions, so scripts don't
have to call system("snmpget -v2c ...") etc.  Cuts down on fork/exec
pairs and simplifies issues with parsing intermediate output.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
6 years agoFix dnsmadeeasy ddns url
Alvaro [Andor] [Thu, 15 Jun 2017 20:05:50 +0000 (22:05 +0200)]
Fix dnsmadeeasy ddns url

Dnsmadeeasy dyndns service url was wrong, fixed both the address, the parameters, and the ssl connection.

6 years agoMerge remote-tracking branch 'diizzyy/packages/patch-54'
Rafał Miłecki [Thu, 15 Jun 2017 05:52:38 +0000 (07:52 +0200)]
Merge remote-tracking branch 'diizzyy/packages/patch-54'

6 years agomultimedia/minidlna: Update to 1.2.0 4421/head
Daniel Engberg [Thu, 1 Jun 2017 16:30:14 +0000 (18:30 +0200)]
multimedia/minidlna: Update to 1.2.0

Update minidlna to 1.2.0
Switch to tarball

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
6 years agoMerge pull request #4462 from ryzhovau/lcdproc_ldflags
Jo-Philipp Wich [Wed, 14 Jun 2017 23:44:58 +0000 (01:44 +0200)]
Merge pull request #4462 from ryzhovau/lcdproc_ldflags

lcdproc: respect LDFLAGS

6 years agoMerge pull request #4481 from MikePetullo/openldap
Daniel Golle [Wed, 14 Jun 2017 22:41:59 +0000 (00:41 +0200)]
Merge pull request #4481 from MikePetullo/openldap

openldap: update to 2.4.45

6 years agoopenldap: update to 2.4.45 4481/head
W. Michael Petullo [Wed, 14 Jun 2017 22:17:41 +0000 (18:17 -0400)]
openldap: update to 2.4.45

Fixes CVE-2017-9287

Signed-off-by: W. Michael Petullo <mike@flyn.org>
6 years agoMerge pull request #4479 from zx2c4/patch-6
Hannu Nyman [Wed, 14 Jun 2017 13:20:55 +0000 (16:20 +0300)]
Merge pull request #4479 from zx2c4/patch-6

wireguard: remove misspelled debugging line

6 years agowireguard: remove misspelled debugging line 4479/head
Jason A. Donenfeld [Wed, 14 Jun 2017 01:15:27 +0000 (03:15 +0200)]
wireguard: remove misspelled debugging line

There are no other "echo" debug lines in this file, and it seems
clear that this one was accidentally left as a debugging line,
since it misspelled "dependency". So, we just remove this line.

We don't bump the package version, though, because this is
pretty inconsequential.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>