summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-twofish_0.3.0.bb
diff options
context:
space:
mode:
authorTim Orling <ticotimo@gmail.com>2022-02-27 11:45:11 -0800
committerKhem Raj <raj.khem@gmail.com>2022-03-01 09:06:56 -0800
commit62a5f30896a3291d645785a2f658f62e336f91f7 (patch)
treee1184d66d6fa52d5b014273c48d8a3af607421db /meta-python/recipes-devtools/python/python3-twofish_0.3.0.bb
parent870a9bd263c51c47f718e2eb9b456a9d345c7330 (diff)
downloadmeta-openembedded-62a5f30896a3291d645785a2f658f62e336f91f7.tar.gz
python3-twofish: patch to use setuptools
setup.py bdist_wheel does not work with distutils (which is deprecated anyway). Add a patch to switch to setuptools to allow wheel to be built. Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-twofish_0.3.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-twofish_0.3.0.bb6
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-python/recipes-devtools/python/python3-twofish_0.3.0.bb b/meta-python/recipes-devtools/python/python3-twofish_0.3.0.bb
index 94fb71090..f45772d50 100644
--- a/meta-python/recipes-devtools/python/python3-twofish_0.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-twofish_0.3.0.bb
@@ -5,9 +5,11 @@ HOMEPAGE = "http://github.com/keybase/python-twofish"
5LICENSE = "BSD-3-Clause" 5LICENSE = "BSD-3-Clause"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=33a63abf6d7567b1689d8ce69f00e43b" 6LIC_FILES_CHKSUM = "file://LICENSE;md5=33a63abf6d7567b1689d8ce69f00e43b"
7 7
8SRC_URI += "file://0001-Fix-missing-return-statements-in-module-stubs.patch" 8SRC_URI += " \
9 file://0001-Fix-missing-return-statements-in-module-stubs.patch \
10 file://0002-setup.py-switch-to-setuptools.patch \
11"
9 12
10SRC_URI[md5sum] = "d7d22f16dc4ffa0e3ae2200654033abe"
11SRC_URI[sha256sum] = "b09d8bb50d33b23ff34cafb1f9209f858f752935c6a5c901efb92a41acb830fa" 13SRC_URI[sha256sum] = "b09d8bb50d33b23ff34cafb1f9209f858f752935c6a5c901efb92a41acb830fa"
12 14
13inherit pypi setuptools3 15inherit pypi setuptools3