summaryrefslogtreecommitdiff
path: root/dev-python/spake2
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-05-26 01:28:12 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-05-26 01:28:12 +0000
commit53b1c31c8208ea1342e843950c293ce453459c1f (patch)
treecded2746620d41c7034f3b0dd0bcb786ce695032 /dev-python/spake2
parent019598ba87c343a17fc9a4ba5759cbc13861413b (diff)
downloadbaldeagleos-repo-53b1c31c8208ea1342e843950c293ce453459c1f.tar.gz
baldeagleos-repo-53b1c31c8208ea1342e843950c293ce453459c1f.tar.xz
baldeagleos-repo-53b1c31c8208ea1342e843950c293ce453459c1f.zip
Adding metadata
Diffstat (limited to 'dev-python/spake2')
-rw-r--r--dev-python/spake2/Manifest1
-rw-r--r--dev-python/spake2/metadata.xml11
-rw-r--r--dev-python/spake2/spake2-0.8.ebuild24
3 files changed, 36 insertions, 0 deletions
diff --git a/dev-python/spake2/Manifest b/dev-python/spake2/Manifest
new file mode 100644
index 000000000000..9f81f89fe54b
--- /dev/null
+++ b/dev-python/spake2/Manifest
@@ -0,0 +1 @@
+DIST spake2-0.8.gh.tar.gz 62425 BLAKE2B 64215362af26fff0785fdabf4282f7111a4cc917750827075b616f009cb1fa6373fc2325382c26b43c051aa5b94e414ca2a5223d9ab666289eb2d04723b15cb5 SHA512 908c377c831f4a11551973ca917b113d51a66c533d35fd19b2692fdb7e575ed2a5045d9b632bc55c37b68ad092f01dff5da191e9dfbfb5599b72844788438d68
diff --git a/dev-python/spake2/metadata.xml b/dev-python/spake2/metadata.xml
new file mode 100644
index 000000000000..f517494cf1e1
--- /dev/null
+++ b/dev-python/spake2/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>tamiko@gentoo.org</email>
+ <name>Matthias Maier</name>
+ </maintainer>
+
+ <origin>gentoo-staging</origin>
+ <stabilize-allarches/>
+</pkgmetadata> \ No newline at end of file
diff --git a/dev-python/spake2/spake2-0.8.ebuild b/dev-python/spake2/spake2-0.8.ebuild
new file mode 100644
index 000000000000..04d593374ca1
--- /dev/null
+++ b/dev-python/spake2/spake2-0.8.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{7,8,9,10,11} )
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1
+
+DESCRIPTION="python implementation of SPAKE2 password-authenticated key exchange algorithm"
+HOMEPAGE="https://pypi.org/project/spake2/"
+SRC_URI="https://github.com/warner/python-${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+S="${WORKDIR}/python-${P}"
+
+RDEPEND="
+ dev-python/more-itertools[${PYTHON_USEDEP}]
+ dev-python/hkdf[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest