diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/python-axolotl-curve25519 | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-python/python-axolotl-curve25519')
5 files changed, 0 insertions, 72 deletions
diff --git a/dev-python/python-axolotl-curve25519/Manifest b/dev-python/python-axolotl-curve25519/Manifest deleted file mode 100644 index e488ad0bf951..000000000000 --- a/dev-python/python-axolotl-curve25519/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST python-axolotl-curve25519-0.4.1-2.gh.tar.gz 100957 BLAKE2B cda4fb7ad7c78df7465a952e2b5f3c6616849876bc1c8b72dde08042a655c2b86233329d311f6bee1bfc6d2b32926968aafc7e6204320209c2c1bd008f1aa361 SHA512 cbc7c6caa47a9a811640c247a1be727d7b1b68bcdb4c5336e02b4d1eaf9fd2c57b7438b0da466a379a1c0f3f146756b9b7eea3c9b7945ce88478d4bf0b8a1e0d diff --git a/dev-python/python-axolotl-curve25519/files/python-axolotl-curve25519-0.4.1_p2-fix-setuptools-warning.diff b/dev-python/python-axolotl-curve25519/files/python-axolotl-curve25519-0.4.1_p2-fix-setuptools-warning.diff deleted file mode 100644 index b62111a0b7c3..000000000000 --- a/dev-python/python-axolotl-curve25519/files/python-axolotl-curve25519-0.4.1_p2-fix-setuptools-warning.diff +++ /dev/null @@ -1,12 +0,0 @@ -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], 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 deleted file mode 100644 index dc30fff8d911..000000000000 --- a/dev-python/python-axolotl-curve25519/files/python-axolotl-curve25519-fix-type.patch +++ /dev/null @@ -1,15 +0,0 @@ -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/metadata.xml b/dev-python/python-axolotl-curve25519/metadata.xml deleted file mode 100644 index 9bcf66a3d106..000000000000 --- a/dev-python/python-axolotl-curve25519/metadata.xml +++ /dev/null @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>conikost@gentoo.org</email> - <name>Conrad Kostecki</name> - </maintainer> - <longdescription> - This is a python wrapper for the curve25519 library with ed25519 signatures. - The C code was pulled from libaxolotl-android. - At the moment this wrapper is meant for use by <pkg>dev-python/python-axolotl</pkg>. - </longdescription> - <upstream> - <bugs-to>https://github.com/tgalal/python-axolotl-curve25519/issues</bugs-to> - <remote-id type="github">tgalal/python-axolotl-curve25519</remote-id> - <remote-id type="pypi">python-axolotl-curve25519</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r4.ebuild b/dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r4.ebuild deleted file mode 100644 index f200c2b2f838..000000000000 --- a/dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r4.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517="setuptools" -PYTHON_COMPAT=( python3_{13..14} ) - -inherit distutils-r1 - -MY_PV="${PV/_p/-}" - -DESCRIPTION="A python wrapper for the curve25519 library with ed25519 signatures" -HOMEPAGE="https://github.com/tgalal/python-axolotl-curve25519" -SRC_URI="https://github.com/tgalal/${PN}/archive/${MY_PV}.tar.gz -> ${PN}-${MY_PV}.gh.tar.gz" -S="${WORKDIR}/${PN}-${MY_PV}" - -LICENSE="BSD GPL-3" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~loong ~riscv x86" - -PATCHES=( - "${FILESDIR}/python-axolotl-curve25519-fix-type.patch" - "${FILESDIR}/${P}-fix-setuptools-warning.diff" -) |
