aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Merge pull request #2926 from cshore/pull-request-msmtp-ca-bundlechamptar2016-07-18
|\ | | | | mail/msmtp: Make msmtp ssl version depend on ca-bundle
| * mail/msmtp: Make msmtp ssl version depend on ca-bundleDaniel Dickinson2016-07-04
| | | | | | | | | | | | | | | | msmtp fails when /etc/ssl/certs/ca-certifictes.crt bundle is not present (for the SSL version), therefore add a dependency on ca-bundle packages (newly added to trunk). Signed-off-by: Daniel Dickinson <openwrt@daniel.thecshore.com>
* | Merge pull request #2959 from jow-/procps-build-dependschamptar2016-07-18
|\ \ | | | | | | procps-ng: add required build dependencies
| * | procps-ng: add required build dependenciesJo-Philipp Wich2016-07-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since 3048ebedec5b989a621529eec159cf5aa17b58b6 added a autoreconfig fixup to procps-ng, the build fails on certain systems with errors like configure.ac:72: error: possibly undefined macro: AM_GNU_GETTEXT_VERSION or configure:14998: error: possibly undefined macro: AM_ICONV_LINKFLAGS_BODY Fix the issue by adding build time dependencies on the `gettext` and `libiconv` stub libraries to ensure that `gettext.m4` and `iconv.m4` are installed into the staging directory before `procps-ng` is getting reconfigured. Fixes https://github.com/openwrt/packages/issues/2890#issuecomment-231115844 Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* | | strongswan: bump to 5.5.0 (#2976)Stijn Tintel2016-07-18
| | | | | | | | | Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* | | Merge pull request #2975 from zorun/wireguard-updatechamptar2016-07-18
|\ \ \ | | | | | | | | wireguard: Bump to 0.0.20160711
| * | | wireguard: Bump to 0.0.20160711Baptiste Jonglez2016-07-17
|/ / / | | | | | | | | | Signed-off-by: Baptiste Jonglez <git@bitsofnetworks.org>
* | | Merge pull request #2964 from dibdot/adblockTed Hess2016-07-14
|\ \ \ | | | | | | | | adblock: release 1.4.0
| * | | adblock: release 1.4.0Dirk Brenken2016-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * rework/speed up overall sort * simplified dns error handling Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | Merge pull request #2962 from semik/softflowdchamptar2016-07-14
|\ \ \ \ | |_|/ / |/| | | softflowd: update softflowd.init do use procd
| * | | softflowd: update softflowd.init to use procdJan Tomasek2016-07-14
|/ / / | | | | | | | | | Signed-off-by: Jan Tomasek <jan@tomasek.cz>
* | | krb5: Bump to v1.14.2Xotic7502016-07-12
| | | | | | | | | | | | Signed-off-by: Graham Fairweather <xotic750@gmail.com>
* | | Merge pull request #2437 from stintel/strongswanchamptar2016-07-12
|\ \ \ | | | | | | | | strongswan: update to 5.4, add plugins, fixes
| * | | strongswan: bump to 5.4.0Stijn Tintel2016-07-06
| | | | | | | | | | | | | | | | Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
| * | | strongswan: add forecast pluginStijn Tintel2016-07-06
| | | | | | | | | | | | | | | | | | | | | | | | Closes #1868. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
| * | | strongswan: fix alignment in connmark pluginStijn Tintel2016-07-06
| | | | | | | | | | | | | | | | Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
| * | | strongswan: run sleep with integer argumentStijn Tintel2016-07-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The default busybox config used by OpenWrt does not enable floating point number support for the sleep applet. This can cause an error when stopping or restarting strongswan: sleep: invalid number '0.1' Replace the float with an integer to fix this. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* | | | Merge pull request #2446 from jow-/CVE-2016-2381champtar2016-07-12
|\ \ \ \ | | | | | | | | | | perl: securely handle duplicate environment variables [CVE-2016-2381]
| * | | | perl: securely handle duplicate environment variables [CVE-2016-2381]Jo-Philipp Wich2016-03-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Stephane Chazelas discovered a bug in the environment handling in Perl. Perl provides a Perl-space hash variable, %ENV, in which environment variables can be looked up. If a variable appears twice in envp, only the last value would appear in %ENV, but getenv would return the first. Perl's taint security mechanism would be applied to the value in %ENV, but not to the other rest of the environment. This could result in an ambiguous environment causing environment variables to be propagated to subprocesses, despite the protections supposedly offered by taint checking. With this update Perl changes the behavior to match the following: a) %ENV is populated with the first environment variable, as getenv would return. b) Duplicate environment entries are removed. References: * http://perl5.git.perl.org/perl.git/commit/ae37b791a73a9e78dedb89fb2429d2628cf58076 * https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2381 Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | Merge pull request #2919 from champtar/bluelogchamptar2016-07-12
|\ \ \ \ \ | | | | | | | | | | | | bluelog: fix oui.txt processing
| * | | | | bluelog: fix oui.txt processingJo-Philipp Wich2016-07-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Use a temporary file path within the package build directory to avoid cluttering the host systems `/tmp` directory. - Switch to a gzipped, snapshotted copy of the `oui.txt` file since the upstream IEEE server is extremely slow, also fetching an unversioned HTTP resource during compilation breaks reproducable builds. Signed-off-by: Jo-Philipp Wich <jo@mein.io> [rework to use standard download facility] Signed-off-by: Etienne CHAMPETIER <champetier.etienne@gmail.com>
* | | | | | ipsec-tools: fix syntax error in default racoon configJo-Philipp Wich2016-07-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The default /etc/config/racoon shipped by ipsec-tools lacks an option keyword on the p2_proposal line, leading to a syntax error when processing the file. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* | | | | | Merge pull request #2957 from ianchi/youtube-dlchamptar2016-07-12
|\ \ \ \ \ \ | | | | | | | | | | | | | | youtube-dl:update version
| * | | | | | youtube-dl:update versionAdrian Panella2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Adrian Panella <ianchi74@outlook.com>
* | | | | | | Merge pull request #2941 from hojuruku/p_mini_snmpdchamptar2016-07-11
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | mini_snmpd: new upstream/package maintainer, new version, init procd multi instance support with uci validation & network interface monitoring.
| * | | | | | mini_snmpd: @champtar requested PKG_FIXUP:=autoreconf take care of strip and ↵Luke McKee2016-07-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CFLAGS options Signed-off-by: Luke McKee <hojuruku@gmail.com>
| * | | | | | mini_snmpd: 1.4-rc1 add git,autoconf,procd init script,uci validation - new ↵Luke McKee2016-07-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | upstream/openwrt maintainer Makes use of all available runtime options that can be passed to mini_snmpd such as -I listen_on interface Run-tested on trunk on ar71xx. Please review the init script regarding procd monitoring interfaces, though everything else due to the conversion to procd should be and done properly, if not overkill compared to most other script bundled with openwrt. The main benefit of all this is now larger routers can run multiple instances of mini_snmpd on different ports, to get around the MIB hard coded 4 interface/mountpoint limits. Due to somewhat lacking dev / package maintainer docs except for http://wiki.prplfoundation.org/wiki/Procd_reference writing this script took longer than it should. You can see it's evolution here: https://github.com/hojuruku/openwrt-packages/blob/mini_snmpd/net/mini_snmpd/files/mini_snmpd.init If everything in it is found to be sane, please include it to the openwrt wiki on procd as an example. Due to procd / uci /sbin/validate_data cbi element datatype (uciname) being used to check uci config, the configuration file now only takes openwrt uci network names not physical network names as it did before. http://git.openwrt.org/?p=packages.git;a=commit;h=783e5578ad104d1ca3c31582add08fc8eb4ad083 Like busybox the package Makefile has depends for all runtime dependencies needed by the init script. mini_snmpd only depends on libc squashed commits: mini_snmpd: fix typo to fix procd triggers calling daemon binary directly instead of init script - misuse of $PROG var mini_snmpd: enable SSP & mini_snmpd to start by default and listen on lan mini_snmpd: disable RELRO blocker in Makefile after consulation mini_snmpd: add smarts to init script to detect if ubusd hasn't started yet mini_snmpd: fix init script - ubus -S doesn't print meaningful errors to give the user mini_snmpd: Makefile roll back Makefile PKG_RELEASE to 1 for feng shui
| * | | | | | mini_snmpd: patches are now all merged upstream in 1.4-rc1Luke McKee2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Luke McKee <hojuruku@gmail.com>
| * | | | | | mini_snmpd: import 1.2b from oldpackages for reference ↵Luke McKee2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | http://git.openwrt.org/?p=packages.git;a=commit;h=787e4e15a2792eb4d059001e1fb8bc84da8d65fd Signed-off-by: Luke McKee <hojuruku@gmail.com>
* | | | | | | Merge pull request #2936 from padre-lacroix/masterTed Hess2016-07-11
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | darkstat: Network bandwidth monitor - version 3.0.719
| * | | | | | | darkstat: Network bandwidth monitor - version 3.0.719Jean-Michel Lacroix2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jean-Michel Lacroix <lacroix@lepine-lacroix.info> From the oldpackages. Updated to version 3.0.719, new config file to add more options Rewritten init file to take in account the new config file and removing a bug when stopping the daemon. Corrected license information in Makefile Signed-off-by: Jean-Michel Lacroix <lacroix@lepine-lacroix.info>
* | | | | | | | Merge pull request #2934 from rajanvaja/chillichamptar2016-07-11
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | coova-chilli: Fix UCI parse error
| * | | | | | | | coova-chilli: Fix UCI parse errorRajan Vaja2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | UCI commands report errors in parsing coova-chilli sample configuration file. Fix this issue by using proper format in configuration. Signed-off-by: Rajan Vaja <rajan.vaja@gmail.com>
* | | | | | | | | Merge pull request #2952 from zorun/fix_md5sumchamptar2016-07-11
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Remove incorrect use of PKG_SHA256SUM
| * | | | | | | | | Remove incorrect use of PKG_SHA256SUMBaptiste Jonglez2016-07-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | OpenWRT/LEDE only understands the PKG_MD5SUM variable, and detects if the hash is e.g. SHA256 by looking at the length of the hash. This affects libs/libmicrohttpd, mail/ssmtp and utils/mc. Signed-off-by: Baptiste Jonglez <git@bitsofnetworks.org>
* | | | | | | | | | Merge pull request #2954 from the-alien/masterchamptar2016-07-11
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | python-psycopg2: update to 2.6.2
| * | | | | | | | | | python-psycopg2: update to 2.6.2alien2016-07-11
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitry Trefilov <the-alien@live.ru>
* | | | | | | | | | Merge pull request #2955 from xypron/relayctlchamptar2016-07-11
|\ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / |/| | | | | | | | | relayctl: update license information
| * | | | | | | | | relayctl: update license information, use @SFHeinrich Schuchardt2016-07-11
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The license BSD-3-Clause. Indicate license file. Use @SF for PKG_SOURCE_URL instead of sourceforge.net URL. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
* | | | | | | | | Merge pull request #2953 from oskarirauta/masterYousong Zhou2016-07-11
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | lua-lsqlite3: new package
| * | | | | | | | | lua-lsqlite3: new packageOskari Rauta2016-07-10
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Maintainer: Oskari Rauta / @oskarirauta Compile tested: x86, APU-4D, Chaos Calmer Run tested: ar71xx, WNDR3800, Chaos Calmer and x86, APU-4D, Chaos Calmer - tests done. Performs as should. Description: LuaSQLite3 is a thin wrapper around the public domain SQLite3 database engine. This commit adds another sqlite3 module for Lua. This is very popular and in my opinion, suites even better for some projects requiring sqlite3 in Lua than already luasql, even though luasql is more versatile since it supports other databases as well. It wouldn't hurt to include this in the repository. This can also be installed with luarocks, but I prefer a openwrt package. Signed-off-by: Oskari Rauta oskari.rauta@gmail.com
* | | | | | | | | Merge pull request #2891 from dibdot/ssmtpTed Hess2016-07-10
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | ssmtp: change symlink handling
| * | | | | | | | | ssmtp: change symlink handlingDirk Brenken2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * sendmail symlink handling is no longer forced and part of install step Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | | | | | | | Merge pull request #2949 from zorun/masterTed Hess2016-07-10
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | wireguard: Bump to 0.0.20160708.1
| * | | | | | | | | | wireguard: Bump to 0.0.20160708.1Baptiste Jonglez2016-07-10
| | |/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also add the SHA256 checksum, since upstream now publishes it when releasing: https://lists.zx2c4.com/pipermail/wireguard/2016-July/000196.html Signed-off-by: Baptiste Jonglez <git@bitsofnetworks.org>
* | | | | | | | | | Merge pull request #2942 from sdwalker/variable-cleanupTed Hess2016-07-10
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | packages: cleanup Makefile variables
| * | | | | | | | | packages: cleanup Makefile variablesStephen Walker2016-07-09
| | |_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Standard assignment is immediate expansion without any extraneous spacing, RFC822 compliant email addresses without any quotation marks and long git hashes Signed-off-by: Stephen Walker <stephendwalker+github@gmail.com>
* | | | | | | | | Merge pull request #2945 from MikePetullo/grilo-pluginsYousong Zhou2016-07-10
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | grilo-plugins: update to 0.3.2
| * | | | | | | | | grilo-plugins: update to 0.3.2W. Michael Petullo2016-07-09
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | | | | | | | Merge pull request #2946 from MikePetullo/lcdgriloYousong Zhou2016-07-10
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | lcdgrilo: update to 0.0.10