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>
62 lines
1.7 KiB
Makefile
62 lines
1.7 KiB
Makefile
#
|
|
# Copyright (C) 2019 Banglang Huang <banglang.huang@foxmail.com>
|
|
# Copyright (C) 2019 Rosy Song <rosysong@rosinson.com>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=log4cplus
|
|
PKG_VERSION:=2.0.8
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=@SF/$(PKG_NAME)
|
|
PKG_HASH:=f5949e713cf8635fc554384ab99b04716e3430f28eed6dd7d71ad03d959b91a0
|
|
|
|
PKG_MAINTAINER:=BangLang Huang <banglang.huang@foxmail.com>, Rosy Song <rosysong@rosinson.com>
|
|
PKG_LICENSE:=BSD-2-Clause Apache-2.0
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
CMAKE_INSTALL:=1
|
|
PKG_BUILD_FLAGS:=lto
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/log4cplus
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=A simple to use C++ logging API
|
|
URL:=https://sourceforge.net/p/log4cplus/wiki/Home/
|
|
DEPENDS:=+libstdcpp
|
|
endef
|
|
|
|
define Package/log4cplus/description
|
|
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.
|
|
endef
|
|
|
|
OPTIONS:= \
|
|
-DLOG4CPLUS_BUILD_LOGGINGSERVER:BOOL=OFF \
|
|
-DLOG4CPLUS_BUILD_TESTING:BOOL=OFF \
|
|
-DLOG4CPLUS_ENABLE_DECORATED_LIBRARY_NAME:BOOL=OFF \
|
|
-DUNICODE:BOOL=OFF \
|
|
-DWITH_ICONV:BOOL=OFF
|
|
|
|
CMAKE_HOST_OPTIONS += $(OPTIONS) -DBUILD_SHARED_LIBS=OFF
|
|
CMAKE_OPTIONS += $(OPTIONS) -DBUILD_SHARED_LIBS=ON
|
|
|
|
TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed
|
|
|
|
define Package/log4cplus/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/liblog4cplus*.so* $(1)/usr/lib
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,log4cplus))
|
|
$(eval $(call HostBuild))
|