This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_MWCLIENT
bool "python-mwclient"
select BR2_PACKAGE_PYTHON_REQUESTS_OAUTHLIB # runtime
select BR2_PACKAGE_PYTHON_SIX # runtime
help
MediaWiki API client.
https://github.com/btongminh/mwclient
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/mwclient/json
md5 c1b9f69d0eb71a031c1254b1ed16f678 mwclient-0.10.0.tar.gz
sha256 c3f1598a5f75fb80e9b8373f6574042208358aed81470fc2178a8ae7474069af mwclient-0.10.0.tar.gz
# Locally computed
sha256 0e713ce8e3e490bdc15ac1e59feba3009daef3fff10dd80d8baa6e5f9a294f32 LICENSE.md
@@ -0,0 +1,14 @@
################################################################################
#
# python-mwclient
#
################################################################################
PYTHON_MWCLIENT_VERSION = 0.10.0
PYTHON_MWCLIENT_SOURCE = mwclient-$(PYTHON_MWCLIENT_VERSION).tar.gz
PYTHON_MWCLIENT_SITE = https://files.pythonhosted.org/packages/c1/ec/6206a7b3834572b3c1082f58dc960f4e49543395aa55955b598c29c9f8ad
PYTHON_MWCLIENT_LICENSE = MIT
PYTHON_MWCLIENT_LICENSE_FILES = LICENSE.md
PYTHON_MWCLIENT_SETUP_TYPE = setuptools
$(eval $(python-package))