Files
packages/lang/python/python-flit-core/Makefile
Alexandru Ardelean e0a12562b7 python3: merge python3-email into python3-urllib
As we're seeing in various test.sh scrip runs, importing 'email' fails
with not finding 'urllib' and vice-versa.

Then via a7e96ec91 ("python3-email: add python3-urllib as dependency")
I created a circular dependency.
So, might as well merge the two packages into one (named python3-urllib)
and updates all dependencies to pull python3-urllib.

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-04-04 18:27:26 +03:00

61 lines
1.6 KiB
Makefile

#
# Copyright (C) 2023 Jeffery To
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=python-flit-core
PKG_VERSION:=3.12.0
PKG_RELEASE:=2
PYPI_NAME:=flit-core
PYPI_SOURCE_NAME:=flit_core
PKG_HASH:=18f63100d6f94385c6ed57a72073443e1a71a4acb4339491615d0f16d6ff01b2
PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=LICENSE
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
PKG_HOST_ONLY:=1
HOST_BUILD_DEPENDS:=python3/host
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/host-build.mk
include ../python3-package.mk
include ../python3-host-build.mk
define Package/python3-flit-core
SECTION:=lang
CATEGORY:=Languages
SUBMENU:=Python
TITLE:=Distribution-building parts of Flit
URL:=https://github.com/pypa/flit
DEPENDS:=+python3-light +python3-urllib +python3-logging
BUILDONLY:=1
endef
define Package/python3-flit-core/description
This provides a PEP 517 build backend for packages using Flit. The only
public interface is the API specified by PEP 517, at flit_core.buildapi.
endef
define Py3Host/Install/Installer
$(call HostPython3/Run, \
$(HOST_BUILD_DIR), \
bootstrap_install.py \
--installdir "$(1)/lib/python$(PYTHON3_VERSION)/site-packages" \
"$(PYTHON3_HOST_BUILD_DIR)"/openwrt-build/$(PYPI_SOURCE_NAME)-$(PKG_VERSION)-*.whl \
)
endef
Host/Compile=$(Py3Host/Compile/Bootstrap)
$(eval $(call Py3Package,python3-flit-core))
$(eval $(call BuildPackage,python3-flit-core))
$(eval $(call BuildPackage,python3-flit-core-src))
$(eval $(call HostBuild))