dev-python/python-axolotl-curve25519: Fix setuptools warning

Closes: https://bugs.gentoo.org/797808
Signed-off-by: Hanno Böck <hanno@gentoo.org>
This commit is contained in:
Hanno Böck
2023-04-01 18:50:50 +02:00
parent b74e0086f5
commit a8faec5b17
2 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
diff -Naurp a/setup.py b/setup.py
--- a/setup.py 2018-04-14 12:44:43.000000000 +0200
+++ b/setup.py 2023-04-01 18:39:19.732484796 +0200
@@ -18,7 +18,7 @@ module_curve = Extension('axolotl_curve2
)
setup(
name='python-axolotl-curve25519',
- version="0.4.1-2",
+ version="0.4.1.post2",
license='GPLv3 License',
author='Tarek Galal',
ext_modules = [module_curve],

View File

@@ -19,4 +19,5 @@ LICENSE="BSD GPL-3"
SLOT="0"
KEYWORDS="amd64 ~arm64 ~riscv x86"
PATCHES=( "${FILESDIR}/python-axolotl-curve25519-fix-type.patch" )
PATCHES=( "${FILESDIR}/python-axolotl-curve25519-fix-type.patch"
"${FILESDIR}/${P}-fix-setuptools-warning.diff" )