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>
53 lines
1.5 KiB
Makefile
53 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2021 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-greenlet
|
|
PKG_VERSION:=1.1.2
|
|
PKG_RELEASE:=2
|
|
|
|
PYPI_NAME:=greenlet
|
|
PKG_HASH:=e30f5ea4ae2346e62cedde8794a56858a67b878dd79f7df76a0767e356b1744a
|
|
|
|
PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec1@gmail.com>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
# FIXME: remove when GCC10 is the oldest supported compiler, or the issue goes away
|
|
PKG_BUILD_FLAGS:=no-mips16
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-greenlet
|
|
SUBMENU:=Python
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=Lightweight coroutines for in-process concurrent programming
|
|
URL:=https://github.com/python-greenlet/greenlet
|
|
DEPENDS:= \
|
|
+python3-light \
|
|
+libstdcpp \
|
|
@!arc
|
|
endef
|
|
|
|
define Package/python3-greenlet/description
|
|
The greenlet package is a spin-off of Stackless
|
|
a version of CPython that supports micro-threads called tasklets.
|
|
endef
|
|
|
|
# FIXME: remove when GCC10 is the oldest supported compiler, or the issue goes away
|
|
# This is required in addition to PKG_BUILD_FLAGS:=no-mips16 because otherwise MIPS16
|
|
# flags are inherited from the Python base package (via sysconfig module)
|
|
ifdef CONFIG_USE_MIPS16
|
|
TARGET_CFLAGS += -mno-mips16 -mno-interlink-mips16
|
|
endif
|
|
|
|
$(eval $(call Py3Package,python3-greenlet))
|
|
$(eval $(call BuildPackage,python3-greenlet))
|
|
$(eval $(call BuildPackage,python3-greenlet-src))
|