subrepo:
  subdir:   "python-spake2"
  merged:   "ab4f715"
upstream:
  origin:   "https://aur.archlinux.org/python-spake2"
  branch:   "master"
  commit:   "ab4f715"
git-subrepo:
  version:  "0.4.1"
  origin:   "???"
  commit:   "???"
This commit is contained in:
Gabriel Ebner 2020-12-30 10:37:09 +01:00
parent 21169d9869
commit f1e391fa93
3 changed files with 52 additions and 0 deletions

15
python-spake2/.SRCINFO Normal file
View File

@ -0,0 +1,15 @@
pkgbase = python-spake2
pkgdesc = This library implements the SPAKE2 password-authenticated key exchange
pkgver = 0.8
pkgrel = 5
url = https://pypi.python.org/packages/10/7d/spake2-0.8
arch = any
license = MIT
makedepends = python-setuptools
depends = python
depends = python-hkdf
source = https://files.pythonhosted.org/packages/source/s/spake2/spake2-0.8.tar.gz
md5sums = 0155bad518bb49c39994fe0b7d9fb32c
pkgname = python-spake2

12
python-spake2/.gitrepo Normal file
View File

@ -0,0 +1,12 @@
; DO NOT EDIT (unless you know what you are doing)
;
; This subdirectory is a git "subrepo", and this file is maintained by the
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme
;
[subrepo]
remote = https://aur.archlinux.org/python-spake2
branch = master
commit = ab4f7150b81e47806301e1c07cf2221cfbb0d91b
parent = 21169d9869450c41188f44fe523dcf35a9faf0c3
method = merge
cmdver = 0.4.1

25
python-spake2/PKGBUILD Normal file
View File

@ -0,0 +1,25 @@
# maintainer Storm Dragon <stormdragon2976@gmail.com>
pkgname='python-spake2'
pkgver=0.8
pkgrel=5
pkgdesc="This library implements the SPAKE2 password-authenticated key exchange"
arch=('any')
url="https://pypi.python.org/packages/10/7d/spake2-${pkgver}"
license=('MIT')
depends=('python' 'python-hkdf')
makedepends=('python-setuptools')
source=("https://files.pythonhosted.org/packages/source/s/spake2/spake2-${pkgver}.tar.gz")
md5sums=('0155bad518bb49c39994fe0b7d9fb32c')
build() {
cd "$srcdir"/spake2-${pkgver}
python setup.py build
}
package() {
cd "$srcdir/spake2-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
}
# vim:set ts=2 sw=2 et: