From 705176cd6ab47ff51ca75a9f05e97c2e4804f6cc Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Tue, 7 Mar 2023 13:51:26 +0800 Subject: [PATCH] onionshare-cli: Force old Python build process This package requires poetry to build using the new Python build process but poetry is not available, so force the old build process for now. Signed-off-by: Jeffery To --- net/onionshare-cli/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net/onionshare-cli/Makefile b/net/onionshare-cli/Makefile index 9acbec99fc..42afb80fd1 100644 --- a/net/onionshare-cli/Makefile +++ b/net/onionshare-cli/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=onionshare-cli PKG_VERSION:=2.3.1 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PYPI_NAME:=onionshare-cli PYPI_SOURCE_NAME:=onionshare_cli @@ -21,6 +21,8 @@ PKG_LICENSE_FILES:=LICENSE PKG_BUILD_DEPENDS:=python-setuptools-scm/host +PYTHON3_PKG_FORCE_DISTUTILS_SETUP:=1 + include ../../lang/python/pypi.mk include $(INCLUDE_DIR)/package.mk include ../../lang/python/python3-package.mk