aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | | | | Merge pull request #11937 from neheb/coreuRosen Penev2020-04-28
|\ \ \ \ \ | | | | | | | | | | | | coreutils: update to 8.32
| * | | | | coreutils: add extra appletsRosen Penev2020-04-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b2sum, base32, basenc, df, numfmt Signed-off-by: Rosen Penev <rosenp@gmail.com>
| * | | | | coreutils: update to 8.32Rosen Penev2020-04-27
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added license information. Add explicit configure arguments. Removed upstream backport. Refreshed failing patch. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | Merge pull request #11978 from dl12345/masterHannu Nyman2020-04-28
|\ \ \ \ \ | |/ / / / |/| | | | irqbalance: fix compilation for USE_GLIBC and BUILD_NLS cases
| * | | | irqbalance: fix compilation for USE_GLIBC and BUILD_NLS casesIan Cooper2020-04-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The package Makefile was not taking into consideration that the build may be using BUILD_NLS with libintl-full and libiconv-full and was trying to link the wrong versions of these libraries in this case. The necessary flags are added by nls.mk to TARGET_LDFLAGS and can be passed to irqbalance's configure script for setting the GLIB2_LIBS variable instead of the explicit static link to the libiconv stub. The PKG_BUILD_DEPENDS line should be modified so as to add to and not override the definition set by nls.mk, which will ensure the right version of libiconv and libintl is built beforehand. A DEPENDS:= line should be added to the package definition using the variables defined in nls.mk, which will add the appropriate version of libintl and libiconv (vanilla or -full versions) If USE_GLIBC is true, then libpthread needs to be explicitly passed to the configure script in the GLIB2_LIBS variable for linking. Signed-off-by: Ian Cooper <iancooper@hotmail.com>
* | | | | p11-kit: remove pointless --as-needed parameterRosen Penev2020-04-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is already default with meson. Not bumping PKG_RELEASE as there is no compiled difference. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | libevdev: fix compilation with old kernelsRosen Penev2020-04-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes compilation for 4.14 targets. Upstream backport. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | Merge pull request #11959 from neheb/ipfsRosen Penev2020-04-27
|\ \ \ \ \ | |/ / / / |/| | | | ipfs-http-client: fix compilation of tests
| * | | | ipfs-http-client: fix compilation of testsRosen Penev2020-04-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Wrong CMake variable was being used to enable them. Small whitespace fix. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | acme: Add acl_depends annotations to luci-app-acmeToke Høiland-Jørgensen2020-04-27
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Toke Høiland-Jørgensen <toke@redhat.com>
* | | | | mwan3: fix whitespace issueFlorian Eckert2020-04-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixes #11965 Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* | | | | Merge pull request #11975 from br101/websocketpp-0.8.2Hannu Nyman2020-04-27
|\ \ \ \ \ | |_|_|_|/ |/| | | | websocketpp: Update to version 0.8.2
| * | | | websocketpp: Update to version 0.8.2Bruno Randolf2020-04-27
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | This version has the boost 1.70+ compatibility included so we can drop the patch. Signed-off-by: Bruno Randolf <br1@einfach.org>
* | | | Merge pull request #11970 from jefferyto/python-target-build-toolsHannu Nyman2020-04-27
|\ \ \ \ | | | | | | | | | | python3: Fix host build tool names recorded in target files
| * | | | python3: Fix host build tool names recorded in target filesJeffery To2020-04-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Python will record the values of CC, CXX, AR, and READELF (and other configure options) used during compilation. pip will use these programs when asked to compile extension modules on the target device. * If ccache is used during build, CC and CXX will be ccache_cc and ccache_cxx, respectively, which are not available on-device (#11912). * If an external toolchain is used during build, the values of these variables will contain the external toolchain prefix, which may not be available on target. * If the normal toolchain is used during build, AR and READELF will contain the toolchain prefix, but the names of ar and readelf on-device do not contain the prefix; they are named "ar" and "readelf". This changes the values of these variables in Python's files to match the names available on-device, and without any toolchain prefix. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | zstd: remove lto and as-needed flagsRosen Penev2020-04-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The former can be implemented as a meson argument. The latter is already default. No compiled difference, therefore no PKG_RELEASE bump. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | Merge pull request #11967 from neheb/avahhhRosen Penev2020-04-26
|\ \ \ \ \ | |/ / / / |/| | | | avahi: remove these pkgconfig workarounds
| * | | | avahi: remove these pkgconfig workaroundsRosen Penev2020-04-26
|/ / / / | | | | | | | | | | | | | | | | | | | | Backported the upstream patch instead. Less error prone. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | Merge pull request #11963 from wvdakker/masterHannu Nyman2020-04-26
|\ \ \ \ | | | | | | | | | | Shorewall: Bump to 5.2.4.3
| * | | | Shoreware6: Bump to 5.2.4.3W. van den Akker2020-04-26
| | | | | | | | | | | | | | | | | | | | Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
| * | | | Shoreware: Bump to 5.2.4.3W. van den Akker2020-04-26
| | | | | | | | | | | | | | | | | | | | Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
| * | | | Shoreware6-lite: Bump to 5.2.4.3W. van den Akker2020-04-26
| | | | | | | | | | | | | | | | | | | | Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
| * | | | Shoreware-lite: Bump to 5.2.4.3W. van den Akker2020-04-26
| | | | | | | | | | | | | | | | | | | | Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
| * | | | Shoreware-core: Bump to 5.2.4.3W. van den Akker2020-04-26
| |/ / / | | | | | | | | | | | | Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
* / / / php7-pecl-dio: upgrade to 0.2.0Michael Heimpold2020-04-26
|/ / / | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | Merge pull request #11951 from neheb/ffiRosen Penev2020-04-25
|\ \ \ | | | | | | | | libffi: fix build failure on powerpc platforms
| * | | libffi: fix build failure on powerpc platformsRosen Penev2020-04-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is an upstream backport. Currently on the buildbots, having libffi unavailable leads to long range build failures. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | Merge pull request #11812 from neheb/ntfsRosen Penev2020-04-25
|\ \ \ \ | | | | | | | | | | antfs-mount: installl mount script to /usr
| * | | | ntfs-3g: do not install mount.ntfs into /usr/sbinRosen Penev2020-04-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ntfs-3g does not include nor install a file like this. Cleaned up Makefile for consistency between packages. Added PKG_BUILD_PARALLEL for faster compilation. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | Merge pull request #11952 from neheb/avaRosen Penev2020-04-25
|\ \ \ \ \ | |/ / / / |/| | | | avahi: fix dbus issue
| * | | | avahi: fix dbus issueRosen Penev2020-04-25
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Needs an extra configure parameter. Reverted pkgconfig fix. It's wrong anyway. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | Merge pull request #11955 from lantis1008/ddns-cloudflareRosen Penev2020-04-25
|\ \ \ \ | | | | | | | | | | ddns-scripts: cloudflare.com-v4: Fix success check
| * | | | ddns-scripts: cloudflare.com-v4: Fix success check for new response formatMichael Gray2020-04-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | JSON response now has spaces between parameters. Accept this new format and the old one. Signed-off-by: Michael Gray <michael.gray@lantisproject.com>
* | | | | Merge pull request #11918 from dvtirol/freeradius-restHannu Nyman2020-04-25
|\ \ \ \ \ | | | | | | | | | | | | Support building freeradius3-mod-rest
| * | | | | freeradius3: Support building freeradius3-mod-restTobias Girstmair2020-04-23
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Tobias Girstmair <tobias.girstmair@tirol.gv.at>
* | | | | | Merge pull request #11954 from Wedmer/zoneinfo_updateHannu Nyman2020-04-25
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | zoneinfo: Updated to the latest release
| * | | | | zoneinfo: Updated to the latest releaseVladimir Ulrich2020-04-25
|/ / / / / | | | | | | | | | | | | | | | Signed-off-by: Vladimir Ulrich <admin@evl.su>
* | | | | Merge pull request #11935 from neheb/mes2Rosen Penev2020-04-24
|\ \ \ \ \ | |_|/ / / |/| | | | meson: fix rpath handling
| * | | | meson: fix rpath handlingRosen Penev2020-04-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was uncovered with glib2 where the host builds were linking to the actual host instead of the generated libraries. Patch taken from buildroot. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | Merge pull request #11889 from neheb/dbusssRosen Penev2020-04-24
|\ \ \ \ \ | | | | | | | | | | | | dbus: update to 1.13.12
| * | | | | dbus: update to 1.13.12Rosen Penev2020-04-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ran scripts through shellcheck. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | Merge pull request #11943 from neheb/mpd3Rosen Penev2020-04-24
|\ \ \ \ \ \ | | | | | | | | | | | | | | mpd: update to 0.21.23
| * | | | | | mpd: update to 0.21.23Rosen Penev2020-04-23
| | |/ / / / | |/| | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | Merge pull request #11947 from jefferyto/python-lxml-default-buildHannu Nyman2020-04-24
|\ \ \ \ \ \ | | | | | | | | | | | | | | python-lxml: Use default Python package build recipe
| * | | | | | python-lxml: Use default Python package build recipeJeffery To2020-04-25
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This also updates the package's metadata (title, description, license). Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | | Merge pull request #11944 from jefferyto/python3-pip-pep517-pyc-fixHannu Nyman2020-04-24
|\ \ \ \ \ \ | | | | | | | | | | | | | | python3-pip: Fix error when installing packages that require compilation
| * | | | | | python3-pip: Fix error when installing packages that require compilationJeffery To2020-04-24
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This addresses one of the issues raised in #11912. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* / / / / / travelmate: refine logical interface selectionDirk Brenken2020-04-24
|/ / / / / | | | | | | | | | | Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | | Merge pull request #11766 from neheb/removeRosen Penev2020-04-22
|\ \ \ \ \ | | | | | | | | | | | | Mass unmaintained/unused package removal
| * | | | | libcanfestival: removeRosen Penev2020-04-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It seems that nothing uses this. Signed-off-by: Rosen Penev <rosenp@gmail.com>