aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* openconnect: openconnect-wrapper: rewriteYousong Zhou2017-06-19
| | | | | | | | | | | | | | | | | | | - 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>
* libinput: update to version 1.7.3 and use libudev-fbsdDaniel Golle2017-06-19
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* libudev-fbsd: add packageDaniel Golle2017-06-19
| | | | | | | | | 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>
* libevdev: update to version 1.5.6Daniel Golle2017-06-19
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* mbtools: use https to clone and add PKG_MIRROR_HASHDaniel Golle2017-06-19
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* libp11: update to version 0.4.6Daniel Golle2017-06-19
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* pcsc-lite: update to version 1.8.22Daniel Golle2017-06-19
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* glpk: update to version 4.62Daniel Golle2017-06-19
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* gnurl: update to version 7.54.1Daniel Golle2017-06-19
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* postgresql: update to version 9.4.12Daniel Golle2017-06-19
| | | | | | Fixes CVE-2017-7484 and CVE-2017-7485. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* opentracker: bump sourceDaniel Golle2017-06-19
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* libowfat: update to version 0.31Daniel Golle2017-06-19
| | | | | | | 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>
* openzwave: Avoid picking host librariesFlorian Fainelli2017-06-18
| | | | | | | | | | | | | | 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>
* cgi-io: Find and search for libubus.hFlorian Fainelli2017-06-18
| | | | | | | | | | | | | 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>
* fping: Set -std=gnu99 to fix build errors due to C99 constructsFlorian Fainelli2017-06-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* gnutls: updated to 3.5.13Nikos Mavrogiannopoulos2017-06-18
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* libtasn1: updated to 4.12Nikos Mavrogiannopoulos2017-06-18
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* openconnect: new option mtuYousong Zhou2017-06-18
| | | | | | | | | | | 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>
* openconnect: drop stale config: interfaceYousong Zhou2017-06-18
| | | | | | | | 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>
* btrfs-progs: no longer maintained by meDaniel Golle2017-06-18
| | | | | | Remove myself as maintainer. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* Merge pull request #4489 from DocLM/gphoto2Hannu Nyman2017-06-18
|\ | | | | libgphoto2: fix configure args to disable libgd
| * libgphoto2: fix configure args to disable libgdLeonardo Medici2017-06-18
|/ | | | Signed-off-by: Leonardo Medici <leonardo_medici@me.com>
* Merge pull request #4429 from sdwalker/cleanupHannu Nyman2017-06-17
|\ | | | | packages: cleanup Makefile variables
| * packages: cleanup Makefile variablesStephen Walker2017-06-03
| | | | | | | | | | | | Standard assignment is immediate expansion without any extraneous spacing, RFC822 compliant email addresses and consistent section assignments Signed-off-by: Stephen Walker <stephendwalker+github@gmail.com>
* | Merge pull request #4475 from commodo/fix-distutils-importHannu Nyman2017-06-17
|\ \ | | | | | | python3: fix distutils path to package when using bytecodes
| * | python3: fix distutils path to package when using bytecodesAlexandru Ardelean2017-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If there is only Python bytecodes, then the __init__.py script will be concatenated, and the __init__.pyc as well. This is becase this bit `path = os.path.join(path, '__init__'+extension)` is iterated twice. This is a bug in Python3, also because we ship bytecodes instead of source code [ with Python & Python3 ]. Python is not affected. Reported-by: Mirko Vogt <mirko@nanl.de> Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | btrfs-progs: Fix build with external toolchainsFlorian Fainelli2017-06-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | reaver: Fix build with external toolchainsFlorian Fainelli2017-06-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | stoken: Explicitly link with zlibFlorian Fainelli2017-06-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | Merge remote-tracking branch 'diizzyy/packages/patch-54'Rafał Miłecki2017-06-15
|\ \ \
| * | | multimedia/minidlna: Update to 1.2.0Daniel Engberg2017-06-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | | Merge pull request #4462 from ryzhovau/lcdproc_ldflagsJo-Philipp Wich2017-06-15
|\ \ \ \ | | | | | | | | | | lcdproc: respect LDFLAGS
| * | | | lcdproc: respect LDFLAGSAlexander Ryzhov2017-06-08
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
* | | | | Merge pull request #4481 from MikePetullo/openldapDaniel Golle2017-06-15
|\ \ \ \ \ | | | | | | | | | | | | openldap: update to 2.4.45
| * | | | | openldap: update to 2.4.45W. Michael Petullo2017-06-14
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CVE-2017-9287 Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | | | Merge pull request #4479 from zx2c4/patch-6Hannu Nyman2017-06-14
|\ \ \ \ \ | | | | | | | | | | | | wireguard: remove misspelled debugging line
| * | | | | wireguard: remove misspelled debugging lineJason A. Donenfeld2017-06-14
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | | | Merge pull request #4476 from lukbaj/masterHannu Nyman2017-06-13
|\ \ \ \ \ | | | | | | | | | | | | libplist: update to 2.0.0
| * | | | | libplist: update to 2.0.0Lukasz Baj2017-06-13
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Lukasz Baj <l.baj@radytek.com>
* | | | | | Merge pull request #4477 from zx2c4/patch-5Hannu Nyman2017-06-13
|\ \ \ \ \ \ | |/ / / / / |/| | | | | wireguard: version bump
| * | | | | wireguard: version bumpJason A. Donenfeld2017-06-13
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From upstream's changelog: * timers: queue up killing ephemerals only if not already We fix up a small detail in the timer logic that changed during the last snapshot. * receive: trim incoming packets to IP header length Packets are now trimmed to their actual length, not their length+padding, before handing to the rest of the network subsystem, so that packets look pretty in tcpdump. This doesn't actually affect what userspace sees, since the kernel trims it at a later stage, but it does make pcaps a bit nicer to use. * curve25519: use more standard label convention in asm This ensures that perf(1) shows the function name instead of the label name. * compat: remove padata hotplug code Fixes building on kernels that have HOTPLUG enabled but no PADATA support. * config: add new line for style * device: do-while assignment style * peer: explicitly initialize atomic Style. * noise: fix race when replacing handshake Handle a situation in which three peers, all running on the same system, begin a handshake with all three of each other, at exactly the same time, on a multi-CPU system. * random: wait for random bytes when generating nonces and ephemerals We've been working with upstream to add a new API to the kernel for ensuring that the RNG actually is seeded. Until they merge it for 4.13, we provide a poly-fill to the compat code. This means that WireGuard will block during handshakes until the RNG has enough entropy, so that it's never in a circumstance in which ephemeral keys are generated from bad randomness. * go test: properly pad message * go test: correct tai64n and formatting * external-tests: add keepalive packet * go test: use x/crypto for blake2s now that we have 128-bit mac * external-tests: trim the fat Improvements for the external tests. * wg-quick: make sure we have empty table for both v6 and v4 * wg-quick: match ipv6 default route more broadly Tiny nits with wg-quick, one of which should now allow multiple v6-only wg-quick instances running at the same time. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* | | | | freeradius2: move to packages-abandonedDaniel Golle2017-06-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I'm no longer going to maintain freeradius2. Please use freeradius3 instead. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | Merge pull request #4464 from oskar456/aiccudeleteHannu Nyman2017-06-12
|\ \ \ \ \ | | | | | | | | | | | | aiccu: remove package
| * | | | | aiccu: remove packageOndřej Caletka2017-06-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Aiccu is a client utility used to connect to the SixXS platform. As the SixXS platform has been sunset on 2017-06-06[1] and the server parts of TIC/AYIYA protocol implementations haven't been published, there's no point to maintain aiccu package anymore. [1]: https://www.sixxs.net/sunset/ Signed-off-by: Ondřej Caletka <ondrej@caletka.cz>
* | | | | | glib2: update to 2.52.2Peter Wagner2017-06-12
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | | git: update to 2.13.1Peter Wagner2017-06-12
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | | irssi: update to 1.0.3Peter Wagner2017-06-12
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | | Merge pull request #4473 from nxhack/disable-LDFLAGSICUDTHannu Nyman2017-06-12
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | icu: Don't link icudata as a data only library
| * | | | | icu: Don't link icudata as a data only libraryHirokazu MORIKAWA2017-06-12
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | libicudata.so not build hard-float ABI Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
* | | | | libextractor: update to version 1.4Daniel Golle2017-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | our local patches have been merged upstream and part of the new release Signed-off-by: Daniel Golle <daniel@makrotopia.org>