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.

52 lines
1.3 KiB

  1. #
  2. # Copyright (C) 2015-2018 OpenWrt.org
  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-enum34
  9. PKG_VERSION:=1.1.6
  10. PKG_RELEASE:=4
  11. PYPI_NAME:=enum34
  12. PKG_HASH:=8ad8c4783bf61ded74527bffb48ed9b54166685e4230386a9ed9b1279e2df5b1
  13. PKG_LICENSE:=BSD-3-Clause
  14. PKG_LICENSE_FILES:=enum/LICENSE
  15. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  16. PKG_CPE_ID:=cpe:/a:python:enum34
  17. include ../pypi.mk
  18. include $(INCLUDE_DIR)/package.mk
  19. include ../python-package.mk
  20. define Package/python-enum34/Default
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. SUBMENU:=Python
  24. TITLE:=Backported Python 3.4 enum
  25. URL:=https://bitbucket.org/stoneleaf/enum34
  26. endef
  27. define Package/python-enum34
  28. $(call Package/python-enum34/Default)
  29. DEPENDS:=+PACKAGE_python-enum34:python-light
  30. VARIANT:=python
  31. endef
  32. define Package/python-enum34/description
  33. enum34 is the new Python stdlib enum module available in Python 3.4
  34. backported for previous versions of Python from 2.4 to 3.3.
  35. endef
  36. define PyPackage/python-enum34/filespec
  37. +|$(PYTHON_PKG_DIR)
  38. -|$(PYTHON_PKG_DIR)/enum/test.py
  39. endef
  40. $(eval $(call PyPackage,python-enum34))
  41. $(eval $(call BuildPackage,python-enum34))
  42. $(eval $(call BuildPackage,python-enum34-src))