41 lines
1.2 KiB
Makefile
41 lines
1.2 KiB
Makefile
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=resolvelib
|
|
PKG_VERSION:=0.9.0
|
|
PKG_RELEASE:=2
|
|
|
|
PYPI_NAME:=$(PKG_NAME)
|
|
PKG_HASH:=40ab05117c3281b1b160105e10075094c5ab118315003c922b77673a365290e1
|
|
PKG_MAINTAINER:=Lee Miller <lee.miller@tutanota.com>
|
|
PKG_LICENSE:=ISC
|
|
|
|
PKG_BUILD_DEPENDS:=python-setuptools-scm/host python-toml/host
|
|
|
|
include $(TOPDIR)/feeds/packages/lang/python/pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(TOPDIR)/feeds/packages/lang/python/python3-package.mk
|
|
|
|
define Package/python3-$(PKG_NAME)
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
TITLE:=Resolve abstract dependencies into concrete ones
|
|
URL:=https://github.com/sarugaku/resolvelib
|
|
DEPENDS:=+python3 +python3-setuptools
|
|
endef
|
|
|
|
define Package/python3-$(PKG_NAME)/description
|
|
ResolveLib at the highest level provides a Resolver class that includes
|
|
dependency resolution logic. You give it some things, and a little
|
|
information on how it should interact with them, and it will spit out
|
|
a resolution result.
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-$(PKG_NAME)))
|
|
$(eval $(call BuildPackage,python3-$(PKG_NAME)))
|
|
$(eval $(call BuildPackage,python3-$(PKG_NAME)-src))
|