2018-06-23 19:59:01 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=python-oauthlib
|
2019-08-22 17:36:14 +00:00
|
|
|
PKG_VERSION:=3.1.0
|
2020-04-21 17:27:50 +00:00
|
|
|
PKG_RELEASE:=2
|
2019-05-16 14:53:03 +00:00
|
|
|
|
2019-07-09 18:46:27 +00:00
|
|
|
PKG_MAINTAINER:=Eneas U de Queiroz <cotequeiroz@gmail.com>
|
2018-06-23 19:59:01 +00:00
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
2019-05-16 14:53:03 +00:00
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
2018-06-23 19:59:01 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=oauthlib
|
2019-08-22 17:36:14 +00:00
|
|
|
PKG_HASH:=bee41cc35fcca6e988463cacc3bcb8a96224f470ca547e697b604cc697b2f889
|
2018-06-23 19:59:01 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2018-06-23 19:59:01 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2018-12-04 15:53:37 +00:00
|
|
|
include ../python3-package.mk
|
2018-06-23 19:59:01 +00:00
|
|
|
|
2020-04-21 17:27:50 +00:00
|
|
|
define Package/python3-oauthlib
|
2018-06-23 19:59:01 +00:00
|
|
|
SUBMENU:=Python
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
2019-05-16 14:53:03 +00:00
|
|
|
TITLE:=OAuth request-signing logic for Python
|
2018-06-23 19:59:01 +00:00
|
|
|
URL:=https://github.com/oauthlib/oauthlib
|
2020-04-21 17:27:50 +00:00
|
|
|
DEPENDS:=+python3-light
|
2018-06-23 19:59:01 +00:00
|
|
|
endef
|
|
|
|
|
2020-04-01 14:21:16 +00:00
|
|
|
define Package/python3-oauthlib/description
|
2019-05-16 14:53:03 +00:00
|
|
|
A generic, spec-compliant, thorough implementation of the OAuth request-signing
|
|
|
|
logic for Python
|
2018-06-23 19:59:01 +00:00
|
|
|
endef
|
|
|
|
|
2018-12-04 15:53:37 +00:00
|
|
|
$(eval $(call Py3Package,python3-oauthlib))
|
|
|
|
$(eval $(call BuildPackage,python3-oauthlib))
|
|
|
|
$(eval $(call BuildPackage,python3-oauthlib-src))
|