Commit graph

2339 commits

Author SHA1 Message Date
Rosen Penev
54e6f29df1 quasselc: Fix compilation with uClibc-ng
nls.mk is needed.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-05-12 00:36:37 -07:00
Rosen Penev
3e520d2ba9
Merge pull request #8952 from ammubhave/add_boost_host_build
boost: add host library build for boost
2019-05-11 18:22:02 -07:00
Rosen Penev
caa57759fa
Merge pull request #8908 from neheb/art
libartnet: Fix compilation with GCC8
2019-05-11 12:08:41 -07:00
Rosen Penev
dcc243ce87
Merge pull request #8832 from neheb/libssh
libssh: Fix compilation without deprecated OpenSSL APIs
2019-05-11 12:05:22 -07:00
Amol Bhave
59cfd9007c libfolly: Fix folly missing deps
Description: folly automatically picks up lz4 and unwind if they are found
by its cmake build script. This is causing buildbot failure.
Include these libraries in DEPENDS as well.

Test Plan:
 - build packages liblz4 and libunwind
 - build folly, and check that it throws an error
 - add this patch, and rebuild
 - verify that it succeeds this time around

Compile Tested: nbg6817, openwrt master

Maintainer: me
Signed-off-by: Amol Bhave <ambhave@fb.com>
2019-05-11 06:52:09 -07:00
Rosen Penev
fc47511909
Merge pull request #8941 from ammubhave/add_libwangle
libwangle: Add new package libwangle
2019-05-10 21:43:58 -07:00
Amol Bhave
7c42ddf9ff boost: add host library build for boost
Summary: Currently, boost host build doesn't actually compile boost
libraries for the host arch. If there are host tools that would want
to link against boost, it can't right now.

This diff adds support for compiling host boost library as well.
Any packages that need to depend on a host boost library can depend on
CONFIG_boost-host-build-<lib>.

Test Plan: Compiled fbthrift and verified that it works.
used openwrt master using nbg6817

Maintainer: @ClaymorePT

Signed-off-by: Amol Bhave <ambhave@fb.com>
2019-05-10 18:42:30 -07:00
Daniel Golle
b21fa2ef5b libp11: update to version 0.4.10
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2019-05-10 23:15:36 +02:00
Amol Bhave
08a805c476 libwangle: Add new package libwangle
Wangle is a framework providing a set of common client/server
abstractions for building services in a consistent, modular, and
composable way.

tested with: master on nbg6817 and arc700.

