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>
55 lines
1.3 KiB
Makefile
55 lines
1.3 KiB
Makefile
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=expat
|
|
PKG_VERSION:=2.5.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=@SF/expat \
|
|
https://github.com/libexpat/libexpat/releases/download/R_$(subst .,_,$(PKG_VERSION))
|
|
PKG_HASH:=ef2420f0232c087801abf705e89ae65f6257df6b7931d37846a193ef2e8cdcbe
|
|
|
|
PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_CPE_ID:=cpe:/a:libexpat:expat
|
|
|
|
CMAKE_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/libexpat
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=An XML parsing library
|
|
URL:=https://libexpat.github.io/
|
|
endef
|
|
|
|
define Package/libexpat/description
|
|
A fast, non-validating, stream-oriented XML parsing library.
|
|
endef
|
|
|
|
CMAKE_OPTIONS += \
|
|
-DDOCBOOK_TO_MAN=OFF \
|
|
-DEXPAT_BUILD_TOOLS=OFF \
|
|
-DEXPAT_BUILD_EXAMPLES=OFF \
|
|
-DEXPAT_BUILD_TESTS=OFF \
|
|
-DEXPAT_BUILD_DOCS=OFF \
|
|
-DEXPAT_WITH_LIBBSD=OFF \
|
|
-DEXPAT_ENABLE_INSTALL=ON \
|
|
-DEXPAT_DTD=OFF \
|
|
-DEXPAT_NS=OFF \
|
|
-DEXPAT_DEV_URANDOM=OFF
|
|
|
|
define Package/libexpat/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libexpat.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libexpat))
|