commit ab5cd9836a06ec56a4ae5bcc22aa66f6b96e9e2b Author: link2xt Date: Sat Feb 21 20:58:02 2026 +0000 Initial commit diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000000000..00287030e37d5 --- /dev/null +++ b/.SRCINFO @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000..7cdb452e9aa5c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.asc +*.log +*.pkg.tar.zst +*.tar.gz diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000..b87c5e4be4423 --- /dev/null +++ b/LICENSE @@ -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. diff --git a/LICENSES/0BSD.txt b/LICENSES/0BSD.txt new file mode 120000 index 0000000000000..ea5b60640b01f --- /dev/null +++ b/LICENSES/0BSD.txt @@ -0,0 +1 @@ +../LICENSE \ No newline at end of file diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000000000..2942f39be1408 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: link2xt +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 +} diff --git a/REUSE.toml b/REUSE.toml new file mode 100644 index 0000000000000..49e3625ad0e49 --- /dev/null +++ b/REUSE.toml @@ -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"