aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | | | | | Merge pull request #4605 from dibdot/travelmateHannu Nyman2017-07-23
|\ \ \ \ \ \ | | | | | | | | | | | | | | travelmate: update 0.9.0
| * | | | | | travelmate: update 0.9.0Dirk Brenken2017-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | backend: * handle errors due to misconfigured uplinks * various bugfixes luci frontend: * add a powerful wireless station manager to edit and delete existing interfaces or scan for new uplinks Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | | | | Merge pull request #4612 from pcmulder/patch-1Hannu Nyman2017-07-23
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | adblock: Added Netherlands as a region.
| * | | | | | | adblock: Added a new region.Patrick Mulder2017-07-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Patrick Mulder <pcmulder89@gmail.com>
* | | | | | | | shadowsocks-libev: validate bool with default value 0Yousong Zhou2017-07-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The change is mainly for keeping compatibility with old validate_data before ubox commit ac481cdd999ee84d3f115c33a56397237e95ec64 in Sat Jul 16 14:52:36 2016 +0200. The behaviour change comes with that commit can be seen with the following command line session root@LEDE:/usr/bin# validate_data network interface wan 'disabled:bool:false' network.wan.disabled is unset and defaults to bool false disabled=0; root@LEDE:/usr/bin# root@OpenWrt:/# validate_data network interface lan 'disabled:bool:false' disabled='false'; root@OpenWrt:/# This will cause shadowsocks-libev in current master branch fail on OpenWrt 15.01 though they actually should only use packages from the 15.01 branch... Fixes openwrt/packages#4614 Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | | | | shadowsocks-libev: ss-rules: add executable bitsYousong Zhou2017-07-23
| | | | | | | |
* | | | | | | | Merge pull request #4584 from diizzyy/patch-69Zoltan Herpai2017-07-22
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | sound/mpg123: Update to 1.25.2
| * | | | | | | | sound/mpg123: Update to 1.25.2Daniel Engberg2017-07-16
| | |_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update mpg123 to 1.25.2 Change download URL to Sourceforge Change deprecated checksum variable (PKG_MD5SUM) to PKG_HASH Add libout123 Add generic optimizations depending on platform have fpu or not Add NEON-specific optimization Remove BUILD_PATENTED, reference: https://github.com/openwrt/packages/pull/4587 Small cleanup of Makefile Thanks to Ted Hess for reviewing and suggesting compilation fix NOTE: mpg123 uses the most recent approach just like ffmpeg that's mentioned here: https://github.com/openwrt/packages/pull/4555 Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | | | | | | | Merge pull request #4599 from commodo/travis-stuffchamptar2017-07-22
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | build,travis: limit git depth to 1 level
| * | | | | | | build,travis: limit git depth to 1 levelAlexandru Ardelean2017-07-19
| | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's just a minor optimization of the build. No need to clone up to 50 revisions back (travis default) Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | | | sound/sox: Reduce dependenciesDaniel Engberg2017-07-20
| |_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reduce dependencies and remove not used functionality linked in using external libs. libsndfile: Unusual file formats libpng: Only used to generate spectrograms Clean up configure arguments libid3tag doesn't fall into the BUILD_PATENTED category as far as I can tell. Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net> Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | | Merge pull request #4598 from commodo/fix-python-buildschamptar2017-07-19
|\ \ \ \ \ \ | |/ / / / / |/| | | | | python,python3: try to stabilize host builds
| * | | | | python,python3: add host python pip install supportAlexandru Ardelean2017-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To install Python packages host side, that may be needed for a build. The intent, is to try to reduce host-side Python packages being installed via LEDE/OpenWrt build system. Because those seem like a pain to maintain. The idea is adapted from Yousong's `python-packages` package. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
| * | | | | python,python3: drop HostPy/Compile/Default rulesAlexandru Ardelean2017-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Not used, and will not be used. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
| * | | | | python,python3: drop PKG_MD5SUM fields ; will use only PKG_HASHAlexandru Ardelean2017-07-19
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
| * | | | | python,python3: remove multi-arch support, and /usr/local pathsAlexandru Ardelean2017-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should hopefully reduce weird behaviour caused by the host system. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
| * | | | | python,python3: handle install script errors betterAlexandru Ardelean2017-07-19
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Depending on execution order the `python-package-install.sh` script would return a non-zero err code. So, this enforces that all commands in the script don't fail (via the `set -e` directive). Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | Merge pull request #4593 from lucize/postupPhilip Prindeville2017-07-18
|\ \ \ \ \ | | | | | | | | | | | | Postfix: security update to 3.2.2, add PostgreSQL and PCRE support and refresh patches
| * | | | | Postfix: security update to 3.2.2, add PostgreSQL and PCRE supportLucian Cristian2017-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | refresh patches add PKG_CONFIG_DEPENDS Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | | | | | ffmpeg: add avresample to libffmpeg-fullTed Hess2017-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some projects, like freeswitch-stable, require avresample in libffmpeg-full. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net> Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | | Merge pull request #4577 from diizzyy/patch-66Ted Hess2017-07-17
|\ \ \ \ \ \ | | | | | | | | | | | | | | sound/mocp: General cleanup
| * | | | | | sound/mocp: General cleanupDaniel Engberg2017-07-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | General cleanup of this port Don't add libraries as dependencies and disable them later on in configure arguments (curl and (lib)samplerate). Enabled from now on. Fix dependencies and functionality provided by external libraries. If we link (lib)ffmpeg we don't need to have external libraries for handling formats that ffmpeg already handles. Update PKG_MD5SUM (deprecated) to PKG_HASH Sources: https://github.com/mir-ror/moc/blob/master/decoder_plugins/ffmpeg/ffmpeg.c#L213 Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | | | | | | expat: Use correct checksum, add myself as co-maintainerTed Hess2017-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | | | pyodbc: use WORDS_BIGENDIAN instead of OS-specific definesDaniel Golle2017-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Python provides the WORDS_BIGENDIAN macro, use it to figure out the native endian of the host. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | git: update to 2.13.3Peter Wagner2017-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | | | bind: Update to 9.10.5-P3Noah Meyerhans2017-07-16
| |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New upstream release includes fixes for the following security issues: * CVE-2017-3140: With certain RPZ configurations, a response with TTL 0 could cause named to go into an infinite query loop * CVE-2017-3142: An error in TSIG handling could permit unauthorized zone transfers or zone updates. * CVE-2017-3143: An error in TSIG handling could permit unauthorized zone transfers or zone updates. Signed-off-by: Noah Meyerhans <frodo@morgul.net>
* | | | | | Merge pull request #4578 from dermoth/ddns_afraidv2champtar2017-07-16
|\ \ \ \ \ \ | | | | | | | | | | | | | | ddns-scripts: Add afraid.org version 2 API
| * | | | | | ddns-scripts: Add afraid.org version 2 APIThomas Guyot-Sionnest2017-07-15
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | afraid.org has a new update API with better IPV6 support. It needs to be specifically enabled for each domain, so the original v1 api has been Signed-off-by: Thomas Guyot-Sionnest <dermoth@aei.ca>
* | | | | | Merge pull request #4574 from diizzyy/patch-64Ted Hess2017-07-16
|\ \ \ \ \ \ | | | | | | | | | | | | | | libs/opus: Update to 1.2.1
| * | | | | | libs/opus: Update to 1.2.1Daniel Engberg2017-07-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update (lib)opus to 1.2.1 Compile without floating point on NEON (ARM) capable hardware to enable performance optimizations. Discussion about this change: https://github.com/openwrt/packages/pull/4574 Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | | | | | | Merge pull request #4572 from diizzyy/patch-63Ted Hess2017-07-16
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | libs/expat: Update to 2.2.2
| * | | | | | | libs/expat: Update to 2.2.2Daniel Engberg2017-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update (lib)expat to 2.2.2 Fixes following CVEs: CVE-2017-9233 and CVE-2016-9063 (2.2.2) Update homepage URL Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | | | | | | | Merge pull request #4471 from lynxis/travisnbd1682017-07-16
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | allow .travis.yml to run `make download check` on every Pull Request
| * | | | | | | | add .travis.yml to run `make download check` on every packageAlexander Couzens2017-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Travis will run the following steps for every new or modified package: - mkdir tempdir - unpack SDK - make download - make check make download will download the source code. make check will do certain checks. Atm only checking the validity of PKG_HASH. Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
* | | | | | | | | Merge pull request #4589 from diizzyy/patch-72Ted Hess2017-07-16
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | sound/shairport: Remove from tree
| * | | | | | | | | sound/shairport: Remove from treeDaniel Engberg2017-07-14
| | |_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Shairport is unmaintained and superseded by shairport-sync which is in tree so there's no point in keeping this obsolete package. Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | | | | | | | | pyodbc: really fix endianess of SQL_WCHARDaniel Golle2017-07-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | auto-endian auf UTF-16 doesn't work with all drivers, some fail to interpret the byte-order-marking. Hence explicitely use UTF16BE on big-endian systems and UTF16LE otherwise. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | | Merge pull request #4591 from commodo/ovs-upgrade-2-7-1champtar2017-07-15
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | openvswitch: bump to version 2.7.1
| * | | | | | | | | openvswitch: bump to version 2.7.1Alexandru Ardelean2017-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | | | | | | openssh: add ssh_host keys to openssh-server/conffilesPeter Wagner2017-07-15
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | | | | | screen: update to 4.6.1, refresh patchesEtienne Champetier2017-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* | | | | | | | | screen: add 256 colors support.Etienne Champetier2017-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On ar71xx the package grow by less than 1k 150377 screen_4.6.0-1_mips_24kc.ipk 151356 screen_4.6.0-2_mips_24kc.ipk Original commit by @nobk Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* | | | | | | | | Flask: add packageDaniel Golle2017-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions. And before you ask: It.s BSD licensed! Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | | python: Werkzeug: add packageDaniel Golle2017-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | | python: click: add packageDaniel Golle2017-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | | python: itsdangerous: add packageDaniel Golle2017-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | | python: MarkupSafe: add packageDaniel Golle2017-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | | python: Jinja2: add packageDaniel Golle2017-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | | pyodbc: assume SQL_C_WCHAR is native endianDaniel Golle2017-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bump PKG_REV and remove obsolete PKG_MD5SUM while at it. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | | Merge pull request #4531 from dangowrt/update-python-yamlDaniel Golle2017-07-14
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | python-yaml: update source and build for python3