You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.0 KiB

  1. #
  2. # Copyright (C) 2020 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=python-augeas
  9. PKG_VERSION:=1.1.0
  10. PKG_RELEASE:=1
  11. PYPI_NAME:=python-augeas
  12. PKG_HASH:=5194a49e86b40ffc57055f73d833f87e39dce6fce934683e7d0d5bbb8eff3b8c
  13. PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec@nic.cz>
  14. PKG_LICENSE:=LGPL-2.1-or-later
  15. PKG_LICENSE_FILES:=COPYING
  16. HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:=cffi # cffi>=1.0.0
  17. include ../pypi.mk
  18. include $(INCLUDE_DIR)/package.mk
  19. include ../python3-package.mk
  20. define Package/python3-augeas
  21. SUBMENU:=Python
  22. SECTION:=lang
  23. CATEGORY:=Languages
  24. TITLE:=Python bindings for Augeas
  25. URL:=http://augeas.net
  26. DEPENDS:=+python3-light +python3-cffi +augeas
  27. endef
  28. define Package/python3-augeas/description
  29. Pure python bindings for Augeas.
  30. endef
  31. $(eval $(call Py3Package,python3-augeas))
  32. $(eval $(call BuildPackage,python3-augeas))
  33. $(eval $(call BuildPackage,python3-augeas-src))