aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * | | | | | | pthsem: fix Makefile to use TABs instead of spacesOthmar Truniger2015-01-03
| |/ / / / / / | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* / / / / / / libftdi: mode ftdi_eeprom from Libraries to UtilitiesÁlvaro Fernández Rojas2015-01-03
|/ / / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | | | | Merge pull request #714 from tru7/net-linknxSteven Barth2015-01-03
|\ \ \ \ \ \ | | | | | | | | | | | | | | linknx: new package
| * | | | | | linknx: add dist xml conf fileOthmar Truniger2014-12-31
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
| * | | | | | linknx: add config fileOthmar Truniger2014-12-31
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
| * | | | | | linknx: add init fileOthmar Truniger2014-12-31
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
| * | | | | | linknx: add Makefile for new packageOthmar Truniger2014-12-31
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* | | | | | | Merge pull request #713 from tru7/net-knxdSteven Barth2015-01-03
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | knxd: new package
| * | | | | | | knxd: add config fileOthmar Truniger2014-12-31
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
| * | | | | | | knxd: add init fileOthmar Truniger2014-12-31
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
| * | | | | | | knxd: add patch fileOthmar Truniger2014-12-31
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
| * | | | | | | knxd: add Makefile for new packageOthmar Truniger2014-12-31
| |/ / / / / / | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* | | | | | | Merge pull request #712 from tru7/libs-libesmtpSteven Barth2015-01-03
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | libesmtp: add Makefile for new package
| * | | | | | | libesmtp: add Makefile for new packageOthmar Truniger2014-12-31
| |/ / / / / / | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* | | | | | | Merge pull request #711 from tru7/libs-pthsemSteven Barth2015-01-03
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | pthsem: new package
| * | | | | | | pthsem: updated MakefileOthmar Truniger2014-12-31
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
| * | | | | | | pthsem: add patch for linux 3.xOthmar Truniger2014-12-31
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
| * | | | | | | pthsem: add Makefile for new packageOthmar Truniger2014-12-31
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | should replace the one in old packages Signed-off-by: Othmar Truniger <github@truniger.ch>
* | | | | | | php5: remove patches for sqlite2 supportMichael Heimpold2015-01-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SQLite2 support was dropped by upstream a long time ago, so let's remove the leftovers here, too. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | | | php5: sort modules alphabeticallyMichael Heimpold2015-01-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | | | php5: fix iconv dependencyMichael Heimpold2015-01-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | | | php5: drop a few unneeded dependenciesMichael Heimpold2015-01-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - fileinfo: PHP actually uses its own libmagic implementation - pdo-sqlite/sqlite3: libsqlite3 itself depends on libpthread, not the extension - xml{reader,writer}: both do not use iconv stuff Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | | | php5: gd: do not link against libiconv (fixes #706)Michael Heimpold2015-01-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds a patch to enforce the usage of an alternative code path, preventing the need of libiconv in the bundled libgd of php. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | | | php5: add missing $(SDK)Michael Heimpold2015-01-02
| |/ / / / / |/| | | | | | | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | | Merge pull request #614 from the2masters/luasecSteven Barth2015-01-02
|\ \ \ \ \ \ | | | | | | | | | | | | | | luasec: update to 0.5 to fix memory leak hit by prosody
| * | | | | | luasec: update to 0.5 to fix memory leak hit by prosodyStefan Hellermann2014-12-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Noted in luasec 0.4.1 Changelog: Activate SSL_MODE_RELEASE_BUFFERS by default if it is available (thanks Prosody project) Update to latest 0.5 to fix a few other leaks. luasec moved to github, so update URL and license info. Move package maintainer to correct place in Makefile, hope he is okay with it. Signed-off-by: Stefan Hellermann <stefan@the2masters.de>
* | | | | | | Merge pull request #716 from Shulyaka/masterSteven Barth2015-01-01
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | mailman: add http source download link
| * | | | | | | mailman: add http source download linkDenis Shulyaka2015-01-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Denis Shulyaka <Shulyaka@gmail.com>
* | | | | | | | libftdi1: add libftdi1-config and ftdi_eeprom, simplify files copyÁlvaro Fernández Rojas2015-01-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | | | | | | libftdi: add libftdi-config, simplify files copyÁlvaro Fernández Rojas2015-01-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | | | | | | libftdi: fix packagekit when useing cmakeÁlvaro Fernández Rojas2015-01-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Based on upstream commit by Thomas Jarosch based on Alexander's patch. More info: https://github.com/openwrt/packages/pull/690 Signed-off-by: Alexander Couzens <lynxis@fe80.eu> Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | | | | | | Merge pull request #700 from pesintta/masterSteven Barth2014-12-31
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | Alpine: add new package v2.11
| * | | | | | | Alpine: add new package v2.11Antti Seppälä2014-12-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Alpine (Alternatively Licenced Program for Internet News and Email) is a free software console email client developed at the University of Washington. It is suitable for both the inexperienced email user as well as for the most demanding power user. Signed-off-by: Antti Seppälä <a.seppala@gmail.com>
* | | | | | | | Merge pull request #705 from equinox0815/stm32flash-updateTed Hess2014-12-30
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | stm32flash: upgrade to new version 0.4
| * | | | | | | | stm32flash: upgrade to new version 0.4Christian Pointner2014-12-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Christian Pointner <equinox@spreadspace.org>
* | | | | | | | | Merge pull request #704 from MikePetullo/masterMichael Heimpold2014-12-30
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | vips: update to 7.42.1
| * | | | | | | | vips: update to 7.42.1W. Michael Petullo2014-12-29
|/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | | | | | | php5: update to 5.4.36Michael Heimpold2014-12-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes CVE-2014-8142. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | | | | Merge pull request #698 from kissg1988/shadowSteven Barth2014-12-28
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | shadow: select all packages by default
| * | | | | | | shadow: select all packages by defaultGergely Kiss2014-12-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
* | | | | | | | zabbix: update to 2.4.3Etienne CHAMPETIER2014-12-26
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | run-tested on ar71xx Signed-off-by: Etienne CHAMPETIER <champetier.etienne@gmail.com>
* | | | | | | Merge pull request #676 from thess/minidlna-workTed Hess2014-12-26
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | minidlna: Add path to correct PID file for start-stop-daemon
| * | | | | | | minidlna: Add path to correct PID file for start-stop-daemonTed Hess2014-12-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | | | | Merge pull request #696 from antonlacon/ffmpeg-2.4.xTed Hess2014-12-26
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | ffmpeg: update to 2.4.5
| * | | | | | | | ffmpeg: update to 2.4.5Ian Leonard2014-12-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Ian Leonard <antonlacon@gmail.com>
* | | | | | | | | Merge pull request #697 from antonlacon/libpng-1.2.xSteven Barth2014-12-26
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | libpng: update to 1.2.52
| * | | | | | | | | libpng: update to 1.2.52Ian Leonard2014-12-08
| | |_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Ian Leonard <antonlacon@gmail.com>
* | | | | | | | | Merge pull request #693 from chris5560/masterSteven Barth2014-12-26
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | [luci-app-privoxy] New LuCI App to support privoxy
| * | | | | | | | | [luci-app-privoxy] New LuCI App to support privoxyChristian Schoenebeck2014-12-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New LuCI Application to support privoxy WEB proxy Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
* | | | | | | | | | Merge pull request #694 from erdoukki/masterSteven Barth2014-12-26
|\ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / |/| | | | | | | | | smstools3 : ADD smstools3 package