Commit Graph

14 Commits

Author SHA1 Message Date
Rosen Penev 819dabf439 log4cplus: update to 2.1.1
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2024-02-14 17:09:50 -08:00
Paul Fertser 0c10c224be treewide: remove AUTORELEASE
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2023-04-21 22:46:58 +02:00
Andre Heider e7d9c86503 treewide: refactor to use PKG_BUILD_FLAGS:=lto
See commit 07730ff3 "treewide: add support for "lto" in PKG_BUILD_FLAGS"
on the main repository.

Note: Some packages only added `-flto` to CFLAGS and not LDFLAGS. This
fixes it and properly enables LTO.

Signed-off-by: Andre Heider <a.heider@gmail.com>
2023-04-08 08:38:54 +02:00
Rosen Penev b121a210c9 log4cplus: update to 2.0.8
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-11-05 10:32:29 -07:00
Rosen Penev a1f1303ae3 lib4cplus: update to 2.0.7
Switch to static lib. Avoids rpath hacks.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-28 17:31:06 -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 d9d49de98f log4cplus: update to 2.0.6
Switch to AUTORELEASE for simplicity.

Switch to building with Ninja for faster compilation.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-03-20 17:25:59 -07:00
Rosen Penev 89db244af7
log4cplus: apply cmake options to the host
loggingserver was getting built with a bad link path. Instead of fixing
it, just disable it as is done on the target.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-07-25 01:31:37 -07:00
Rosen Penev 98108cb167
log4cplus: update to 2.0.5
Remove CMake option made obsolete by cmake.mk

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-02-23 20:52:33 -08:00
Eneas U de Queiroz 8acde722f6
log4cplus: install host libraries into lib
Default host build for the package uses lib64, but dependents expect
libraries to be in $(STAGING_DIR_HOSTPKG)/lib.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2019-08-14 09:12:11 -03:00
Rosen Penev d6a72daec9
log4cplus: Build in parallel
Added PKG/HOST_BUILD_PARALLEL for faster compilation.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-06-28 14:34:22 -07:00
Rosen Penev 81276bac94 log4cplus: Update to 2.0.4
Switch to SourceForge URL. More mirrors available.

Remove InstallDev section. This is already included with CMAKE_INSTALL.

Minor cleanups.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-06-05 18:48:17 -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
BangLang Huang 3d565d0efe log4cplus: add new package
log4cplus is a simple to use C++11 logging API providing thread--safe,
flexible, and arbitrarily granular control over log management and
configuration. It is modeled after the Java log4j API.

wiki: https://sourceforge.net/p/log4cplus/wiki/Home/
github: https://github.com/log4cplus/log4cplus

Signed-off-by: BangLang Huang <banglang.huang@foxmail.com>
2019-04-01 18:33:49 +08:00