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.

61 lines
1.5 KiB

  1. #
  2. # This is free software, licensed under the GNU General Public License v2.
  3. # See /LICENSE for more information.
  4. #
  5. include $(TOPDIR)/rules.mk
  6. PKG_NAME:=python-oauthlib
  7. PKG_VERSION:=3.1.0
  8. PKG_RELEASE:=1
  9. PKG_MAINTAINER:=Eneas U de Queiroz <cotequeiroz@gmail.com>
  10. PKG_LICENSE:=BSD-3-Clause
  11. PKG_LICENSE_FILES:=LICENSE
  12. PYPI_NAME:=oauthlib
  13. PKG_HASH:=bee41cc35fcca6e988463cacc3bcb8a96224f470ca547e697b604cc697b2f889
  14. include ../pypi.mk
  15. include $(INCLUDE_DIR)/package.mk
  16. include ../python-package.mk
  17. include ../python3-package.mk
  18. define Package/python-oauthlib/Default
  19. SUBMENU:=Python
  20. SECTION:=lang
  21. CATEGORY:=Languages
  22. TITLE:=OAuth request-signing logic for Python
  23. URL:=https://github.com/oauthlib/oauthlib
  24. endef
  25. define Package/python-oauthlib
  26. $(call Package/python-oauthlib/Default)
  27. DEPENDS:=+PACKAGE_python-oauthlib:python-light
  28. VARIANT:=python
  29. endef
  30. define Package/python3-oauthlib
  31. $(call Package/python-oauthlib/Default)
  32. DEPENDS:=+PACKAGE_python3-oauthlib:python3-light
  33. VARIANT:=python3
  34. endef
  35. define Package/python-oauthlib/description
  36. A generic, spec-compliant, thorough implementation of the OAuth request-signing
  37. logic for Python
  38. endef
  39. define Package/python3-oauthlib/description
  40. $(call Package/python-oauthlib/description)
  41. .
  42. (Variant for Python3)
  43. endef
  44. $(eval $(call PyPackage,python-oauthlib))
  45. $(eval $(call BuildPackage,python-oauthlib))
  46. $(eval $(call BuildPackage,python-oauthlib-src))
  47. $(eval $(call Py3Package,python3-oauthlib))
  48. $(eval $(call BuildPackage,python3-oauthlib))
  49. $(eval $(call BuildPackage,python3-oauthlib-src))