2023-02-28 15:50:07 +08:00
|
|
|
#
|
|
|
|
# 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-build
|
2023-09-11 11:19:24 +08:00
|
|
|
PKG_VERSION:=1.0.3
|
2023-09-05 03:38:58 +08:00
|
|
|
PKG_RELEASE:=1
|
2023-02-28 15:50:07 +08:00
|
|
|
|
|
|
|
PYPI_NAME:=build
|
2023-09-11 11:19:24 +08:00
|
|
|
PKG_HASH:=538aab1b64f9828977f84bc63ae570b060a8ed1be419e7870b8b4fc5e6ea553b
|
2023-02-28 15:50:07 +08:00
|
|
|
|
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
|
|
|
|
|
|
|
|
PKG_HOST_ONLY:=1
|
|
|
|
HOST_BUILD_DEPENDS:= \
|
|
|
|
python3/host \
|
|
|
|
python-installer/host \
|
|
|
|
python-flit-core/host \
|
|
|
|
python-packaging/host \
|
2023-05-26 02:06:57 +08:00
|
|
|
python-pyproject-hooks/host
|
2023-02-28 15:50:07 +08:00
|
|
|
|
|
|
|
PYTHON3_HOST_BUILD_VARS:=PYTHONPATH=src
|
|
|
|
|
|
|
|
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-build
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
SUBMENU:=Python
|
|
|
|
TITLE:=A simple, correct Python build frontend
|
|
|
|
URL:=https://github.com/pypa/build
|
|
|
|
DEPENDS:=+python3-light +python3-logging
|
|
|
|
BUILDONLY:=1
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/python3-build/description
|
|
|
|
A simple, correct PEP 517 build frontend.
|
|
|
|
|
|
|
|
build will invoke the PEP 517 hooks to build a distribution package. It
|
|
|
|
is a simple build tool and does not perform any dependency management.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Py3Package,python3-build))
|
|
|
|
$(eval $(call BuildPackage,python3-build))
|
|
|
|
$(eval $(call BuildPackage,python3-build-src))
|
|
|
|
$(eval $(call HostBuild))
|