aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Merge pull request #5183 from val-kulkov/pigeonhole-packagechamptar2017-12-02
|\ | | | | pigeonhole: fix runtime dependency on dovecot's ABI
| * pigeonhole: fix runtime dependency on dovecot's ABIVal Kulkov2017-11-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #5062. With ABI_VERSION declaration in dovecot's Makefile introduced in PR #5182, pigeonhole plugin will now be rebuilt on every dovecot upgrade. To announce the rebuilt pigeonhole plugin to opkg, introduce a different model of version numbering. The new version numbering now includes both dovecot and pigeonhole plugin version numbers. Therefore, the rebuilt pigeonhole plugin will be visible to opkg whenever dovecot or pigeonhole plugin version changes. Rename "pigeonhole" to "dovecot-pigeonhole". There are several reasons for renaming the package: 1. pigeonhole is a plugin. There seems to be a convention to name plugins by adding corresponding suffixes to the parent package name, such as lua-*, luci-*, php7-mod-*, perlbase-*, transmission-* etc. 2. When named as "dovecot-pigeonhole", the pigeonhole plugin is displayed right next to dovecot in config manager ("make menuconfig") and is therefore highly visible to anyone who explores the available modules for dovecot. 3. When named as "dovecot-pigeonhole", the package version number consisting of both dovecot and pigeonhole version numbers makes more sense: "dovecot-pigeonhole_2.2.33.2-0.4.20-2" looks more comprehensible than "pigeonhole_2.2.33.2-0.4.20-2", however admittedly both variants look rather ugly. Add ManageSieve to the package. Adding managesieve-login and its libraries increases the size of the package by about 11% from 702061 bytes to 781294 bytes on the bcm53xx platform. As dovecot is unlikely to be used on a low-end LEDE/OpenWrt box, the addition of ~80KB to the package size is not likely to make a noticeable difference but it will add the capability to use pigeonhole plugin for dovecot with systems that talk ManageSieve, such as the RoundCube. Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
* | Merge pull request #5134 from p-wassi/emailrelaychamptar2017-12-02
|\ \ | | | | | | mail/emailrelay: rework init script and introduce config
| * | mail/emailrelay: tune up initscript and configPaul Wassi2017-11-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, configuration of emailrelay was done by fiddling around with the commandline inside the initscript. Introduce a config file in /etc/config for basic configuration and at the same time switch to a procd-style initscript. Signed-off-by: Paul Wassi <p.wassi@gmx.at>
| * | mail/emailrelay: cosmetic fixesPaul Wassi2017-11-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is just a cosmetic thing, therefore no increase of PKG_RELEASE. - Trailing spaces and tabs - Add newline to end of file - Add License info to Makefile - Move maintainer definition to PKG_MAINTAINER Signed-off-by: Paul Wassi <p.wassi@gmx.at>
* | | Merge pull request #5148 from mach327/openwrt_519champtar2017-12-02
|\ \ \ | | | | | | | | python3-idna: Fix openwrt/openwrt#519, opkg package list segfault.
| * | | python3-idna: Fix openwrt_repo 519, opkg segfault.mike mcginty2017-11-17
| | | | | | | | | | | | | | | | Signed-off-by: mike mcginty <mach327@gmail.com>
* | | | Merge pull request #5172 from jow-/polipo-enable-ipv6-supportchamptar2017-12-02
|\ \ \ \ | | | | | | | | | | polipo: forcibly enable IPv6 support
| * | | | polipo: forcibly enable IPv6 supportJo-Philipp Wich2017-11-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently `polipo.h` uses the conditional `(__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2)` to decide whether to enable IPv6 support. This used to work for OpenWrt CC which uses uClibc disguising itself as Glibc 2.x but it does not work with Musl libc anymore as this library does not export any Glibc defines. Forcibly enable IPv6 support by passing `-DHAVE_IPv6` unconditionally through the build flags in the OpenWrt/LEDE Makefile. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* | | | | Merge pull request #5182 from val-kulkov/dovecot-packagechamptar2017-12-02
|\ \ \ \ \ | | | | | | | | | | | | dovecot: prepare for runtime dependency by plugins
| * | | | | dovecot: prepare for runtime dependency by pluginsVal Kulkov2017-11-28
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add ABI_VERSION declaration in order to tell dovecot plugins that are runtime-dependent on dovecot's Application Binary Interface (ABI) version, such as the pigeonhole mail filter, that they need to be rebuilt each time the dovecot's ABI version changes. This PR is not yet closing issue #5062. A forthcoming PR for pigeonhole package will close the issue. Introduce a new configuration parameter to enable ICU (i18n) support. Make the ICU disabled by default. Introduce PKG_CONFIG_DEPENDS with the list of configuration parameters triggering rebuild of dovecot. Declare the conffiles section to save dovecot's configuration files and its init.d script on sysupgrade. Introduce a new package, dovecot-utils, to contain doveadm and dsync utilities: closes #4912. Correct the destination directory for the installation of example-config files. At present, the example files are installed into /usr/share/doc/dovecot/example-config/example-config. Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
* | | | | Merge pull request #5187 from sartura/yara_bump_to_3.7.0champtar2017-12-02
|\ \ \ \ \ | | | | | | | | | | | | yara: bump to 3.7.0
| * | | | | yara: bump to 3.7.0Marko Ratkaj2017-11-29
| |/ / / / | | | | | | | | | | | | | | | Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
* | | | | Merge pull request #5188 from sartura/libuv_bump_to_1.17.0champtar2017-12-02
|\ \ \ \ \ | | | | | | | | | | | | libuv: bump to 1.17.0
| * | | | | libuv: bump to 1.17.0Marko Ratkaj2017-11-29
| |/ / / / | | | | | | | | | | | | | | | Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
* | | | | Merge pull request #5192 from neheb/patch-1champtar2017-12-02
|\ \ \ \ \ | | | | | | | | | | | | btrfs-progs: Update to 4.14
| * | | | | btrfs-progs: Update to 4.14Rosen Penev2017-11-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Disabled zstd as it needs a new package. zstd needs a more recent kernel than 4.9 to be used. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | Merge pull request #5210 from commodo/travis_branch_buildchamptar2017-12-02
|\ \ \ \ \ \ | | | | | | | | | | | | | | build,travis: build only last commit in a branch build
| * | | | | | build,travis: build only last commit in a branch buildAlexandru Ardelean2017-12-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This started out as me trying to fix my Python build in a local Travis CI env. After 40+ minutes, the build still did not stop: https://travis-ci.org/commodo/packages/builds/310413628 There is a bug, where the `.travis_do.sh` script does exit early, and enters an endless loop, when doing a branch build. It tries to continuously fetch 50 more revisions. So, I decided to add some limited support for branch builds. This also allows a simpler testing with Travis before opening a PR. This scope of testing is limited to whatever the last commit touches, but it's still better than nothing. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | | | Merge pull request #5211 from dibdot/adblockchamptar2017-12-02
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | adblock: update 3.1.1
| * | | | | | | adblock: update 3.1.1Dirk Brenken2017-12-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * new function to set/delete options in external uci config files * kresd: automated 'rpz_file' handling in /etc/config/resolver * firewall: automated 'force_dns' handling if you enable or disable adblock * support sha256sum (default) and md5sum for blocklist comparison & conditional dns restarts * cosmetics Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | | | | | Merge pull request #5144 from lynxis/rb_zipTed Hess2017-12-02
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | zip/unzip: remove build timestamps
| * | | | | | | | unzip: remove build timestampAlexander Couzens2017-11-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Build timestamps prevent reproducible builds [0]. Thanks to debian for the patch. [0] https://reproducible-builds.org/docs/timestamps/ Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
| * | | | | | | | zip: remove build timestampAlexander Couzens2017-11-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Build timestamps prevents reproducible builds [0]. Thanks to debian for the patch. [0] https://reproducible-builds.org/docs/timestamps/ Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
* | | | | | | | | Merge pull request #5141 from lynxis/rb_minicomTed Hess2017-12-02
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | minicom: remove build time to fix reproducible builds
| * | | | | | | | | minicom: remove build time to fix reproducible buildsAlexander Couzens2017-11-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Build timestamps prevents reproducible builds [0]. [0] https://reproducible-builds.org/docs/timestamps/ Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
* | | | | | | | | | Merge pull request #5137 from lynxis/rb_apacheTed Hess2017-12-02
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | apache: fix reproducible builds
| * | | | | | | | | | apache: fix reproducible buildsAlexander Couzens2017-11-17
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove build timestamp [0] and correct sorting [1]. Thanks to debian for the patch. [0] https://reproducible-builds.org/docs/timestamps/ [1] https://reproducible-builds.org/docs/stable-inputs/ Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
* | | | / / / / / / php7-mod-imap: add missing dependency for libpamMichael Heimpold2017-12-02
| |_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When libpam is selected, then mod_imap pulls in a dep to libpam, and there seems no way to disable it via configure arguments. So add this dep here conditionally. Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com> Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | | | | | Merge pull request #5139 from lynxis/rb_openocdTed Hess2017-12-01
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | openocd: use release tar.bz2 instead of git
| * | | | | | | | | openocd: use release tar.bz2 instead of gitAlexander Couzens2017-11-17
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The release tar does not contain the srcdir/guess-rev.sh. If it's not existant the configure scripts uses different variables which removes the build timestamp. Fixes reproducible builds. Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
* | | | | | | | | Merge pull request #5203 from lucize/uwimaplinkMichael Heimpold2017-12-01
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | uw-imap: copy actual files in devel folder
| * | | | | | | | | uw-imap: copy actual files in devel folderLucian Cristian2017-12-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | | | | | | | | | Merge pull request #5201 from lucize/php7imapMichael Heimpold2017-12-01
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | php7: try fix imap build-bot build
| * | | | | | | | | | php7: try fix imap build-bot buildLucian Cristian2017-12-01
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | | | | | | | | | gst1-libav: Fix ARM builds (remove forcing CPU_TYPE)Ted Hess2017-12-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | | | | | | Merge pull request #5194 from dedeckeh/pr-gstreamerTed Hess2017-12-01
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | gstreamer: bump to 1.10.5
| * | | | | | | | | gstreamer: bump to 1.10.5Hans Dedecker2017-11-30
| | |_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update gstreamer to the 1.10 stable branch; select latest stable 1.10.5 See https://gstreamer.freedesktop.org/releases/1.10/ for major new features and bugfixes Fix dependencies Refresh patches Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
* | | | | | | | | Merge pull request #5191 from thess/ffmpeg-configTed Hess2017-11-30
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | ffmpeg: Adjusting some build dependencies. Update to 3.2.9
| * | | | | | | | ffmpeg: Adjusting some build dependencies. Update to 3.2.9Ted Hess2017-11-29
| | |_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | | | | auc: update to version 0.0.8Daniel Golle2017-11-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fix multiple read_data_cb calls from uclient, otherwise hickups happend when receiving a large JSON reply * add minimal help message (-h) * pretify package update output * fix infinite retry of upgrade-check which happened in some cases * add sleep in case of check-request retry * lots of cosmetics Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | strongswan: bump to 5.6.1Stijn Tintel2017-11-30
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* | | | | | | Merge pull request #5177 from dibdot/mcTed Hess2017-11-27
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | mc: release 4.8.20
| * | | | | | | mc: release 4.8.20Dirk Brenken2017-11-26
| | |_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | release notes: http://midnight-commander.org/wiki/NEWS-4.8.20 Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | | | | glib2: update to 2.55.0Peter Wagner2017-11-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | | | php7: try to fix compilation on LEDE buildbotsMichael Heimpold2017-11-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Detection of U8T_DECOMPOSE seems to be broken when cross-compiling, so needs to be preseeded. -snip- checking for utf8_mime2text signature... new checking for U8T_DECOMPOSE... configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional information. -snap- This requires also a patch for PHP to make the preseeding working. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | | | auc: update to version 0.0.7Daniel Golle2017-11-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * implement using GET instead of POST requests when waiting for image Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | haveged: update to 1.9.2Hannu Nyman2017-11-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update haveged to 1.9.2 Release notes: http://www.issihosts.com/haveged/downloads.html Version 1.9.2 I am no longer active as a developer but have decided to push out contributor fixes I have accumulated since the last release. Two oustanding bugs are not addressed: 1) Failure to build on IA64 due to busted cpuid and 2) Incorrect exit status when terminate by signal. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | | | | | php7: update to 7.1.12Michael Heimpold2017-11-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | | | php7-pecl-http: add dependency to php7-mod-hashMichael Heimpold2017-11-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>