Initial commit

This commit is contained in:
link2xt 2026-02-21 20:58:02 +00:00
commit ab5cd9836a
6 changed files with 94 additions and 0 deletions

23
.SRCINFO Normal file
View file

@ -0,0 +1,23 @@
pkgbase = pwdsphinx
pkgdesc = SPHINX: A Password Store that Perfectly Hides from Itself (No Xaggeration)
pkgver = 2.0.3
pkgrel = 1
url = https://github.com/stef/pwdsphinx
arch = x86_64
license = GPL-3.0-or-later
makedepends = python-build
makedepends = python-installer
makedepends = python-wheel
makedepends = python-setuptools
depends = python-securestring
depends = python-pysodium
depends = python-pyoprf
depends = python-qrcodegen
depends = python-pyequihash
source = pwdsphinx-2.0.3.tar.gz::https://github.com/stef/pwdsphinx/archive/refs/tags/v2.0.3.tar.gz
source = https://github.com/stef/pwdsphinx/releases/download/v2.0.3/pwdsphinx-2.0.3.tar.gz.asc
validpgpkeys = AABDE16CB6AF5CD10A28DFF2970DEB6694D50988
b2sums = 310bc54e839187d879288cbccbd2334c548337d957e3449d30a5427d0e32f768eac57eb740b1b1549f1d31d3fd97c59d84c382b5449021a2826738dd22d47683
b2sums = SKIP
pkgname = pwdsphinx

4
.gitignore vendored Normal file
View file

@ -0,0 +1,4 @@
*.asc
*.log
*.pkg.tar.zst
*.tar.gz

12
LICENSE Normal file
View file

@ -0,0 +1,12 @@
Copyright Arch Linux Contributors
Permission to use, copy, modify, and/or distribute this software for
any purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE
FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

1
LICENSES/0BSD.txt Symbolic link
View file

@ -0,0 +1 @@
../LICENSE

29
PKGBUILD Normal file
View file

@ -0,0 +1,29 @@
# Maintainer: link2xt <link2xt@testrun.org>
pkgname=pwdsphinx
pkgver=2.0.3
pkgrel=1
pkgdesc="SPHINX: A Password Store that Perfectly Hides from Itself (No Xaggeration)"
arch=(x86_64)
url="https://github.com/stef/pwdsphinx"
license=('GPL-3.0-or-later')
depends=(python-securestring python-pysodium python-pyoprf python-qrcodegen python-pyequihash)
makedepends=(python-build python-installer python-wheel python-setuptools)
checkdepends=()
optdepends=()
options=()
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/stef/$pkgname/archive/refs/tags/v$pkgver.tar.gz"
"https://github.com/stef/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz.asc")
noextract=()
b2sums=('310bc54e839187d879288cbccbd2334c548337d957e3449d30a5427d0e32f768eac57eb740b1b1549f1d31d3fd97c59d84c382b5449021a2826738dd22d47683'
'SKIP')
validpgpkeys=('AABDE16CB6AF5CD10A28DFF2970DEB6694D50988')
build() {
cd "$pkgname-$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "$pkgname-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}

25
REUSE.toml Normal file
View file

@ -0,0 +1,25 @@
version = 1
[[annotations]]
path = [
"PKGBUILD",
"README.md",
"keys/**",
".SRCINFO",
".gitignore",
".nvchecker.toml",
"*.install",
"*.sysusers",
"*sysusers.conf",
"*.tmpfiles",
"*tmpfiles.conf",
"*.logrotate",
"*.pam",
"*.service",
"*.socket",
"*.timer",
"*.desktop",
"*.hook",
]
SPDX-FileCopyrightText = "Arch Linux contributors"
SPDX-License-Identifier = "0BSD"