aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* libgphoto2: update package 2.5.14Leonardo Medici2017-06-06
| | | | Signed-off-by: Leonardo Medici <leonardo_medici@me.com>
* Merge pull request #4446 from aTanW/masterHannu Nyman2017-06-06
|\ | | | | gammu: bunp to a new v1.38.3
| * gammu: bunp to a new v1.38.3aTanW2017-06-06
| | | | | | | | | | | | | | Signed-off-by: Vitaly Protsko <villy@sft.ru> --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
* | Merge pull request #4436 from hauke/attrHannu Nyman2017-06-06
|\ \ | | | | | | attr: add PKG_MIRROR_HASH
| * | attr: add PKG_MIRROR_HASHHauke Mehrtens2017-06-05
| | | | | | | | | | | | | | | | | | | | | Use the LEDE mirror in case the git repository if unavailable like it currently is. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
* | | Merge pull request #4433 from aTanW/masterHannu Nyman2017-06-06
|\ \ \ | | |/ | |/| ipsec: add ability to configure "none" SA
| * | ipsec: add ability to configure "none" SAaTanW2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also added myself as co-maintainer Signed-Off-By: Vitaly Protsko <villy@sft.ru> --- Makefile | 5 +++-- files/functions.sh | 35 +++++++++++++++++++++++++++++++++++ files/racoon | 4 ++++ files/racoon.init | 12 ++++++++---- 4 files changed, 50 insertions(+), 6 deletions(-)
* | | Merge pull request #4286 from hnyman/nano281Hannu Nyman2017-06-06
|\ \ \ | | | | | | | | nano: update to 2.8.4
| * | | nano: update to 2.8.4Hannu Nyman2017-05-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * update nano to 2.8.4 * remove deprecated glibtest configure argument * fix whitespace in configure arguments Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | | Merge pull request #4442 from MikePetullo/libdmapsharingHannu Nyman2017-06-06
|\ \ \ \ | | | | | | | | | | libdmapsharing: update to 2.9.38
| * | | | libdmapsharing: update to 2.9.38W. Michael Petullo2017-06-05
| | | | | | | | | | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | | | smartmontools: Fix build with CONFIG_USE_LIBSTDCXXFlorian Fainelli2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Makefile would still force the use of and linking against uClibc++ even though libstdc++ may have been chosen, which would result in the package depending on libstdcpp ($(CXX_DEPENDS) but we would still be missing an libuClibc++ library depdency. Fix this by looking at CONFIG_USE_UCLIBCXX to adjust the configure script variables. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
* | | | | lpeg: Fix build with external toolchainsFlorian Fainelli2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We are not properly passing down TARGET_CFLAGS and TARGET_CPPFLAGS and this can be noticed with external toolchains with the following build error: mipsel-linux-gnu-gcc -Wall -Wextra -pedantic -Waggregate-return -Wcast-align -Wcast-qual -Wdisabled-optimization -Wpointer-arith -Wshadow -Wsign-compare -Wundef -Wwrite-strings -Wbad-function-cast -Wdeclaration-after-statement -Wmissing-prototypes -Wnested-externs -Wstrict-prototypes -O2 -std=c99 -I../lua/ -fPIC -c -o lpvm.o lpvm.c lpvm.c:10:17: fatal error: lua.h: No such file or directory #include "lua.h" ^ compilation terminated. make[4]: *** [lpvm.o] Error 1 Re-use COPT to pass our TARGET_CFLAGS and TARGET_CPPFLAGS Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
* | | | | pciutils: Fix build with external toolchainsFlorian Fainelli2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Passing GNU_TARGET_NAME implies that we have a 4-group triplet (e.g: arm-openwrt-unknown-linux), and this works fine with pciutils' lib/configure operating system detection. If we have an external toolchain (e.g: mipsel-linux-gnu), the configure script is all confused and ends-up picking up i386-ports, which is not valid on the target architecture. Finally, we are not passing TARGET_CPPFLAGS as we should, so let's do that correctly. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
* | | | | klish: Fix build errors with external toolchainsFlorian Fainelli2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We would first not be able to properly detect libxml2 because it's not automatically found, fix that by explicitly linking against it (and zlib a dependency). Then if we don't don't define X_OPEN_SOURCE=500, we would run into the following build error: clish/shell/shell_execute.c: In function 'clish_shell_exec_action': clish/shell/shell_execute.c:309:18: error: 'sigignore' undeclared (first use in this function) sa.sa_handler = sigignore; /* Empty signal handler */ ^ clish/shell/shell_execute.c:309:18: note: each undeclared identifier is reported only once for each function it appears in Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
* | | | | libplist: Explicitly link with zlibFlorian Fainelli2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes build errors with external toolchains that don't automatically append STAGING_DIR to the library search path: /opt/toolchains/stbgcc-4.8-1.5/lib/gcc/mipsel-linux-gnu/4.8.5/../../../../mipsel-linux-gnu/bin/ld: warning: libz.so.1, needed by /local/users/fainelli/openwrt/trunk/staging_dir/target-mipsel-linux-gnu_glibc/usr/lib/libxml2.so, not found (try using -rpath or -rpath-link) /local/users/fainelli/openwrt/trunk/staging_dir/target-mipsel-linux-gnu_glibc/usr/lib/libxml2.so: undefined reference to `gzopen64' /local/users/fainelli/openwrt/trunk/staging_dir/target-mipsel-linux-gnu_glibc/usr/lib/libxml2.so: undefined reference to `gzdirect' /local/users/fainelli/openwrt/trunk/staging_dir/target-mipsel-linux-gnu_glibc/usr/lib/libxml2.so: undefined reference to `gzclose' /local/users/fainelli/openwrt/trunk/staging_dir/target-mipsel-linux-gnu_glibc/usr/lib/libxml2.so: undefined reference to `gzwrite' /local/users/fainelli/openwrt/trunk/staging_dir/target-mipsel-linux-gnu_glibc/usr/lib/libxml2.so: undefined reference to `gzdopen' /local/users/fainelli/openwrt/trunk/staging_dir/target-mipsel-linux-gnu_glibc/usr/lib/libxml2.so: undefined reference to `gzread' collect2: error: ld returned 1 exit status make[5]: *** [plistutil] Error 1 make[5]: Leaving directory `/local/users/fainelli/openwrt/trunk/build_dir/target-mipsel-linux-gnu_glibc/libplist-1.13/tools' Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
* | | | | squashfs-tools: Pass down TARGET_CFLAGS, CPPFLAGS and LDFLAGsFlorian Fainelli2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes build errors with external toolchains that don't automatically search for headers in STAGING_DIR: mipsel-linux-gnu-gcc -I. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE -DCOMP_DEFAULT=\"gzip\" -Wall -DGZIP_SUPPORT -c -o gzip_wrapper.o gzip_wrapper.c gzip_wrapper.c:27:18: fatal error: zlib.h: No such file or directory #include <zlib.h> ^ compilation terminated. make[3]: *** [gzip_wrapper.o] Error 1 Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
* | | | | smartsnmpd: Properly pass down TARGET_CPPFLAGSFlorian Fainelli2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The smartsnmpd SConstruct file only accepts setting CFLAGS and does not use CPPFLAGS, so pass both down using CFLAGS. This fixes build errors with external toolchains that don't automatically search for headers in $(STAGING_DIR). Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
* | | | | ices: Explicitly link with libvorbisidecFlorian Fainelli2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We link against libshout which already links against libvorbisidec, this is needed to pass the configure script that checks against libshout symbols availability. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
* | | | | tgt: Pass down TARGET_CPPFLAGS and TARGET_LDFLAGSFlorian Fainelli2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make sure we pass down TARGET_CPPFLAGS and TARGET_LDFLAGS to fix build with external toolchains that don't automatically search for headers and libraries in $(STAGING_DIR). Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
* | | | | tgt: Drop dependency against KERNEL_DIRECT_IOFlorian Fainelli2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was removed in LEDE commit 0b7ed65cec8084bb98ae0e2758b7aca6c447cd4b ("kernel: remove out of tree direct-io disable hack") Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
* | | | | Merge pull request #4439 from commodo/netatalk-fix-permsDaniel Golle2017-06-05
|\ \ \ \ \ | | | | | | | | | | | | netatalk: fix config files permissions
| * | | | | netatalk: fix config files permissionsAlexandru Ardelean2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | After checking in the ipkg-install dir of netatalk, it seems that the permissions it sets to the conf-files are 644. # ls -la lede/build_dir/target-mips_24kc_musl/netatalk-3.1.11/ipkg-install/etc -rw-r--r-- 1 sandu sandu 226 iun 5 20:53 afp.conf -rw-r--r-- 1 sandu sandu 1948 iun 5 20:53 dbus-session.conf -rw-r--r-- 1 sandu sandu 25037 iun 5 20:53 extmap.conf While the Package/netatalk/install build rule overrides them to 600. According to * https://github.com/openwrt/packages/issues/4318 * https://forum.lede-project.org/t/help-with-apple-filesharing-protocol-for-time-machine/3259/5 this is a problem in some setups. So, this patch changes them to what the netatalk package creators intended initially (i.e. 644). Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | | alsa-lib: update to 1.1.4.1Peter Wagner2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | | mpd: Set USE_MIPS16=0. Workaround compiler error (Error: branch to a symbol ↵Ted Hess2017-06-05
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | in another ISA mode) on mips_24k Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | Merge pull request #3769 from wvdakker/masterHauke Mehrtens2017-06-05
|\ \ \ \ \ | | | | | | | | | | | | Added Shorewall(6)-lite.
| * | | | | Add package shorewall(6)-lite.W. van den Akker2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bump to version 5.1.4.1 Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
* | | | | | Merge pull request #4382 from commodo/python-lxmlHauke Mehrtens2017-06-05
|\ \ \ \ \ \ | | | | | | | | | | | | | | [new package] python-lxml: add initial version (with python3 variant included)
| * | | | | | python-lxml: add initial version (with python3 variant included)Alexandru Ardelean2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This package requires libxml2 & libxslt to be built, has some C code so it's not installable via pip. It needs cross-compilation. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | | | cryptsetup: update to version 1.7.5Daniel Golle2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | lvm2: update to version 2.02.168Daniel Golle2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add HTTP mirror URL as well. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | openssh: if we don't generate a dsa key we shouldn't look for itPhilip Prindeville2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The earlier commit ea119211b21 removed 'dsa' as one of the ssh_host_*_key types that got generated. Problem was that it didn't remove that key as one of the paths that the server looks for by default. As a consequence, your log file might fill up with messages like: 2017-06-01T15:43:07-06:00 openwrt sshd[31929]: error: Could not load host key: /etc/ssh/ssh_host_dsa_key The patch is forunately trivial. Don't set the path for the dsa key file in the server configuration. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | Revert "The earlier commit ea119211b21 removed 'dsa' as one of the ↵Daniel Golle2017-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ssh_host_*_key" The author (@pprindeville) of the original commit noted that the wrong commit was picked, see https://github.com/openwrt/packages/commit/325b7d2cd2d6e9d4903c6e7628c7c9ae0ddab564#commitcomment-22387528 "Err... looks like the wrong fix got committed. I was hoping that this commit d902e5d would have gone in instead." This reverts commit 325b7d2cd2d6e9d4903c6e7628c7c9ae0ddab564. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | Merge pull request #4385 from D-Albers/btrfs-progs-4.11Daniel Golle2017-06-05
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | btrfs-progs: update to 4.11
| * | | | | | | btrfs-progs: update to 4.11Daniel Albers2017-05-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Albers <Daniel.Albers@public-files.de>
* | | | | | | | Merge pull request #4437 from commodo/netatalk-switch-maintainerDaniel Golle2017-06-05
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | netatalk: switch maintainer to me
| * | | | | | | | netatalk: switch maintainer to meAlexandru Ardelean2017-06-05
|/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | | | | Merge pull request #4402 from commodo/netatalk-upgradeDaniel Golle2017-06-05
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | netatalk: upgrade to version 3.1.11
| * | | | | | | | netatalk: upgrade to version 3.1.11Alexandru Ardelean2017-05-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | | | | | Merge pull request #4417 from diizzyy/patch-51Daniel Golle2017-06-05
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | utils/pcsc-lite: Update to 1.8.21
| * | | | | | | | | utils/pcsc-lite: Update to 1.8.21Daniel Engberg2017-05-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update pcsc-lite to 1.8.21 Replace obsolete tarball hash variable with PKG_HASH Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | | | | | | | | | Merge pull request #4418 from diizzyy/patch-52Daniel Golle2017-06-05
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | utils/ccid: Update to 1.4.27
| * | | | | | | | | | utils/ccid: Update to 1.4.27Daniel Engberg2017-05-31
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update ccid to 1.4.27 Replace obsolete tarball hash variable with PKG_HASH Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | | | | | | | | | Merge pull request #4099 from dangowrt/freeradius3-ldapDaniel Golle2017-06-05
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | freeradius3: build and package support for LDAP
| * | | | | | | | | | freeradius3: build and package support for LDAPDaniel Golle2017-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The lack of LDAP support was one of the things which prevented users from migrating from freeradius2 to freeradius3. Enable LDAP in freeradius3 so we can finally burry freeradius2. Reported-by: Martin Mueller <mm@sig21.net> Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | | | | Merge pull request #4116 from lucize/clamsmtpHauke Mehrtens2017-06-05
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | mail: add package clamsmtp
| * | | | | | | | | | mail: add package clamsmtpLucian Cristian2017-03-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | | | | | | | | | | Merge pull request #4284 from bmork/conserverHauke Mehrtens2017-06-05
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | conserver: add advanced serial console package
| * | | | | | | | | | | conserver: add advanced serial console packageBjørn Mork2017-06-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conserver is an application that allows multiple users to use serial consoles at the same time, with logging. It has a client- server design which makes it easy to manage a distributed set of serial consoles. Logging makes post-crash analyses easier. Signed-off-by: Bjørn Mork <bjorn@mork.no>
* | | | | | | | | | | | Merge pull request #4423 from pprindeville/lighttpd-use-procdDaniel Golle2017-06-05
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / / / / |/| | | | | | | | | | | lighttpd: use procd-based init.d script