summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-twofish
Commit message (Collapse)AuthorAgeFilesLines
* python3-twofish: patch to use setuptoolsTim Orling2022-03-011-0/+26
| | | | | | | | | 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>
* Revert "python3-twofish: drop recipe"Khem Raj2022-02-281-0/+38
| | | | This reverts commit 4ee3cc1ac5368443e161b9e356730707d948b08a.
* python3-twofish: drop recipeTim Orling2022-02-281-38/+0
| | | | | | | | | | The code has not been touched since 2013 and does not build with bdist_wheel. If you depend upon this recipe, please work with upstream to update the package to PEP-517 packaging. 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>
* python3-twofish: Fix missing return statements in module stubsMartin Jansa2019-08-121-0/+38
* fixes build with -Werror=return-type twofish.c: In function 'init_twofish': twofish.c:45:1: error: control reaches end of non-void function [-Werror=return-type] 45 | PyMODINIT_FUNC init_twofish(void) { } | ^~~~~~~~~~~~~~ twofish.c: In function 'PyInit__twofish': twofish.c:46:1: error: control reaches end of non-void function [-Werror=return-type] 46 | PyMODINIT_FUNC PyInit__twofish(void) { } | ^~~~~~~~~~~~~~ cc1: some warnings being treated as errors Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>