This thread contains a patchset. You're looking at the original emails,
but you may wish to use the patch review UI.
Review patch
1
[PATCH] testing/rofi-pass: new aport
https://github.com/carnager/rofi-pass/
rofi frontend for pass
---
testing/rofi-pass/APKBUILD | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
create mode 100644 testing/rofi-pass/APKBUILD
diff --git a/testing/rofi-pass/APKBUILD b/testing/rofi-pass/APKBUILD
new file mode 100644
index 0000000000..e053b88cc7
--- /dev/null
+++ b/testing/rofi-pass/APKBUILD
@@ -0,0 +1,19 @@
+# Contributor: Simon Zeni <simon@bl4ckb0ne.ca>
+# Maintainer: Simon Zeni <simon@bl4ckb0ne.ca>
+pkgname="rofi-pass"
+pkgver="2.0.2"
+pkgrel=0
+pkgdesc="rofi frontend for pass"
+url="https://github.com/carnager/rofi-pass"
+arch="noarch"
+license="gpl"
+depends="xdg-utils rofi pass gawk pwgen xdotool xclip"
+subpackages="$pkgname-doc"
+source="$pkgname-$pkgver.tar.gz::https://github.com/carnager/rofi-pass/archive/$pkgver.tar.gz"
+options="!check"
+
+package() {
+ make -C "$builddir" DESTDIR="$pkgdir" PREFIX="/usr" install
+}
+
+sha512sums="28f59696911089c31b3f17bde281e3d79c3f757ecc4da61386719c6cff9b31c0944a2ac549d7838f06c249d4535c0dc107ba684115f15db42a24bfdb2f575437 rofi-pass-2.0.2.tar.gz"
--
2.24.1
On Fri, 3 Jan 2020 15:47:36 -0500
Simon Zeni <simon@bl4ckb0ne.ca> wrote:
> https://github.com/carnager/rofi-pass/
> rofi frontend for pass
> ---
> testing/rofi-pass/APKBUILD | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
> create mode 100644 testing/rofi-pass/APKBUILD
>
> diff --git a/testing/rofi-pass/APKBUILD b/testing/rofi-pass/APKBUILD
> new file mode 100644
> index 0000000000..e053b88cc7
> --- /dev/null
> +++ b/testing/rofi-pass/APKBUILD
> @@ -0,0 +1,19 @@
> +# Contributor: Simon Zeni <simon@bl4ckb0ne.ca>
> +# Maintainer: Simon Zeni <simon@bl4ckb0ne.ca>
> +pkgname="rofi-pass"
> +pkgver="2.0.2"
> +pkgrel=0
> +pkgdesc="rofi frontend for pass"
> +url="https://github.com/carnager/rofi-pass"
> +arch="noarch"
> +license="gpl"
Please use the SPDX identifier for the license.
> +depends="xdg-utils rofi pass gawk pwgen xdotool xclip"
> +subpackages="$pkgname-doc"
> +source="$pkgname-$pkgver.tar.gz::https://github.com/carnager/rofi-pass/archive/$pkgver.tar.gz"
> +options="!check"
Please add an appropriate short comment on why check is disabled like:
'no tests' or 'required unpackaged dependencies'
> +
> +package() {
> + make -C "$builddir" DESTDIR="$pkgdir" PREFIX="/usr" install
> +}
> +
> +sha512sums="28f59696911089c31b3f17bde281e3d79c3f757ecc4da61386719c6cff9b31c0944a2ac549d7838f06c249d4535c0dc107ba684115f15db42a24bfdb2f575437
> rofi-pass-2.0.2.tar.gz"