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.

36 lines
998 B

  1. # This is free software, licensed under the GNU General Public License v2.
  2. # See /LICENSE for more information.
  3. #
  4. include $(TOPDIR)/rules.mk
  5. PKG_NAME:=click-log
  6. PKG_VERSION:=0.3.2
  7. PKG_RELEASE:=1
  8. PKG_MAINTAINER:=Karel Kočí <cynerd@email.cz>
  9. PKG_SOURCE_URL:=https://codeload.github.com/click-contrib/click-log/tar.gz/$(PKG_VERSION)?
  10. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  11. PKG_HASH:=16babb66a2ebf22c37c1cf38753a84e6027eb8991fcf9a8487971591b8ca9812
  12. PKG_LICENSE:=MIT
  13. include $(INCLUDE_DIR)/package.mk
  14. include ../python3-package.mk
  15. define Package/python3-click-log
  16. SECTION:=lang
  17. CATEGORY:=Languages
  18. SUBMENU:=Python
  19. URL:=http://github.com/mitsuhiko/click
  20. TITLE:=python3-click-log
  21. DEPENDS:=+python3-click
  22. VARIANT:=python3
  23. endef
  24. define Package/python3-click-log/description
  25. Simple and beautiful logging for click applications
  26. endef
  27. $(eval $(call Py3Package,python3-click-log))
  28. $(eval $(call BuildPackage,python3-click-log))
  29. $(eval $(call BuildPackage,python3-click-log-src))