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>
45 lines
1.3 KiB
Makefile
45 lines
1.3 KiB
Makefile
#
|
||
# Copyright (C) 2018-2022 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
|
||
#
|
||
# This is free software, licensed under the GNU General Public License v2.
|
||
# See /LICENSE for more information.
|
||
#
|
||
|
||
include $(TOPDIR)/rules.mk
|
||
|
||
PKG_NAME:=python-websockets
|
||
PKG_VERSION:=10.3
|
||
PKG_RELEASE:=1
|
||
|
||
PYPI_NAME:=websockets
|
||
PKG_HASH:=fc06cc8073c8e87072138ba1e431300e2d408f054b27047d047b549455066ff4
|
||
|
||
PKG_MAINTAINER:=Michal Vasilek <michal.vasilek@nic.cz>
|
||
PKG_LICENSE:=BSD-3-Clause
|
||
PKG_LICENSE_FILES:=LICENSE
|
||
|
||
include ../pypi.mk
|
||
include $(INCLUDE_DIR)/package.mk
|
||
include ../python3-package.mk
|
||
|
||
define Package/python3-websockets
|
||
SECTION:=lang
|
||
CATEGORY:=Languages
|
||
SUBMENU:=Python
|
||
TITLE:=Library for developing WebSocket servers and clients
|
||
URL:=https://websockets.readthedocs.io/
|
||
DEPENDS:=+python3-light +python3-asyncio +python3-ctypes +python3-email \
|
||
+python3-logging +python3-urllib
|
||
endef
|
||
|
||
define Package/python3-websockets/description
|
||
websockets is a library for building WebSocket servers and clients
|
||
in Python with a focus on correctness and simplicity.
|
||
|
||
Built on top of asyncio, Python’s standard asynchronous I/O framework.
|
||
It provides an elegant coroutine-based API.
|
||
endef
|
||
|
||
$(eval $(call Py3Package,python3-websockets))
|
||
$(eval $(call BuildPackage,python3-websockets))
|
||
$(eval $(call BuildPackage,python3-websockets-src))
|