Commit Graph

27 Commits

Author SHA1 Message Date
Rosen Penev 6386d1e9be elektra: fix compilation with GCC13
Upstream backport.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2023-11-18 20:19:05 -08:00
Rosen Penev 486368a559 elektra: get rid of pointless iconv patch
A better solution was discovered.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2023-01-13 00:04:40 -08:00
Rosen Penev 9a0e3adbdd elektra: actually fix compilation with iconv
find_package needs to be moved outside of if.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-07-14 14:09:03 -07:00
Rosen Penev 8788cd7c84 elektra: fix compilation with external iconv
Patch mostly taken from hidapi.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-07-10 01:20:01 -07:00
Harald Geyer 21abcc2968 elektra: update to 0.9.7
Notable changes:
* Use toml as new default storage backend:
  Upstream has removed the ini plugin, we have been using in the
  past. toml is still somewhat experimental, but upstream has
  designated it as future recommended default.
* Remove the dependency on boost. The only plugin needing that has
  been removed upstram.
* Enable plugins for libev and libuv event loop integration. This
  adds two new packages with the respective dependencies.
  Upstream has fixed the bugs preventing us from using this.
* Enable the internal notification plugin/system. This allows
  applications to automatically receive notifications about changes
  to their configuration. Again upstream fixing bugs enables this
  for us.
* Set the environment variable $XDG_CACHE_HOME to "/tmp/" globally
  to prevent elektra (and possibly other applications) from
  writing temporary data to flash.

Signed-off-by: Harald Geyer <harald@ccbib.org>
2021-07-13 23:45:43 +02:00
Rosen Penev 92e08f83e5 libelektra: fix compilation with GCC11
Missing header.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-07 14:49:57 -07:00
Rosen Penev 2e654b19f3 treewide: back to cmake.mk
Ninja was merged to base and therefore we can now use normal cmake.mk

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-12 21:05:01 -07:00
Rosen Penev a31b732007 treewide: build CMake projects with Ninja
faster to compile.

A small selection of packages was tested going from:

Executed in  696.30 secs   fish           external
   usr time   82.98 mins  395.00 micros   82.98 mins
   sys time    9.02 mins    0.00 micros    9.02 mins

to:

Executed in  592.20 secs   fish           external
   usr time   84.84 mins  361.00 micros   84.84 mins
   sys time    8.85 mins   57.00 micros    8.85 mins

Tested by running make -j 12 and wiping staging/build_dir/target_x

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-03-27 21:51:50 -07:00
Matt Merhar fb96fb3e4a elektra: explicitly disable gpgme plugin
With the addition of gpgme-config per 91a6168, elektra has started
detecting the presence of gpgme and is automatically building the
plugin. Even though it's not being installed, it has broken the build on
CONFIG_ARCH="arc" due to some LFS weirdness with uClibc.

Explicitly disable it since the package in its current form doesn't
expect it to be built.

Signed-off-by: Matt Merhar <mattmerhar@protonmail.com>
2020-12-19 17:39:39 -05:00
Rosen Penev 49ed96f309
elektra: fix compilation when cargo is present
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-09-20 18:30:25 -07:00
Rosen Penev a8461581b7
elektra: fully remove HostBuild
This is cosmetic since host-compile.mk is missing.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-06-09 14:56:06 -07:00
Harald Geyer 82e3475453 elektra: update to 0.9.2
Notable changes:
* Move some plugins from libelektra-plugins to libelektra-cpp because
  they got reimplemented in C++.
* New package libelektra-zmq
* Move the crypto plugin from libopenssl to libgcrypt
* Disable host build: elektra doesn't need it anymore and nobody uses
  kdb during package builds for now.

Closes: #12307

Signed-off-by: Harald Geyer <harald@ccbib.org>
2020-06-05 22:54:43 +02:00
Jeffery To 2ec2d69e13 elektra: Remove Python 2 plugin package
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2020-04-01 01:58:03 +08:00
Rosen Penev 035dfd530c
Merge pull request #9551 from neheb/elek
elektra: Switch to Lua 5.3
2019-07-25 20:36:23 -07:00
Rosen Penev a654d585dd
elektra: Switch to Lua 5.3
After the introduction of Lua 5.3 to OpenWrt, elektra picks it up instead
of 5.1. Since 5.1 is unsupported anyway, switch to 5.3.

Added liblua to PKG_BUILD_DEPENDS as the FindLua script is broken. Having
it here allows compilation to continue.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-07-25 18:38:23 -07:00
Eneas U de Queiroz 2593eabd6b treewide: Capitalize submenus
Fixed a typo in tcpreplay.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2019-07-25 09:35:40 +08:00
Rosen Penev 50719a639a
elektra: Fix compilation with uClibc-ng
Add patch that checks for libiconv instead of iconv. nls.mk handles this.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-06-21 12:25:54 -07:00
Rosen Penev ec46d03854 elektra: Fix compilation without deprecated OpenSSL APIs
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-05-15 17:29:50 -07:00
Eneas U de Queiroz e723f29792 elektra: skip ruby plugin in host/compile
Linking is failing, and the plugin is not needed for the host build
anyway.

Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
2018-12-07 16:30:36 -02:00
Harald Geyer 99666e5d2b elektra: update to 0.8.21
Signed-off-by: Harald Geyer <harald@ccbib.org>
2017-12-28 09:10:32 +00:00
Etienne Champetier 4006865ae8 treewide: run "make check FIXUP=1"
fix Makefile chmod (644)
replace MD5SUM with HASH
add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git

(PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now)

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
2017-08-29 21:41:14 -07:00
Harald Geyer e229930a50 elektra: Update to 0.8.19
Noteable change: The libelektra-extra package now depends on libstdcpp.

Signed-off-by: Harald Geyer <harald@ccbib.org>
2016-11-28 14:39:47 +01:00
Harald Geyer 65aa162dbe elektra: Update to 0.8.18
Signed-off-by: Harald Geyer <harald@ccbib.org>
2016-11-03 16:13:06 +00:00
Harald Geyer 5389876427 elektra: fix build error
* Move curlget plugin to its own package with proper dependencies
* Fix abuse of 'foreach' in the Makefile which masked the above issue

Signed-off-by: Harald Geyer <harald@ccbib.org>
2016-09-02 07:05:24 +00:00
Harald Geyer f20cbb1627 elektra: Update to 0.8.17
Notable changes:
Remove the work around introduced for 0.8.16 - the issue has been fixed
upstream.

Signed-off-by: Harald Geyer <harald@ccbib.org>
2016-06-20 16:49:16 +00:00
Harald Geyer b7d9ab4cba elektra: Update to 0.8.16
Notable changes:
Add -DCMAKE_CXX_FLAGS="-DELEKTRA_SHARED" to work around an upstream
bug (already fixed) in the Makefile.

Signed-off-by: Harald Geyer <harald@ccbib.org>
2016-05-11 20:20:41 +00:00
Harald Geyer a08af3ff86 elektra: Add the package
Elektra is a library and tools for advanced configuration management
(3-way merging, notifications, etc.). This has been tested on mxs target.

Signed-off-by: Harald Geyer <harald@ccbib.org>
2016-04-10 11:11:05 +00:00