aboutsummaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-multidict
diff options
context:
space:
mode:
authorDerek Straka <derek@asterius.io>2017-06-16 15:07:58 -0400
committerMartin Jansa <Martin.Jansa@gmail.com>2017-06-19 19:30:43 +0200
commitf1a2073e17d15695fb3adf465f26dd5634339dfe (patch)
treeacfb12d7c0391346080161b3cd969192c7ee66bf /meta-python/recipes-devtools/python/python3-multidict
parent0d8a65ba6605f5c019696a867f73a466e170e393 (diff)
downloadmeta-openembedded-contrib-f1a2073e17d15695fb3adf465f26dd5634339dfe.tar.gz
python3-multidict: update to version 2.1.6
Drop patch incorporated in upstream release Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-multidict')
-rw-r--r--meta-python/recipes-devtools/python/python3-multidict/0001-Allow-calling-make-clean-without-sphinx-build.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/meta-python/recipes-devtools/python/python3-multidict/0001-Allow-calling-make-clean-without-sphinx-build.patch b/meta-python/recipes-devtools/python/python3-multidict/0001-Allow-calling-make-clean-without-sphinx-build.patch
deleted file mode 100644
index d1d7ef5756..0000000000
--- a/meta-python/recipes-devtools/python/python3-multidict/0001-Allow-calling-make-clean-without-sphinx-build.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 39e13b4e3f7a1d1dd748e80cee241d511865d4e8 Mon Sep 17 00:00:00 2001
-From: Pascal Bach <pascal.bach@nextrem.ch>
-Date: Mon, 16 Jan 2017 21:29:12 +0100
-Subject: [PATCH] Allow calling make clean without sphinx-build
-
-Currently make clean fails without sphinx-build installed
-However sphinx-build is not really necessary to do a clean.
-This trick makes the docs/Makefile use the false binary instead of
-sphinx-build for the check when a clean is done.
-
-Upstream-Status: Submitted https://github.com/aio-libs/multidict/pull/41
-
----
- Makefile | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index 8f525f3..6d601e5 100644
---- a/Makefile
-+++ b/Makefile
-@@ -51,8 +51,8 @@ clean:
- rm -rf coverage
- rm -rf build
- rm -rf cover
-- make -C docs clean
-- python setup.py clean
-+ make -C docs clean SPHINXBUILD=false
-+ python3 setup.py clean
- rm -f multidict/_multidict.html
- rm -f multidict/_multidict.c
- rm -f multidict/_multidict.*.so
---
-2.7.4
-