Signed-off-by: Amol Bhave <ambhave@fb.com>
2019-05-10 12:31:49 -07:00
Rosen Penev
148e921279
Merge pull request #8928 from neheb/evh
libevhtp: Update to 1.2.0
2019-05-10 11:58:13 -07:00
Rosen Penev
8a69e0e0e0
Merge pull request #8940 from ammubhave/add_libfizz
libfizz: Add libfizz package
2019-05-10 11:56:52 -07:00
Rosen Penev
c27ec1b17d
Merge pull request #8942 from ammubhave/add_rsocket
librsocket-cpp: Add new package librsocket-cpp
2019-05-10 11:55:53 -07:00
Jonathan G. Underwood
a07ca474ad getdns: update to version 1.5.2
Signed-off-by: Jonathan G. Underwood <jonathan.underwood@gmail.com>
2019-05-10 19:32:10 +01:00
Amol Bhave
6bb4e3014c librsocket-cpp: Add new package librsocket-cpp
C++ implementation of RSocket
RSocket is a binary protocol for use on byte stream transports such as
TCP, WebSockets, and Aeron. (https://rsocket.io/)

This ships with two separte libraries, yarpl and rsocket

Patch 100 is already upstream
(862202c6e9).
Patch 101 in process of upstreaming as it needs to made compatible with
using both gold and ld.

[Dependency of https://github.com/facebook/openr]

Compile tested: openwrt master - nbg6817, arc700

Signed-off-by: Amol Bhave <ambhave@fb.com>
2019-05-10 11:12:19 -07:00
Amol Bhave
b59acfd358 libfizz: Add libfizz package
Fizz is a TLS 1.3 implementation.
Fizz currently supports TLS 1.3 drafts 28, 26 (both wire-compatible with
the final specification), and 23. All major handshake modes are
supported, including PSK resumption, early data, client authentication,
and HelloRetryRequest.

Compile tested: nbg6817 and arc700, openwrt master

Signed-off-by: Amol Bhave <ambhave@fb.com>
2019-05-10 11:12:10 -07:00
Rosen Penev
339e6e7aa9
Merge pull request #7876 from ammubhave/add_libfolly_stacked
libfolly: Add package for folly library
2019-05-10 08:08:39 -07:00
Rosen Penev
1333747d24
Merge pull request #7101 from ammubhave/add_libmstch
libmstch: add mstch library
2019-05-10 00:57:34 -07:00
Amol Bhave
24ba7d7155 libfolly: Add package for folly library
folly is an open-source C++ library developed and used at Facebook.
Adding this package will enable adding further packages that depend on
this.

Depends on PR #7098, PR #7101, PR #7126, PR #7877

Maintainer: me
Compile tested: openwrt-18.06 for ipq40xx, ipq806x, x86 and ar71xx
Run tested: Tested on devices running on the above architectures.
Verified that dependent packages can successfully build and run using
the libfolly.so shared library.

Signed-off-by: Amol Bhave <ambhave@fb.com>
2019-05-09 22:18:39 -07:00
Amol Bhave
f27e903d2f libmstch: add mstch library
mstch is an implementation of the the mustache templates using C++.
This package will build mstch static library that can be used by
other packages.

Signed-off-by: Amol Bhave <ambhave@fb.com>
2019-05-09 17:51:30 -07:00
Amol Bhave
d14e545b66 boost: Copy cmake in InstallDev step
Copy the cmake directory in the InstallDev step.
I am currently trying out actual host build for boost i.e. compiling
boost libaries for host tools. When I do that, that step installs the
boost cmake files in staging_dir/host.

This breaks other packages that use cmake to compile and use boost as a
dependency. This is because, their compilation step now begins using
staging_dir/host version of Boost, rather than the target version of
boost. Cmake gives priority to cmake version of Boost config, over
finding boost headers manually.

This change resolves that problem by installing the BoostConfig.cmake
file in staging_dir/<target> as well.

Compile tested: nbg6817

Signed-off-by: Amol Bhave <ambhave@fb.com>
2019-05-08 03:43:57 -07:00
Rosen Penev
9c77d6721f libevhtp: Update to 1.2.0
In the tree, libevhtp is used only for Seafile. This is the most recent
version that Haiwen lists as working.

Updated threads patch for OpenSSL 1.1.

Removed Maintainer as he is inactive.

Simplified Makefile a little bit and reorganized for consistency between
packages.

Fixed compilation with uClibc-ng.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-05-07 16:33:09 -07:00
Rosen Penev
1a916b2d35
Merge pull request #8923 from ammubhave/fixboost
boost: Fix boost apply_visitor for lvalue variants
2019-05-07 15:37:56 -07:00
Rosen Penev
6e9beb0a51
Merge pull request #8868 from neheb/icu
icu: Fix compilation with uClibc-ng
2019-05-07 01:17:34 -07:00
Amol Bhave
48e844101b boost: Fix boost apply_visitor for lvalue variants
Boost 1.70.0 broke the apply_visitor functions for lvalue reference
variants.
This imports the patch that fixes this issue from upstream.

Tested this by compiling a library
(https://github.com/facebookincubator/fizz) that works with 1.69 but
breaks with 1.70. And then, importing this patch and trying the
compilation again.

Compile tested: nbg6817

Maintainer: @ClaymorePT

Signed-off-by: Amol Bhave <ambhave@fb.com>
2019-05-07 00:56:55 -07:00
Amol Bhave
2cfba93020 libsigar: add sigar libary
sigar is a System Information Gatherer And Reporter library for C++
Adding the package so other C++ packages that depends on this library
can build.
This creates a libsigar.so shared library.

Signed-off-by: Amol Bhave <ambhave@fb.com>
2019-05-06 18:34:17 -07:00
Josef Schlehofer
1ccfdcc5b5
Merge pull request #8902 from ja-pa/measurement-kit-0.10.3
measurement-kit: update to version 0.10.3
2019-05-06 12:36:53 +02:00
Daniel Engberg
deb737c254
Merge pull request #8613 from diizzyy/libx264
libs/libx264: Update to 20190324 and rework Makefile
2019-05-06 12:19:19 +02:00
Daniel Engberg
45c8dcab79 libs/libx264: Update to 20190324 and rework Makefile
* Update (lib)x264 to 20190324
* Stop using GNU Autotools and use libx264's own
  configuration facility
* Drop hardcoded CFLAGS, x264 will handle those fine on its own
  This will override toolchain optimizaion and set -O3
  irregardless of setting.
* Rework LTO and ASM optmization selection to make it more
  compact and readable. This drops optimization for x86 32-bit
  which is being deprecated in favour of x86_64 in general and
  the very few systems still in use that doesn't support 64-bit
  are too slow to be usable anyway.
* Import patches to fix compilation on ARM and x86 (32-bit)
  from OpenEmbedded
* Minor style fixes to Makefile

Source: http://cgit.openembedded.org/openembedded-core/tree/meta/recipes-multimedia/x264/x264

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2019-05-06 09:05:22 +00:00
Rosen Penev
ec0bc8c0df
Merge pull request #8886 from lnslbrty/update/nDPI
libndpi: update to 2.8.0
2019-05-06 00:47:31 -07:00
Rosen Penev
c47a4e7d5d
faad2: Remove uClibc hack
OpenWrt uses uClibc-ng now, and it seems that these are no longer needed
as it seems faad2 automatically renames these functions.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-05-05 16:07:32 -07:00
Rosen Penev
fac6f0e0a5
libartnet: Fix compilation with GCC8
Previous GCC7 fix was incorrect and GCC8 correctly complains about it.
Fix it properly.

Also cleaned up the Makefile for consistency between packages.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-05-05 16:02:10 -07:00
Rosen Penev
5f28facc38
Merge pull request #8518 from neheb/i
libimobiledevice packages updated to git
2019-05-05 11:49:51 -07:00
Rosen Penev
70da12e516
libusbmuxd: Update to latest git
Upstream has really infrequent releases while having an active git
repository with important bugfixes. This is also needed because
libimobiledevice requires a new API from libusbmuxd.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-05-05 11:39:06 -07:00
Rosen Penev
4d04be40fb
libimobiledevice: Update to latest git
Upstream makes seriously infrequent updates whereas they have an active
git repository with important bugfixes.

Also fixed compilation without deprecated OpenSSL APIs.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-05-05 11:39:05 -07:00
Jan Pavlinec
b19fe550bb
measurement-kit: update to version 0.10.3
Add patch to fix disabled deprecated OpenSSL APIs

Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2019-05-05 07:58:20 +02:00
Rosen Penev
55320abae0
boost: Fix uClibc-ng compilation again
Several math functions are not defined in math.h and therefore cannot be
used.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-05-03 13:02:59 -07:00
Jeffery To
6a06da0404 libimobiledevice: Remove reference to python-package.mk
Since no Python packages are produced by this package, including
python-package.mk is unnecessary.

This removes the reference to python-package.mk. (PKG_RELEASE is
unchanged as this should have no effect on the build.)

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2019-05-04 03:24:52 +08:00
Rosen Penev
9f64ded7cf
Merge pull request #8827 from MikePetullo/libdmapsharing
libdmapsharing: update to 3.9.6
2019-05-03 09:31:07 -07:00
Toni Uhlig
ac2c99ea5c
libndpi: update to 2.8.0
The nDPI autogen.sh is broken and can lead to compile issues. Fixed.
Also removed PKG_INSTALL since it produces invalid symlinks to *.so*.

Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
2019-05-03 00:47:16 +02:00
Jiri Slachta
c680da9179
Merge pull request #8877 from jefferyto/tiff-pkg-config
tiff: Install pkg-config metadata file in Build/InstallDev
2019-05-02 11:44:39 +02:00
Jeffery To
1b90bf0db0 tiff: Install pkg-config metadata file in Build/InstallDev
Some programs use pkg-config to discover installed libraries.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2019-05-02 17:03:56 +08:00
Jeffery To
18f1cf62b6 libjpeg: Install pkg-config metadata file in Build/InstallDev
Some programs use pkg-config to discover installed libraries.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2019-05-02 15:40:54 +08:00
Rosen Penev
053faa31e5
boost: Fix compilation with uClibc-ng
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-05-01 13:58:56 -07:00
Rosen Penev
ba4f02b1f0
icu: Fix compilation with uClibc-ng
uClibc-ng does not define these math functions in math.h , only in
tgmath.h. Therefore the cmath header will not work.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-05-01 12:50:30 -07:00
Rosen Penev
8e6f049b26
treewide: Replace PKG_LICENSE_FILE with PKG_LICENSE_FILES
The latter is actually what is used by the build system. Increased
PKG_RELEASE for all packages as this changes the ipk.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-04-30 14:52:57 -07:00
Rosen Penev
30e10c07d3
Merge pull request #8848 from ammubhave/bump_re2
libre2: bump version to 2019-04-01
2019-04-30 14:48:12 -07:00
Amol Bhave
70d4a9a3b2 libre2: bump version to 2019-04-01
compile tested on nbg6817

Signed-off-by: Amol Bhave <ambhave@fb.com>
2019-04-30 13:08:00 -07:00
Rosen Penev
aa920879d1
Merge pull request #7877 from ammubhave/add_gflags_to_glog_stacked
libglog: Add gflags as a dependency for glog
2019-04-30 12:18:09 -07:00
Alexandru Ardelean
ffb716efb7 treewide,python: take over maintainership from Gergely Kiss
This change changes the maintainer to
 `Alexandru Ardelean <ardeleanalex@gmail.com`
for all Python packages owned by
 `Gergely Kiss <mail.gery@gmail.com>`

No functional changes.
Bumping PKG_RELEASE on each package that is updated.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2019-04-30 08:12:58 -03:00
Amol Bhave
44c24203a5 libglog: Add gflags a dependency for libglog
Depends on PR #7098

With gflags available, glog's compilation behaves differently and
includes gflags specific code. This code allows customizing logging in
programs that use glog, using command command line parameters.

Compile tested: openwrt-18.06 for ipq40xx, ipq806x, x86 and ar71xx
Run tested: Tested on devices running on the above architectures.

Signed-off-by: Amol Bhave <ambhave@fb.com>
2019-04-29 18:32:48 -07:00