aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | | | | | | | Merge pull request #3860 from commodo/micropython-lib-workaroundHannu Nyman2017-02-17
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | micropython-lib: workaround the `install` build rule
| * | | | | | | | micropython-lib: workaround the `install` build ruleAlexandru Ardelean2017-01-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | So, I chose to workaround it in the Makefile. A proper fix is a bit more work that I would like to do now, and I have no suggestion/idea for a good fix right now. The problem is with the `CMD` part that's used in the install rule, together with the fact that PREFIX is the same as the source location. ``` CMD="find . -maxdepth 1 -mindepth 1 \( -name '*.py' -not -name 'test_*' -not -name 'setup.py' \) -or \( -type d -not -name 'dist' -not -name '*.egg-info' -not -name '__pycache__' \)| xargs --no-run-if-empty cp -r -t $(PREFIX)" ``` The gist of it, is that it seems that this will filter and copy to `PREFIX` all python sources and folders that are not names `dist`, `__pycache__`, or `*.egg-info`. And it searches all folders at (exactly) depth 1. The solution I chose is to put a `dist` folder under `_install_tmp`, which is kind of a trick to go to depth 2 and avoid both conditions in the `find` call. This avoids errors: ``` cp: './weakref.py' and '/home/sandu/work/lede/build_dir/target-mips_24kc_musl-1.1.16/micropython-lib-1.8.6-f81e979c56dddb771ad36ec381b7f2c6cd12111f-f81e979c56dddb771ad36ec381b7f2c6cd12111f/_install_tmp/weakref.py' are the same file cp: './xmltok.py' and '/home/sandu/work/lede/build_dir/target-mips_24kc_musl-1.1.16/micropython-lib-1.8.6-f81e979c56dddb771ad36ec381b7f2c6cd12111f-f81e979c56dddb771ad36ec381b7f2c6cd12111f/_install_tmp/xmltok.py' are the same file cp: './zipfile.py' and '/home/sandu/work/lede/build_dir/target-mips_24kc_musl-1.1.16/micropython-lib-1.8.6-f81e979c56dddb771ad36ec381b7f2c6cd12111f-f81e979c56dddb771ad36ec381b7f2c6cd12111f/_install_tmp/zipfile.py' are the same file ``` Initially I tried to add exit 0, but that would just hide other (potentially worse) issues. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | | | | | Merge pull request #4022 from stangri/vpnbypassHannu Nyman2017-02-17
|\ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|/ | |/| | | | | | | vpnbypass: fix for flushing mangle table
| * | | | | | | | vpnbypass: fix for flushing mangle tableStan Grishin2017-02-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Stan Grishin <stangri@melmac.net>
* | | | | | | | | Merge pull request #4019 from dibdot/adblockHannu Nyman2017-02-16
|\ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|/ | |/| | | | | | | adblock: update 2.3.1
| * | | | | | | | adblock: update 2.3.1Dirk Brenken2017-02-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * various optimizations & corner case fixes * removed no longer needed debug information * polished up for forthcoming LEDE release ;-) Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | | | | | | luv: new packageMorteza Milani2017-02-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Luv is libuv binding for lua. Signed-off-by: Morteza Milani <milani@pichak.co>
* | | | | | | | | Merge pull request #4013 from danrl/move-to-luciHannu Nyman2017-02-16
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | net/luci-app-*: move luci apps to luci repo
| * | | | | | | | | net/luci-app-*: move luci apps to luci repodanrl2017-02-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a long-needed clean-up. These applications are not gone! They live in the luci repo now, where all their friends already are. Signed-off-by: Dan Luedtke <mail@danrl.com>
* | | | | | | | | | Merge pull request #4017 from nxhack/support_openwrt_trunkHannu Nyman2017-02-16
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | icu: support OpenWrt trunk host-build.mk issue
| * | | | | | | | | | icu: support OpenWrt trunk host-build.mk issueHirokazu MORIKAWA2017-02-16
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Maintainer: me Compile tested: ar71xx, mips_34kc_gcc-5.3.0_musl, OpenWrt trunk 50104 ar71xx, mips_24kc_gcc-5.4.0_musl, LEDE trunk r3503-a112435 Run tested: NONE Description: openwrt buildbot report build fail ``` ./runConfigureICU CC="gcc" CFLAGS="-O2 -I/home/builder/trunk/openwrt/staging_dir/host/include -I/home/builder/trunk/openwrt/staging_dir/host/usr/include -I/home/builder/trunk/openwrt/staging_dir/target-i386_pentium4_glibc-2.22/host/include" CPPFLAGS="-I/home/builder/trunk/openwrt/staging_dir/host/include -I/home/builder/trunk/openwrt/staging_dir/host/usr/include -I/home/builder/trunk/openwrt/staging_dir/target-i386_pentium4_glibc-2.22/host/include" LDFLAGS="-L/home/builder/trunk/openwrt/staging_dir/host/lib -L/home/builder/trunk/openwrt/staging_dir/host/usr/lib -L/home/builder/trunk/openwrt/staging_dir/target-i386_pentium4_glibc-2.22/host/lib" SHELL="/usr/bin/env bash" Linux/gcc CC="gcc" CXX="g++" --disable-debug --enable-release --enable-shared --enable-static --enable-draft --enable-renaming --disable-tracing --disable-extras --enable-dyload --prefix=/home/builder/trunk/openwrt/staging_dir/target-i386_pentium4_glibc-2.22/host ; fi ) runConfigureICU: unrecognized platform "CC=gcc" (use --help for help) ``` "host-build.mk" is differs between OpenWrt and LEDE. https://github.com/openwrt/packages/pull/3993 https://github.com/lede-project/source/commit/83b6bfc2357458f219872f97ed9c4894106131a1 Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
* | | | | | | | | | Merge pull request #3784 from diizzyy/patch-16Hannu Nyman2017-02-15
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | lang/python3-bottle: Update to 0.12.12
| * | | | | | | | | lang/python3-bottle: Update to 0.12.12Daniel Engberg2017-01-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update to 0.12.12 Switch to pypi repo which also fixes file name on tarball Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | | | | | | | | | Merge pull request #4011 from stangri/vpnbypassHannu Nyman2017-02-15
|\ \ \ \ \ \ \ \ \ \ | | |_|/ / / / / / / | |/| | | | | | | | vpnbypass: fixed makefile and removed screenshot from .files/
| * | | | | | | | | vpnbypass: fixed makefile and removed screenshot from .files/Stan Grishin2017-02-14
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Stan Grishin <stangri@melmac.net>
* | | | | | | | | Merge pull request #4008 from stangri/vpnbypassHannu Nyman2017-02-14
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | vpnbypass: makefile hotfix
| * | | | | | | | | vpnbypass: makefile hotfixStan Grishin2017-02-14
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Stan Grishin <stangri@melmac.net>
* | | | | | | | | vpnbypass: remove problematic sed command from MakefileHannu Nyman2017-02-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Makefile had sed commands in "prepare" step that modified the source files directly. That lead to feed update failure at the buildbot. Remove those commands as the first aid. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | | | | | | | net-snmp: add engineID config optionsStijn Tintel2017-02-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to the snmpd.conf man page, the engineID of an snmp agent should be consistent through time. However, it seems that the engineID changes every reboot. Add options to configure how the engineID is generated. The default setting generates it based on the MAC address of the eth0 interface. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* | | | | | | | | Merge pull request #4007 from tsl0922/ttyd-1.3.0Hannu Nyman2017-02-14
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | ttyd: update to 1.3.0
| * | | | | | | | | ttyd: update to 1.3.0Shuanglei Tao2017-02-14
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Shuanglei Tao <tsl0922@gmail.com>
* | | | | | | | | wireguard: simple package bump to 0.0.20170214Jason A. Donenfeld2017-02-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While I'm at it, add myself as maintainer, since I'm doing many of the bumps anyway. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* | | | | | | | | xl2tpd: backporting fix for race condition causing xl2tpd hangYousong Zhou2017-02-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The patch was taken from https://github.com/xelerance/xl2tpd/pull/125 Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | | | | | Merge pull request #4001 from kissg1988/seafileHannu Nyman2017-02-14
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | seafile: update to version 6.0.7
| * | | | | | | | | seafile: update to version 6.0.7Gergely Kiss2017-02-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update several dependencies, as well: * django-compressor -> 2.1.1 * django-constance -> 1.3.4 * django-restframework -> 3.5.4 * django-statici18n -> 1.3.0 * django -> 1.8.17 * openpyxl -> 2.4.2 * python-dateutil -> 2.6.0 * python-urllib3 -> 1.20 Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
* | | | | | | | | | Merge pull request #4004 from stangri/vpnbypassHannu Nyman2017-02-14
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / |/| | | | | | | | | vpnbypass: updated README (linked from luci app)
| * | | | | | | | | vpnbypass: updated README (linked from luci app)Stan Grishin2017-02-13
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Stan Grishin <stangri@melmac.net>
* | | | | | | | | package dejavu fontsMirko Vogt2017-02-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Mirko Vogt <mirko-dev@nanl.de>
* | | | | | | | | Merge pull request #3896 from usr-sse2/patch-1Florian Fainelli2017-02-13
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | hfsprogs: Fix building on macOS
| * | | | | | | | | hfsprogs: fix building on macOSMichael Belyaev2017-01-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Belyaev <usrsse2@icloud.com>
* | | | | | | | | | Merge pull request #3998 from commodo/fix-ncurses-buildHannu Nyman2017-02-13
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | python,python3: fix ncurses module build
| * | | | | | | | | | python3: fix ncursesw definition collisionsAlexandru Ardelean2017-02-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | setup.py seems to add the host's /usr/include/ncursesw header. Reported-by: Arturo Rinaldi <arturo@arduino.org> Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
| * | | | | | | | | | python: remove setupterm() redefinitionAlexandru Ardelean2017-02-13
| | |/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's not 100% aligned with the ncurses' definition. Reported-by: Arturo Rinaldi <arturo@arduino.org> Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | | | | | | Merge pull request #3997 from eduardoabinader/check_use_sha256Hannu Nyman2017-02-13
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | check: use sha256 checksum
| * | | | | | | | | | check: use sha256 checksumEduardo Abinader2017-02-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Eduardo Abinader <eduardoabinader@gmail.com>
* | | | | | | | | | | Merge pull request #3995 from nxhack/use_NOCACHEHannu Nyman2017-02-13
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | | icu: fix fail situation of CONFIG_CCACHE=y
| * | | | | | | | | | icu: fix fail situation of CONFIG_CCACHE=yHirokazu MORIKAWA2017-02-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Maintainer: me Compile tested: brcm2708 ,aarch64_cortex-a53+neon-vfpv4_musl, LEDE head r3426-4c09f99 Run tested: NONE Description: buildbots fail situation of CONFIG_CCACHE=y `Running ./configure CC=ccache gcc CXX=ccache g++ ....` Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
* | | | | | | | | | | Merge pull request #3238 from eduardoabinader/bump_libcheckHannu Nyman2017-02-13
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | check: bump to 0.11.0
| * | | | | | | | | | | check: changing MaintainerEduardo Abinader2017-02-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As agreed on https://github.com/openwrt/packages/pull/3238 Signed-off-by: Eduardo Abinader <eduardoabinader@gmail.com>
| * | | | | | | | | | | check: bump to 0.11.0Eduardo Abinader2017-02-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | updated new package url and solved some issues: https://github.com/libcheck/check/releases/tag/0.11.0 Signed-off-by: Eduardo Abinader <eduardoabinader@gmail.com>
* | | | | | | | | | | | Merge pull request #3987 from stangri/vpnbypassHannu Nyman2017-02-13
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / |/| | | | | | | | | | | vpnbypass: new service triggers, typo fix
| * | | | | | | | | | | vpnbypass: new service triggers, typo fix, more reliable startStan Grishin2017-02-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Stan Grishin <stangri@melmac.net>
* | | | | | | | | | | | Merge pull request #3992 from the-alien/masterHannu Nyman2017-02-13
|\ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|/ / / | |/| | | | | | | | | | python-ldap: update to 2.4.30
| * | | | | | | | | | | python-ldap: update to 2.4.30alien2017-02-13
| | |_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitry Trefilov <the-alien@live.ru>
* | | | | | | | | | | Merge pull request #3993 from nxhack/specify_crosscompile_varsHannu Nyman2017-02-13
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | | icu: specify cross compile variables
| * | | | | | | | | | icu: specify cross compile variablesHirokazu MORIKAWA2017-02-13
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Maintainer: me Compile tested: brcm2708 aarch64_cortex-a53+neon-vfpv4_musl LEDE head r3426-4c09f99 Run tested: NONE Description:
buildbots fail on link ARM object. error: xxxxxx.o uses VFP register arguments, Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
* | | | | | | | | | gnutls: updated to 3.5.9Nikos Mavrogiannopoulos2017-02-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | | | | | | | ocserv: updated to 0.11.7Nikos Mavrogiannopoulos2017-02-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | | | | | | | Merge pull request #3983 from leitec/ngircd-update-24Hannu Nyman2017-02-12
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | ngircd: update to v24
| * | | | | | | | | | ngircd: update to v24Claudio Leite2017-02-11
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Claudio Leite <leitec@gmail.com>