[Buildroot] [git commit] package/python-aiorwlock: new package

Thomas Petazzoni thomas.petazzoni at bootlin.com
Sun Dec 9 16:11:16 UTC 2018


commit: https://git.buildroot.net/buildroot/commit/?id=57b3e571272b12a22b06b8687aed3fbf82e9f6a1
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Read write lock for asyncio.

Signed-off-by: James Hilliard <james.hilliard1 at gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists at googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
---
 DEVELOPERS                                     |  1 +
 package/Config.in                              |  1 +
 package/python-aiorwlock/Config.in             |  7 +++++++
 package/python-aiorwlock/python-aiorwlock.hash |  5 +++++
 package/python-aiorwlock/python-aiorwlock.mk   | 14 ++++++++++++++
 5 files changed, 28 insertions(+)

diff --git a/DEVELOPERS b/DEVELOPERS
index 681547f841..4a2a4c16ff 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1000,6 +1000,7 @@ F:	package/python-aiohttp-security/
 F:	package/python-aiohttp-session/
 F:	package/python-aiohttp-sse/
 F:	package/python-aiojobs/
+F:	package/python-aiorwlock/
 F:	package/python-async-timeout/
 F:	package/python-cchardet/
 F:	package/python-multidict/
diff --git a/package/Config.in b/package/Config.in
index db72a1a126..5dbf7a510e 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -805,6 +805,7 @@ menu "External python modules"
 	source "package/python-aiohttp-security/Config.in"
 	source "package/python-aiohttp-session/Config.in"
 	source "package/python-aiohttp-sse/Config.in"
+	source "package/python-aiorwlock/Config.in"
 	source "package/python-aiojobs/Config.in"
 	source "package/python-alsaaudio/Config.in"
 	source "package/python-argh/Config.in"
diff --git a/package/python-aiorwlock/Config.in b/package/python-aiorwlock/Config.in
new file mode 100644
index 0000000000..afdc27dd6f
--- /dev/null
+++ b/package/python-aiorwlock/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PYTHON_AIORWLOCK
+	bool "python-aiorwlock"
+	depends on BR2_PACKAGE_PYTHON3
+	help
+	  Read write lock for asyncio.
+
+	  https://github.com/aio-libs/aiorwlock
diff --git a/package/python-aiorwlock/python-aiorwlock.hash b/package/python-aiorwlock/python-aiorwlock.hash
new file mode 100644
index 0000000000..51d1a29f20
--- /dev/null
+++ b/package/python-aiorwlock/python-aiorwlock.hash
@@ -0,0 +1,5 @@
+# md5, sha256 from https://pypi.org/pypi/aiorwlock/json
+md5	ee741761e4c9b1612e9dccf7f8bccdd0  aiorwlock-0.5.0.tar.gz
+sha256	3cd892576d024934d72c3dd098033f276ace3495e71a1197daa8d21409a52174  aiorwlock-0.5.0.tar.gz
+# Locally computed sha256 checksums
+sha256	56fb2baf14d84c59c15abbfbb1fdf30a724017e2ce97894a8236764513d10397  LICENSE
diff --git a/package/python-aiorwlock/python-aiorwlock.mk b/package/python-aiorwlock/python-aiorwlock.mk
new file mode 100644
index 0000000000..ca6aa25294
--- /dev/null
+++ b/package/python-aiorwlock/python-aiorwlock.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# python-aiorwlock
+#
+################################################################################
+
+PYTHON_AIORWLOCK_VERSION = 0.5.0
+PYTHON_AIORWLOCK_SOURCE = aiorwlock-$(PYTHON_AIORWLOCK_VERSION).tar.gz
+PYTHON_AIORWLOCK_SITE = https://files.pythonhosted.org/packages/0c/20/d30f332e6ecb2be467ab5603e277b26e3a8eb2a72f75bf8d309bdd4c0c82
+PYTHON_AIORWLOCK_SETUP_TYPE = setuptools
+PYTHON_AIORWLOCK_LICENSE = Apache-2.0
+PYTHON_AIORWLOCK_LICENSE_FILES = LICENSE
+
+$(eval $(python-package))


More information about the buildroot mailing list