aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Merge pull request #920 from stintel/snmpd_procdJo-Philipp Wich2015-03-19
|\ | | | | net-snmp: cleanup and use procd
| * net-snmp: monitor ifindex changesStijn Tintel2015-02-18
| | | | | | | | | | | | | | | | | | When an ifindex for an interface changes, some monitoring tools can no longer find the interface and send alerts. Monitor all network interfaces via the procd netdev parameter, so that /etc/init.d/snmpd reload will restart snmpd if any ifindex changed. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
| * net-snmp: cosmetic changes in snmpd init scriptStijn Tintel2015-02-18
| | | | | | | | | | | | | | | | - Refactor RUN_C into CONFIGFILE, as used in dnsmasq and igmpproxy init scripts. - Add a newline after each function definition. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
| * net-snmp: convert snmpd to procdStijn Tintel2015-02-18
| | | | | | | | Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
| * net-snmp: remove /etc/default/snmpd DebianismStijn Tintel2015-02-18
| | | | | | | | Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* | Merge pull request #1017 from mhaas/stunnel-5.10champtar2015-03-18
|\ \ | | | | | | | | | | | | stunnel: bring back stunnel compile tested for ar71xx
| * | stunnel: Bring it back at v5.10Michael Haas2015-03-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From: Michael Haas <haas@computerlinguist.org> * init script no longer creates certificates (consider client mode as use case) * patches/010_fix_getnameinfo.patch: Fix getnameinfo signature * patches/011_disable_ssp_linking.patch: Disable -fstack-protector as it is not always available in OpenWRT * old patches (in oldpackages) no longer necessary * remove libwrap dependency * remove libpthread dependency * respect CONFIG_IPV6 * init script uses procd * sample stunnel.conf runs in client mode - prevents start failure, does not require cert Possible enhancement: automatically generate certificate as done in uhttpd. However, as client mode is a possible use case, I'd rather not. Additionally, stunnel may use several certs with user-defined locations and we can't easily set a cert location via command-line args. The package is based on https://sites.google.com/site/twisteroidambassador/openwrt/stunnel Signed-off-by: Michael Haas <haas@computerlinguist.org>
* | | Merge pull request #1036 from hnyman/patch275champtar2015-03-18
|\ \ \ | | | | | | | | | | | | | | | | patch: bump version to 2.7.5 compile tested for ar71xx
| * | | patch: bump version to 2.7.5Hannu Nyman2015-03-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bump GNU patch from 2.7.4 to 2.7.5. Changelog: http://git.savannah.gnu.org/cgit/patch.git/tree/NEWS Changes in version 2.7.5: * There are users which expect patch to follow symbolic links in the working directory, so patch now again follows symbolic links as long as they do not leave the working directory. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | | snort: bump to 2.9.7.2Mario Halambek2015-03-18
| | | | | | | | | | | | | | | | Signed-off-by: Mario Halambek <mario.halambek@sartura.hr>
* | | | Merge pull request #1046 from arfett/masterSteven Barth2015-03-18
|\ \ \ \ | | | | | | | | | | mwan3-luci: update to 1.4-2
| * | | | version updated to 1.4-2 (mwan3 1.6 compatible)Aedan Renner2015-03-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | new mwan3 1.6 rule options added: -sticky -timeout -ipset
* | | | | Merge pull request #1047 from Adze1502/masterSteven Barth2015-03-18
|\ \ \ \ \ | | | | | | | | | | | | mwan3: update to version 1.6-1
| * | | | | mwan3: update to version 1.6-1Adze15022015-03-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add ipset support (ipset version >6.22 with ipmark required) Add stickiness feature Signed-off-by: Jeroen Louwes <jeroen.louwes@gmail.com>
* | | | | | Merge remote-tracking branch 'tru7/linknx'Michael Heimpold2015-03-17
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
| * | | | | | linknx: streamline makefileOthmar Truniger2015-03-17
| |/ / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* / / / / / knxd: tune Makefile, new upstream versionOthmar Truniger2015-03-17
|/ / / / / | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* | | | | Merge pull request #1043 from sairon/python-package-extra-configure-argsSteven Barth2015-03-16
|\ \ \ \ \ | | | | | | | | | | | | python: added configure args for distutils path detection
| * | | | | python: added configure args for distutils path detectionJan Čermák2015-03-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | python-package.mk now defines (extends) CONFIGURE_ARGS that are adjusting PREFIX and EXEC_PREFIX in distutils.sysconfig during compilation. These variables are sometimes used by autotools to detect path to Python header files. Adding these variables to python-package.mk fixes compilation of legacy autotools-configured packages that already include python-package.mk and do not overwrite CONFIGURE_ARGS. Signed-off-by: Jan Čermák <jan.cermak@nic.cz> Cc: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | | lua-penlight: Bump to version 1.3.2Karl Palsson2015-03-16
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | And include the pkg md5sum finally. Signed-off-by: Karl Palsson <karlp@remake.is>
* | | | | git: update to 2.3.3Peter Wagner2015-03-16
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | mmc-utils: don't set -D_FORTIFY_SOURCE in MakefileDaniel Golle2015-03-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now that security features are set globally, having the FORTIFY_SOURCE option set in Makefile breaks the build when CONFIG_PKG_FORTIFY_SOURCE_{1,2} is enabled as well. arm-openwrt-linux-uclibcgnueabi-gcc -Wall -Werror -Wuninitialized -Wundef -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -Os -pipe -march=armv6k -mtune=mpcore -fno-caller-saves -fhonour-copts -Wno-error=unused-but-set-variable -mfloat-abi=soft -Wformat -Werror=format-security -fstack-protector -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -Wp,-MMD,./.mmc.o.d,-MT,mmc.o -c mmc.c -o mmc.o <command-line>:0:0: error: "_FORTIFY_SOURCE" redefined [-Werror] <command-line>:0:0: note: this is the location of the previous definition cc1: all warnings being treated as errors Makefile:35: recipe for target 'mmc.o' failed Fix this by removing -D_FORTIFY_SOURCE=2 from Makefile. Signed-off-by: Daniel Golle <daniel@makrotopia.org> Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | sslh: update to 1.17Jonathan McCrohan2015-03-15
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>
* | | | | Merge pull request #1000 from luizluca/git_httptripolar2015-03-15
|\ \ \ \ \ | | | | | | | | | | | | Add git HTTP(s) support (and FTP)
| * | | | | git: add subpackage for http(s)/ftp(s) commandsLuiz Angelo Daros de Luca2015-03-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch add a new package, git-http, that contains all http related commands (and ftp as extra). All http/ftp depends on libcurl. Even without SSL suport in libcurl, git compiles and it returns an informative error only at runtime. The use of symlinks now are trigged using NO_INSTALL_HARDLINKS env and not based only on Makefile patch. imap-send was kept builtin and idependent of curl (just as it was before) Template files, which are not necessary, where removed. Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * | | | | git: configure as cross compilingLuiz Angelo Daros de Luca2015-03-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, ./configure was running checking local system and not OpenWRT target. This would avoid any configure test about OpenWRT libraries. With a patch in configure, non cross-compiling-friend test are ignored and Makefile can use default configure. As side effect, git commands are now at /usr/lib/git-core and not /usr/libexec/git-core. Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
* | | | | | Merge pull request #1038 from dangowrt/fix-avahi-autoipd-ssp-dependencyTed Hess2015-03-15
|\ \ \ \ \ \ | | | | | | | | | | | | | | avahi: avahi-autoipd uses libssp if SSP_SUPPORT is enabled
| * | | | | | avahi: avahi-autoipd uses libssp if SSP_SUPPORT is enabledDaniel Golle2015-03-15
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Found on an all-y build with SSP enabled: Package avahi-autoipd is missing dependencies for the following libraries: libssp.so.0 Adding the missing dependency to address that. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | Merge pull request #1037 from commodo/python3-updatesSteven Barth2015-03-15
|\ \ \ \ \ \ | |/ / / / / |/| | | | | python3 updates
| * | | | | python3: revert puting the encodings folder into a python3-codecsAlexandru Ardelean2015-03-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some notes about the 'encodings' module, which is about 1.7 MB. Unfortunately that one cannot be moved into the 'python3-codecs' package, because Python tries to load up all available encodings at startup. Some efforts to add a dummy folder/python file have failed so far, since there's a C code (Python/codecs.c) that tries to evaluate that all encodings (in the encodings folder/module) are valid. Basically the encodings module is a repository of encodings, and it seemst there are quite a few of them. Maybe a request to upstream Python would work for this, to make encodings a bit more decoupled from the interpreter. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
| * | | | | python3: port some patches from pythonAlexandru Ardelean2015-03-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Based on the idea that 'what-works-on-python-should-work-on-python3' because they share the same trunk, these patches have been copied over from the python package. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
| * | | | | python3: replicate packaging work done in python packageAlexandru Ardelean2015-03-14
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
| * | | | | python3: upgrade to version 3.4.3Alexandru Ardelean2015-03-14
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
| * | | | | python3: re-number patchesAlexandru Ardelean2015-03-14
|/ / / / / | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | libtasn1: updated to 4.3Nikos Mavrogiannopoulos2015-03-14
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | | openconnect: upgraded to 7.05Nikos Mavrogiannopoulos2015-03-14
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | | Merge pull request #1035 from mhei/collectdJo-Philipp Wich2015-03-14
|\ \ \ \ \ | |_|/ / / |/| | | | collectd: unbreak collectd-mod-modbus
| * | | | collectd: unbreak collectd-mod-modbusMichael Heimpold2015-03-13
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | I tested it successfully on a Asus WL-500gP V2, querying a Modbus TCP server. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | libmodbus: update to 3.1.2Michael Heimpold2015-03-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Although this version is marked 'unstable' by upstream, it's very robust and stable. So give it a broader audience for testing. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | Merge pull request #1034 from commodo/python-updatesSteven Barth2015-03-13
|\ \ \ \ | | | | | | | | | | python: refine packaging and split more modules into packages
| * | | | python: refine packaging and split more modules into packagesAlexandru Ardelean2015-03-13
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rule of thumb is: any Python file that is greater than 100kb (or adds a dependency with which it adds more than 100 kb) should be a pretty useful/commonly used lib to stay in `python-light`. An example, is the Python IO lib, which summarized (Python source + binary module) is over 200kb. Also moved some files that should have been put into previously existing packages before, and re-organized the packages a bit. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | cshark: update to latest git HEADLuka Perkov2015-03-13
| | | | | | | | | | | | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* | | | vim: fix acl detection bugMarko Ratkaj2015-03-12
| | | | | | | | | | | | | | | | Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
* | | | Merge pull request #1032 from commodo/python-updatesSteven Barth2015-03-12
|\ \ \ \ | | | | | | | | | | python: fix conflicts between python-light & python-base
| * | | | python: fix conflicts between python-light & python-baseAlexandru Ardelean2015-03-12
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | global: change all instances of USE_EGLIBC to USE_GLIBCJohn Crispin2015-03-12
| | | | | | | | | | | | | | | | | | | | Signed-off-by: John Crispin <blogic@openwrt.org>
* | | | | removed Build/Configure partNikos Mavrogiannopoulos2015-03-12
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | | seccomp: depends on CONFIG_KERNEL_SECCOMPNikos Mavrogiannopoulos2015-03-12
|/ / / / | | | | | | | | | | | | | | | | | | | | Resolves #935 Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | Merge pull request #1030 from giner/patch-2Jo-Philipp Wich2015-03-12
|\ \ \ \ | | | | | | | | | | wshaper: start wshaper on ifup
| * | | | wshaper: start wshaper on ifupStanislav German-Evtushenko2015-03-12
| | | | |