summaryrefslogtreecommitdiff
path: root/dev-python/python-axolotl-curve25519
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-12-02 10:26:04 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-12-02 10:26:04 +0000
commit398cac84cbffec151035b97d41bb74f4e90a3c25 (patch)
tree20f330952670b8dfdc30ffc4155c9c5d84c026d3 /dev-python/python-axolotl-curve25519
parent67e9a6aa3880e9f62fbb45984fd9480f72cc3c43 (diff)
downloadbaldeagleos-repo-398cac84cbffec151035b97d41bb74f4e90a3c25.tar.gz
baldeagleos-repo-398cac84cbffec151035b97d41bb74f4e90a3c25.tar.xz
baldeagleos-repo-398cac84cbffec151035b97d41bb74f4e90a3c25.zip
Adding metadata
Diffstat (limited to 'dev-python/python-axolotl-curve25519')
-rw-r--r--dev-python/python-axolotl-curve25519/files/python-axolotl-curve25519-fix-type.patch15
-rw-r--r--dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r3.ebuild2
2 files changed, 17 insertions, 0 deletions
diff --git a/dev-python/python-axolotl-curve25519/files/python-axolotl-curve25519-fix-type.patch b/dev-python/python-axolotl-curve25519/files/python-axolotl-curve25519-fix-type.patch
new file mode 100644
index 000000000000..dc30fff8d911
--- /dev/null
+++ b/dev-python/python-axolotl-curve25519/files/python-axolotl-curve25519-fix-type.patch
@@ -0,0 +1,15 @@
+See https://github.com/tgalal/python-axolotl-curve25519/pull/26
+
+diff --git a/curve25519module.c b/curve25519module.c
+index f4bd3d7..cf8bb45 100644
+--- a/curve25519module.c
++++ b/curve25519module.c
+@@ -158,7 +158,7 @@ curve25519_functions[] = {
+ PyModuleDef_HEAD_INIT,
+ "axolotl_curve25519",
+ NULL,
+- NULL,
++ 0,
+ curve25519_functions,
+ };
+
diff --git a/dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r3.ebuild b/dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r3.ebuild
index 05d2b6ac06c7..3eb396d105a3 100644
--- a/dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r3.ebuild
+++ b/dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r3.ebuild
@@ -18,3 +18,5 @@ S="${WORKDIR}/${PN}-${MY_PV}"
LICENSE="BSD GPL-3"
SLOT="0"
KEYWORDS="amd64 ~arm64 ~riscv x86"
+
+PATCHES=( "${FILESDIR}/python-axolotl-curve25519-fix-type.patch" )