Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: rbw-1.3.0
@ 2021-08-05 23:05 ram02z
  2021-08-06  0:17 ` [PR PATCH] [Updated] " ram02z
                   ` (38 more replies)
  0 siblings, 39 replies; 40+ messages in thread
From: ram02z @ 2021-08-05 23:05 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1924 bytes --]

There is a new pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New package: rbw-1.3.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (aarch64-musl)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 1343 bytes --]

From 8c164356700cc3180a7319aa9790db4fd24649ba Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH] New package: rbw-1.3.0

---
 srcpkgs/rbw/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..47fe297c279e
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,31 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.3.0
+revision=1
+build_style=cargo
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghoauni <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+distfiles="${homepage}/snapshot/${pkgname}-${version}.tar.gz"
+checksum=7255e322b8c6bd6ee9da00f4c54211e94a132abec15b9f51b8351af31a4744ac
+
+do_build() {
+	cargo build --release --locked
+
+	${wrksrc}/target/release/rbw gen-completions bash > rbw.bash
+	${wrksrc}/target/release/rbw gen-completions fish > rbw.fish
+	${wrksrc}/target/release/rbw gen-completions zsh  > rbw.zsh
+}
+
+do_install() {
+	vbin target/release/rbw
+	vbin target/release/rbw-agent
+
+	vcompletion rbw.bash bash
+	vcompletion rbw.fish fish
+	vcompletion rbw.zsh  zsh
+
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New package: rbw-1.3.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
@ 2021-08-06  0:17 ` ram02z
  2021-08-06 11:50 ` ram02z
                   ` (37 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-08-06  0:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1929 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New package: rbw-1.3.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (aarch64-musl)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 1343 bytes --]

From e0917e21bb7a4ffeaf3b341fa58d63e46b89be05 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH] New package: rbw-1.3.0

---
 srcpkgs/rbw/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..f625482aa23d
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,31 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.3.0
+revision=1
+build_style=cargo
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+distfiles="${homepage}/snapshot/${pkgname}-${version}.tar.gz"
+checksum=7255e322b8c6bd6ee9da00f4c54211e94a132abec15b9f51b8351af31a4744ac
+
+do_build() {
+	cargo build --release --locked
+
+	${wrksrc}/target/release/rbw gen-completions bash > rbw.bash
+	${wrksrc}/target/release/rbw gen-completions fish > rbw.fish
+	${wrksrc}/target/release/rbw gen-completions zsh  > rbw.zsh
+}
+
+do_install() {
+	vbin target/release/rbw
+	vbin target/release/rbw-agent
+
+	vcompletion rbw.bash bash
+	vcompletion rbw.fish fish
+	vcompletion rbw.zsh  zsh
+
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New package: rbw-1.3.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
  2021-08-06  0:17 ` [PR PATCH] [Updated] " ram02z
@ 2021-08-06 11:50 ` ram02z
  2021-08-06 11:53 ` ram02z
                   ` (36 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-08-06 11:50 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1928 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New package: rbw-1.3.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 1382 bytes --]

From f6a5716b2ae7a78eaaed774526a8888f3b83fd6c Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH] New package: rbw-1.3.0

---
 srcpkgs/rbw/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..837c0151ba02
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,31 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.3.0
+revision=1
+build_style=cargo
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+distfiles="${homepage}/snapshot/${pkgname}-${version}.tar.gz"
+checksum=7255e322b8c6bd6ee9da00f4c54211e94a132abec15b9f51b8351af31a4744ac
+
+do_build() {
+	cargo build --release --locked
+
+	cargo run --release --locked --bin rbw -- gen-completions bash > rbw.bash
+	cargo run --release --locked --bin rbw -- gen-completions fish > rbw.fish
+	cargo run --release --locked --bin rbw -- gen-completions zsh  > rbw.zsh
+}
+
+do_install() {
+	vbin target/release/rbw
+	vbin target/release/rbw-agent
+
+	vcompletion rbw.bash bash
+	vcompletion rbw.fish fish
+	vcompletion rbw.zsh  zsh
+
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: New package: rbw-1.3.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
  2021-08-06  0:17 ` [PR PATCH] [Updated] " ram02z
  2021-08-06 11:50 ` ram02z
@ 2021-08-06 11:53 ` ram02z
  2021-08-06 13:25 ` [PR PATCH] [Updated] " ram02z
                   ` (35 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-08-06 11:53 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 234 bytes --]

New comment by ram02z on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#issuecomment-894207552

Comment:
Turns out not every arch has the same build directory, so I am letting `cargo` run it instead.

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New package: rbw-1.3.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (2 preceding siblings ...)
  2021-08-06 11:53 ` ram02z
@ 2021-08-06 13:25 ` ram02z
  2021-08-06 13:54 ` ram02z
                   ` (34 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-08-06 13:25 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1928 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New package: rbw-1.3.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 1321 bytes --]

From d0ca3f804cf2f415094a2ab3d446cffd5deecb7c Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH] New package: rbw-1.3.0

---
 srcpkgs/rbw/template | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..db94af54ee37
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,28 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.3.0
+revision=1
+build_style=cargo
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+distfiles="${homepage}/snapshot/${pkgname}-${version}.tar.gz"
+checksum=7255e322b8c6bd6ee9da00f4c54211e94a132abec15b9f51b8351af31a4744ac
+
+do_build() {
+	cargo build --release --locked
+
+	cargo run --release --locked --bin rbw -- gen-completions bash > rbw.bash
+	cargo run --release --locked --bin rbw -- gen-completions fish > rbw.fish
+	cargo run --release --locked --bin rbw -- gen-completions zsh  > rbw.zsh
+}
+
+post_install() {
+	vcompletion rbw.bash bash
+	vcompletion rbw.fish fish
+	vcompletion rbw.zsh  zsh
+
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: New package: rbw-1.3.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (3 preceding siblings ...)
  2021-08-06 13:25 ` [PR PATCH] [Updated] " ram02z
@ 2021-08-06 13:54 ` ram02z
  2021-08-06 15:02 ` ram02z
                   ` (33 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-08-06 13:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 229 bytes --]

New comment by ram02z on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#issuecomment-894207552

Comment:
Turns out not every arch builds to `target/release/` , so I am using `cargo run` instead.

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: New package: rbw-1.3.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (4 preceding siblings ...)
  2021-08-06 13:54 ` ram02z
@ 2021-08-06 15:02 ` ram02z
  2021-08-06 16:15 ` [PR REVIEW] " paper42
                   ` (32 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-08-06 15:02 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 456 bytes --]

New comment by ram02z on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#issuecomment-894322076

Comment:
Hmm, turns out rbw doesn't support the arm architecture, but it should support aarch64 according to [this](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw#n9). 

I will remove `arm*` from the archs list on the next push, but regarding aarch64 support I would appreciate some guidance on what to do next.

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR REVIEW] New package: rbw-1.3.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (5 preceding siblings ...)
  2021-08-06 15:02 ` ram02z
@ 2021-08-06 16:15 ` paper42
  2021-08-06 16:15 ` paper42
                   ` (31 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: paper42 @ 2021-08-06 16:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 351 bytes --]

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#discussion_r684351491

Comment:
This is probably the problem with cross compilation (arm*, aarch64*). `cargo run` compiles for the target architecture (arm) and then tries to run the arm binary on the host computer (x86_64) which fails.

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR REVIEW] New package: rbw-1.3.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (6 preceding siblings ...)
  2021-08-06 16:15 ` [PR REVIEW] " paper42
@ 2021-08-06 16:15 ` paper42
  2021-08-06 16:36 ` [PR PATCH] [Updated] " ram02z
                   ` (30 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: paper42 @ 2021-08-06 16:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 186 bytes --]

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#discussion_r684351847

Comment:
please don't use $homepage and $pkgname

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New package: rbw-1.3.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (7 preceding siblings ...)
  2021-08-06 16:15 ` paper42
@ 2021-08-06 16:36 ` ram02z
  2021-08-06 16:40 ` ram02z
                   ` (29 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-08-06 16:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1928 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New package: rbw-1.3.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 1213 bytes --]

From 21c4654dec7a791ac71ec7b8cefb6dd8b7f7a894 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH] New package: rbw-1.3.0

---
 srcpkgs/rbw/template | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..ad2d7533cd6e
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,27 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.3.0
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=7255e322b8c6bd6ee9da00f4c54211e94a132abec15b9f51b8351af31a4744ac
+
+post_build() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+	done
+}
+
+post_install() {
+	vcompletion rbw.bash bash
+	vcompletion rbw.fish fish
+	vcompletion rbw.zsh  zsh
+
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: New package: rbw-1.3.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (8 preceding siblings ...)
  2021-08-06 16:36 ` [PR PATCH] [Updated] " ram02z
@ 2021-08-06 16:40 ` ram02z
  2021-08-06 16:52 ` ram02z
                   ` (28 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-08-06 16:40 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 735 bytes --]

New comment by ram02z on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#issuecomment-894322076

Comment:
~~Hmm, turns out rbw doesn't support the arm architecture, but it should support aarch64 according to [this](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw#n9).~~

~~I will remove `arm*` from the archs list on the next push,~~ but regarding aarch64 support I would appreciate some guidance on what to do next.

Seems like the AUR package just didn't have any testers on arm. I managed to successfully compile all the CI architectures locally, by using https://github.com/void-linux/void-packages/blob/master/srcpkgs/pueue/template as reference. Hopefully, the CI should work now.

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: New package: rbw-1.3.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (9 preceding siblings ...)
  2021-08-06 16:40 ` ram02z
@ 2021-08-06 16:52 ` ram02z
  2021-08-06 21:28 ` ram02z
                   ` (27 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-08-06 16:52 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 207 bytes --]

New comment by ram02z on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#issuecomment-894387282

Comment:
Ok, so its still failing but atleast its not my template at fault. 

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: New package: rbw-1.3.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (10 preceding siblings ...)
  2021-08-06 16:52 ` ram02z
@ 2021-08-06 21:28 ` ram02z
  2021-08-10 14:13 ` [PR PATCH] [Updated] " ram02z
                   ` (26 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-08-06 21:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 740 bytes --]

New comment by ram02z on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#issuecomment-894322076

Comment:
~~Hmm, turns out rbw doesn't support the arm architecture, but it should support aarch64 according to [this](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw#n9).~~

~~I will remove `arm*` from the archs list on the next push,~~ but regarding aarch64 support I would appreciate some guidance on what to do next.

Seems like the AUR package just didn't have any testers on arm6l/7l. I managed to successfully compile all the CI architectures locally, by using https://github.com/void-linux/void-packages/blob/master/srcpkgs/pueue/template as reference. Hopefully, the CI should work now.

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New package: rbw-1.3.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (11 preceding siblings ...)
  2021-08-06 21:28 ` ram02z
@ 2021-08-10 14:13 ` ram02z
  2021-08-10 23:28 ` ram02z
                   ` (25 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-08-10 14:13 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1965 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New package: rbw-1.3.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 1271 bytes --]

From 072475b03e2d9d658675fafcaaf51b3bee18de69 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH] New package: rbw-1.3.0

---
 srcpkgs/rbw/template | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..cdf21a368234
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,28 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.3.0
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=7255e322b8c6bd6ee9da00f4c54211e94a132abec15b9f51b8351af31a4744ac
+
+post_build() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+	done
+}
+
+post_install() {
+	vcompletion rbw.bash bash
+	vcompletion rbw.fish fish
+	vcompletion rbw.zsh  zsh
+
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New package: rbw-1.3.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (12 preceding siblings ...)
  2021-08-10 14:13 ` [PR PATCH] [Updated] " ram02z
@ 2021-08-10 23:28 ` ram02z
  2021-08-10 23:34 ` New packages: rbw-1.3.0, rofi-rbw-0.4.1 ram02z
                   ` (24 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-08-10 23:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1965 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New package: rbw-1.3.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 2335 bytes --]

From 072475b03e2d9d658675fafcaaf51b3bee18de69 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH 1/2] New package: rbw-1.3.0

---
 srcpkgs/rbw/template | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..cdf21a368234
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,28 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.3.0
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=7255e322b8c6bd6ee9da00f4c54211e94a132abec15b9f51b8351af31a4744ac
+
+post_build() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+	done
+}
+
+post_install() {
+	vcompletion rbw.bash bash
+	vcompletion rbw.fish fish
+	vcompletion rbw.zsh  zsh
+
+	vlicense LICENSE
+}

From 75342571f7ad0788b5444043017776b2bbc06658 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Wed, 11 Aug 2021 00:27:22 +0100
Subject: [PATCH 2/2] New package: rofi-rbw-0.4.1

---
 srcpkgs/rofi-rbw/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/rofi-rbw/template

diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template
new file mode 100644
index 000000000000..69a0fbc771ae
--- /dev/null
+++ b/srcpkgs/rofi-rbw/template
@@ -0,0 +1,17 @@
+# Template file for 'rofi-rbw'
+pkgname=rofi-rbw
+version=0.4.1
+revision=1
+build_style=python3-pep517
+make_install_target="rofi_rbw-${version}-py3-none-any.whl"
+depends="python3 rbw"
+short_desc="Rofi frontend for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/fdw/rofi-rbw"
+distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz"
+checksum=4fe4d2704980d32ef630d76db4057b66b9a7b26d74de76d030ae6f9d9f4e1a07
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: New packages: rbw-1.3.0, rofi-rbw-0.4.1
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (13 preceding siblings ...)
  2021-08-10 23:28 ` ram02z
@ 2021-08-10 23:34 ` ram02z
  2021-08-10 23:37 ` [PR PATCH] [Updated] " ram02z
                   ` (23 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-08-10 23:34 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 275 bytes --]

New comment by ram02z on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#issuecomment-896381633

Comment:
Since new packages take a while to get merged, I added `rofi-rbw`, which I was planning to add after the original PR got merged anyway.

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New packages: rbw-1.3.0, rofi-rbw-0.4.1
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (14 preceding siblings ...)
  2021-08-10 23:34 ` New packages: rbw-1.3.0, rofi-rbw-0.4.1 ram02z
@ 2021-08-10 23:37 ` ram02z
  2021-09-13 23:47 ` ram02z
                   ` (22 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-08-10 23:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New packages: rbw-1.3.0, rofi-rbw-0.4.1
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 2388 bytes --]

From 072475b03e2d9d658675fafcaaf51b3bee18de69 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH 1/2] New package: rbw-1.3.0

---
 srcpkgs/rbw/template | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..cdf21a368234
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,28 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.3.0
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=7255e322b8c6bd6ee9da00f4c54211e94a132abec15b9f51b8351af31a4744ac
+
+post_build() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+	done
+}
+
+post_install() {
+	vcompletion rbw.bash bash
+	vcompletion rbw.fish fish
+	vcompletion rbw.zsh  zsh
+
+	vlicense LICENSE
+}

From 3d940f4b6159dffa685398b9efbbc276f6c3d1ce Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Wed, 11 Aug 2021 00:27:22 +0100
Subject: [PATCH 2/2] New package: rofi-rbw-0.4.1

---
 srcpkgs/rofi-rbw/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/rofi-rbw/template

diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template
new file mode 100644
index 000000000000..dba5151706c3
--- /dev/null
+++ b/srcpkgs/rofi-rbw/template
@@ -0,0 +1,18 @@
+# Template file for 'rofi-rbw'
+pkgname=rofi-rbw
+version=0.4.1
+revision=1
+build_style=python3-pep517
+make_install_target="rofi_rbw-${version}-py3-none-any.whl"
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3 rbw"
+short_desc="Rofi frontend for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/fdw/rofi-rbw"
+distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz"
+checksum=4fe4d2704980d32ef630d76db4057b66b9a7b26d74de76d030ae6f9d9f4e1a07
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New packages: rbw-1.3.0, rofi-rbw-0.4.1
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (15 preceding siblings ...)
  2021-08-10 23:37 ` [PR PATCH] [Updated] " ram02z
@ 2021-09-13 23:47 ` ram02z
  2021-09-13 23:48 ` ram02z
                   ` (21 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-09-13 23:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New packages: rbw-1.3.0, rofi-rbw-0.4.1
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 2411 bytes --]

From 072475b03e2d9d658675fafcaaf51b3bee18de69 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH 1/2] New package: rbw-1.3.0

---
 srcpkgs/rbw/template | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..cdf21a368234
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,28 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.3.0
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=7255e322b8c6bd6ee9da00f4c54211e94a132abec15b9f51b8351af31a4744ac
+
+post_build() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+	done
+}
+
+post_install() {
+	vcompletion rbw.bash bash
+	vcompletion rbw.fish fish
+	vcompletion rbw.zsh  zsh
+
+	vlicense LICENSE
+}

From 7588ec3fd7580fd280f7a01d11e2b08597a7935a Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Wed, 11 Aug 2021 00:27:22 +0100
Subject: [PATCH 2/2] New package: rofi-rbw-0.4.1

---
 srcpkgs/rofi-rbw/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/rofi-rbw/template

diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template
new file mode 100644
index 000000000000..713482b263cb
--- /dev/null
+++ b/srcpkgs/rofi-rbw/template
@@ -0,0 +1,18 @@
+# Template file for 'rofi-rbw'
+pkgname=rofi-rbw
+version=0.4.1
+revision=1
+build_style=python3-pep517
+make_install_target="rofi_rbw-${version}-py3-none-any.whl"
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3 python3-ConfigArgParse rbw"
+short_desc="Rofi frontend for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/fdw/rofi-rbw"
+distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz"
+checksum=4fe4d2704980d32ef630d76db4057b66b9a7b26d74de76d030ae6f9d9f4e1a07
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New packages: rbw-1.3.0, rofi-rbw-0.4.1
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (16 preceding siblings ...)
  2021-09-13 23:47 ` ram02z
@ 2021-09-13 23:48 ` ram02z
  2021-10-12  7:02 ` ram02z
                   ` (20 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-09-13 23:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New packages: rbw-1.3.0, rofi-rbw-0.4.1
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 2411 bytes --]

From 6fbe15459d1979b7c20173469d865bbadd2ac33b Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH 1/2] New package: rbw-1.3.0

---
 srcpkgs/rbw/template | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..cdf21a368234
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,28 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.3.0
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=7255e322b8c6bd6ee9da00f4c54211e94a132abec15b9f51b8351af31a4744ac
+
+post_build() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+	done
+}
+
+post_install() {
+	vcompletion rbw.bash bash
+	vcompletion rbw.fish fish
+	vcompletion rbw.zsh  zsh
+
+	vlicense LICENSE
+}

From 63169a525be7079902b2cd3047c5c0b48a7c0b92 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Wed, 11 Aug 2021 00:27:22 +0100
Subject: [PATCH 2/2] New package: rofi-rbw-0.4.1

---
 srcpkgs/rofi-rbw/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/rofi-rbw/template

diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template
new file mode 100644
index 000000000000..713482b263cb
--- /dev/null
+++ b/srcpkgs/rofi-rbw/template
@@ -0,0 +1,18 @@
+# Template file for 'rofi-rbw'
+pkgname=rofi-rbw
+version=0.4.1
+revision=1
+build_style=python3-pep517
+make_install_target="rofi_rbw-${version}-py3-none-any.whl"
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3 python3-ConfigArgParse rbw"
+short_desc="Rofi frontend for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/fdw/rofi-rbw"
+distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz"
+checksum=4fe4d2704980d32ef630d76db4057b66b9a7b26d74de76d030ae6f9d9f4e1a07
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New packages: rbw-1.3.0, rofi-rbw-0.4.1
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (17 preceding siblings ...)
  2021-09-13 23:48 ` ram02z
@ 2021-10-12  7:02 ` ram02z
  2021-10-12 10:07 ` ram02z
                   ` (19 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-10-12  7:02 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New packages: rbw-1.3.0, rofi-rbw-0.4.1
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 2411 bytes --]

From 4d01e9a3a49d4ac9823bbe08f0b11af943934f7a Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH 1/2] New package: rbw-1.3.0

---
 srcpkgs/rbw/template | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..cdf21a368234
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,28 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.3.0
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=7255e322b8c6bd6ee9da00f4c54211e94a132abec15b9f51b8351af31a4744ac
+
+post_build() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+	done
+}
+
+post_install() {
+	vcompletion rbw.bash bash
+	vcompletion rbw.fish fish
+	vcompletion rbw.zsh  zsh
+
+	vlicense LICENSE
+}

From 49b6b4cc91f85602b0ae1e7a64e0a39c9b1e8171 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Wed, 11 Aug 2021 00:27:22 +0100
Subject: [PATCH 2/2] New package: rofi-rbw-0.4.1

---
 srcpkgs/rofi-rbw/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/rofi-rbw/template

diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template
new file mode 100644
index 000000000000..713482b263cb
--- /dev/null
+++ b/srcpkgs/rofi-rbw/template
@@ -0,0 +1,18 @@
+# Template file for 'rofi-rbw'
+pkgname=rofi-rbw
+version=0.4.1
+revision=1
+build_style=python3-pep517
+make_install_target="rofi_rbw-${version}-py3-none-any.whl"
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3 python3-ConfigArgParse rbw"
+short_desc="Rofi frontend for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/fdw/rofi-rbw"
+distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz"
+checksum=4fe4d2704980d32ef630d76db4057b66b9a7b26d74de76d030ae6f9d9f4e1a07
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: New packages: rbw-1.3.0, rofi-rbw-0.4.1
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (18 preceding siblings ...)
  2021-10-12  7:02 ` ram02z
@ 2021-10-12 10:07 ` ram02z
  2021-10-31 14:17 ` [PR PATCH] [Updated] " ram02z
                   ` (18 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-10-12 10:07 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 172 bytes --]

New comment by ram02z on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#issuecomment-940863693

Comment:
Rebuilt rofi-rbw for python-3.10

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New packages: rbw-1.3.0, rofi-rbw-0.4.1
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (19 preceding siblings ...)
  2021-10-12 10:07 ` ram02z
@ 2021-10-31 14:17 ` ram02z
  2021-10-31 14:36 ` [PR PATCH] [Updated] New packages: rbw-1.4.1, rofi-rbw-0.4.1 ram02z
                   ` (17 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-10-31 14:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New packages: rbw-1.3.0, rofi-rbw-0.4.1
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 2411 bytes --]

From 715b7df55f9b47d13bce7a376b4be48b9ce12603 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH 1/2] New package: rbw-1.3.0

---
 srcpkgs/rbw/template | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..54d613301bba
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,28 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.4.1
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=70c55c1341f4181f8974f99ec24ee1caf918487135cfa578566d9e6c44eb47b0
+
+post_build() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+	done
+}
+
+post_install() {
+	vcompletion rbw.bash bash
+	vcompletion rbw.fish fish
+	vcompletion rbw.zsh  zsh
+
+	vlicense LICENSE
+}

From c7f0d818e828901ff8053bd5180947195ed83aa6 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Wed, 11 Aug 2021 00:27:22 +0100
Subject: [PATCH 2/2] New package: rofi-rbw-0.4.1

---
 srcpkgs/rofi-rbw/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/rofi-rbw/template

diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template
new file mode 100644
index 000000000000..713482b263cb
--- /dev/null
+++ b/srcpkgs/rofi-rbw/template
@@ -0,0 +1,18 @@
+# Template file for 'rofi-rbw'
+pkgname=rofi-rbw
+version=0.4.1
+revision=1
+build_style=python3-pep517
+make_install_target="rofi_rbw-${version}-py3-none-any.whl"
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3 python3-ConfigArgParse rbw"
+short_desc="Rofi frontend for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/fdw/rofi-rbw"
+distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz"
+checksum=4fe4d2704980d32ef630d76db4057b66b9a7b26d74de76d030ae6f9d9f4e1a07
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New packages: rbw-1.4.1, rofi-rbw-0.4.1
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (20 preceding siblings ...)
  2021-10-31 14:17 ` [PR PATCH] [Updated] " ram02z
@ 2021-10-31 14:36 ` ram02z
  2021-12-30 21:27 ` ram02z
                   ` (16 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-10-31 14:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New packages: rbw-1.4.1, rofi-rbw-0.4.1
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 2411 bytes --]

From 95cd4365e87e8808d92d328da606bcef86fef7c0 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH 1/2] New package: rbw-1.4.1

---
 srcpkgs/rbw/template | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..54d613301bba
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,28 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.4.1
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=70c55c1341f4181f8974f99ec24ee1caf918487135cfa578566d9e6c44eb47b0
+
+post_build() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+	done
+}
+
+post_install() {
+	vcompletion rbw.bash bash
+	vcompletion rbw.fish fish
+	vcompletion rbw.zsh  zsh
+
+	vlicense LICENSE
+}

From 361fc694ee70f5688bc08164779c91d435bd7746 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Wed, 11 Aug 2021 00:27:22 +0100
Subject: [PATCH 2/2] New package: rofi-rbw-0.4.1

---
 srcpkgs/rofi-rbw/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/rofi-rbw/template

diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template
new file mode 100644
index 000000000000..713482b263cb
--- /dev/null
+++ b/srcpkgs/rofi-rbw/template
@@ -0,0 +1,18 @@
+# Template file for 'rofi-rbw'
+pkgname=rofi-rbw
+version=0.4.1
+revision=1
+build_style=python3-pep517
+make_install_target="rofi_rbw-${version}-py3-none-any.whl"
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3 python3-ConfigArgParse rbw"
+short_desc="Rofi frontend for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/fdw/rofi-rbw"
+distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz"
+checksum=4fe4d2704980d32ef630d76db4057b66b9a7b26d74de76d030ae6f9d9f4e1a07
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New packages: rbw-1.4.1, rofi-rbw-0.4.1
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (21 preceding siblings ...)
  2021-10-31 14:36 ` [PR PATCH] [Updated] New packages: rbw-1.4.1, rofi-rbw-0.4.1 ram02z
@ 2021-12-30 21:27 ` ram02z
  2022-01-14 16:21 ` [PR PATCH] [Updated] New packages: rbw-1.4.1, rofi-rbw-0.5.0 ram02z
                   ` (15 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2021-12-30 21:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New packages: rbw-1.4.1, rofi-rbw-0.4.1
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 2490 bytes --]

From 7594df1ba4916d0ae6e107db84ea66aac814b127 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH 1/2] New package: rbw-1.4.1

---
 srcpkgs/rbw/template | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..54d613301bba
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,28 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.4.1
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=70c55c1341f4181f8974f99ec24ee1caf918487135cfa578566d9e6c44eb47b0
+
+post_build() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+	done
+}
+
+post_install() {
+	vcompletion rbw.bash bash
+	vcompletion rbw.fish fish
+	vcompletion rbw.zsh  zsh
+
+	vlicense LICENSE
+}

From 9ac86a4d6e93bce13033da46ffe6e0371ed6d685 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Wed, 11 Aug 2021 00:27:22 +0100
Subject: [PATCH 2/2] New package: rofi-rbw-0.5.0

---
 srcpkgs/rofi-rbw/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/rofi-rbw/template

diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template
new file mode 100644
index 000000000000..3454a4f31f95
--- /dev/null
+++ b/srcpkgs/rofi-rbw/template
@@ -0,0 +1,19 @@
+# Template file for 'rofi-rbw'
+pkgname=rofi-rbw
+version=0.5.0
+revision=1
+build_style=python3-pep517
+make_install_target="rofi_rbw-${version}-py3-none-any.whl"
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3 python3-ConfigArgParse rbw"
+short_desc="Rofi frontend for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/fdw/rofi-rbw"
+changelog="https://raw.githubusercontent.com/fdw/rofi-rbw/HEAD/CHANGELOG.md"
+distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz"
+checksum=377eae8ad120cba6d3de77501a69100a525a08cadabc86a15fa218f80f88ab03
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New packages: rbw-1.4.1, rofi-rbw-0.5.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (22 preceding siblings ...)
  2021-12-30 21:27 ` ram02z
@ 2022-01-14 16:21 ` ram02z
  2022-01-18 21:22 ` ram02z
                   ` (14 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2022-01-14 16:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New packages: rbw-1.4.1, rofi-rbw-0.5.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 2414 bytes --]

From 56db2b57d0a96b4697b6353a489d2a0f820deb1f Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH 1/2] New package: rbw-1.4.1

---
 srcpkgs/rbw/template | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..30e41ae804f8
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,23 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.4.1
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=70c55c1341f4181f8974f99ec24ee1caf918487135cfa578566d9e6c44eb47b0
+
+post_install() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+		vcompletion rbw.$shell $shell
+	done
+
+	vlicense LICENSE
+}

From 7f47de5845442048cdd757eafbd6ee37748dd74e Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Wed, 11 Aug 2021 00:27:22 +0100
Subject: [PATCH 2/2] New package: rofi-rbw-0.5.0

---
 srcpkgs/rofi-rbw/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/rofi-rbw/template

diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template
new file mode 100644
index 000000000000..3454a4f31f95
--- /dev/null
+++ b/srcpkgs/rofi-rbw/template
@@ -0,0 +1,19 @@
+# Template file for 'rofi-rbw'
+pkgname=rofi-rbw
+version=0.5.0
+revision=1
+build_style=python3-pep517
+make_install_target="rofi_rbw-${version}-py3-none-any.whl"
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3 python3-ConfigArgParse rbw"
+short_desc="Rofi frontend for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/fdw/rofi-rbw"
+changelog="https://raw.githubusercontent.com/fdw/rofi-rbw/HEAD/CHANGELOG.md"
+distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz"
+checksum=377eae8ad120cba6d3de77501a69100a525a08cadabc86a15fa218f80f88ab03
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New packages: rbw-1.4.1, rofi-rbw-0.5.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (23 preceding siblings ...)
  2022-01-14 16:21 ` [PR PATCH] [Updated] New packages: rbw-1.4.1, rofi-rbw-0.5.0 ram02z
@ 2022-01-18 21:22 ` ram02z
  2022-02-19 12:09 ` ram02z
                   ` (13 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2022-01-18 21:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New packages: rbw-1.4.1, rofi-rbw-0.5.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 2414 bytes --]

From 748a48565d3117b58d21d68963c73f57fa08a8ba Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH 1/2] New package: rbw-1.4.1

---
 srcpkgs/rbw/template | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..30e41ae804f8
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,23 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.4.1
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=70c55c1341f4181f8974f99ec24ee1caf918487135cfa578566d9e6c44eb47b0
+
+post_install() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+		vcompletion rbw.$shell $shell
+	done
+
+	vlicense LICENSE
+}

From 7d30d3212975d92271b5d49407968b4d3aeaf99d Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Wed, 11 Aug 2021 00:27:22 +0100
Subject: [PATCH 2/2] New package: rofi-rbw-0.5.0

---
 srcpkgs/rofi-rbw/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/rofi-rbw/template

diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template
new file mode 100644
index 000000000000..3454a4f31f95
--- /dev/null
+++ b/srcpkgs/rofi-rbw/template
@@ -0,0 +1,19 @@
+# Template file for 'rofi-rbw'
+pkgname=rofi-rbw
+version=0.5.0
+revision=1
+build_style=python3-pep517
+make_install_target="rofi_rbw-${version}-py3-none-any.whl"
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3 python3-ConfigArgParse rbw"
+short_desc="Rofi frontend for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/fdw/rofi-rbw"
+changelog="https://raw.githubusercontent.com/fdw/rofi-rbw/HEAD/CHANGELOG.md"
+distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz"
+checksum=377eae8ad120cba6d3de77501a69100a525a08cadabc86a15fa218f80f88ab03
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New packages: rbw-1.4.1, rofi-rbw-0.5.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (24 preceding siblings ...)
  2022-01-18 21:22 ` ram02z
@ 2022-02-19 12:09 ` ram02z
  2022-02-25  0:47 ` New packages: rbw-1.4.3, rofi-rbw-0.5.0 TinfoilSubmarine
                   ` (12 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2022-02-19 12:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New packages: rbw-1.4.1, rofi-rbw-0.5.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 2414 bytes --]

From 97634f1753e7a79c6d8e2d87de93e6dee5b11e74 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH 1/2] New package: rbw-1.4.3

---
 srcpkgs/rbw/template | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..ed98c1617613
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,23 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.4.3
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=2738aa6e868bf16292fcad9c9a45c60fe310d2303d06aea7875788bacda9b15b
+
+post_install() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+		vcompletion rbw.$shell $shell
+	done
+
+	vlicense LICENSE
+}

From db185b1e68ecc1965b6a0565d2b2e631c3324f6b Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Wed, 11 Aug 2021 00:27:22 +0100
Subject: [PATCH 2/2] New package: rofi-rbw-0.5.0

---
 srcpkgs/rofi-rbw/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/rofi-rbw/template

diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template
new file mode 100644
index 000000000000..3454a4f31f95
--- /dev/null
+++ b/srcpkgs/rofi-rbw/template
@@ -0,0 +1,19 @@
+# Template file for 'rofi-rbw'
+pkgname=rofi-rbw
+version=0.5.0
+revision=1
+build_style=python3-pep517
+make_install_target="rofi_rbw-${version}-py3-none-any.whl"
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3 python3-ConfigArgParse rbw"
+short_desc="Rofi frontend for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/fdw/rofi-rbw"
+changelog="https://raw.githubusercontent.com/fdw/rofi-rbw/HEAD/CHANGELOG.md"
+distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz"
+checksum=377eae8ad120cba6d3de77501a69100a525a08cadabc86a15fa218f80f88ab03
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: New packages: rbw-1.4.3, rofi-rbw-0.5.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (25 preceding siblings ...)
  2022-02-19 12:09 ` ram02z
@ 2022-02-25  0:47 ` TinfoilSubmarine
  2022-04-21 17:37 ` [PR REVIEW] " classabbyamp
                   ` (11 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: TinfoilSubmarine @ 2022-02-25  0:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 188 bytes --]

New comment by TinfoilSubmarine on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#issuecomment-1050405995

Comment:
Tested `rbw` package on x86_64, LGTM.

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR REVIEW] New packages: rbw-1.4.3, rofi-rbw-0.5.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (26 preceding siblings ...)
  2022-02-25  0:47 ` New packages: rbw-1.4.3, rofi-rbw-0.5.0 TinfoilSubmarine
@ 2022-04-21 17:37 ` classabbyamp
  2022-04-21 17:59 ` ram02z
                   ` (10 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: classabbyamp @ 2022-04-21 17:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 212 bytes --]

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#discussion_r855430334

Comment:
needs `xdotool` (xorg) or `wtype` (wayland) to work properly

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR REVIEW] New packages: rbw-1.4.3, rofi-rbw-0.5.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (27 preceding siblings ...)
  2022-04-21 17:37 ` [PR REVIEW] " classabbyamp
@ 2022-04-21 17:59 ` ram02z
  2022-04-21 20:46 ` Piraty
                   ` (9 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2022-04-21 17:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 259 bytes --]

New review comment by ram02z on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#discussion_r855450874

Comment:
That's true, but should I put both as dependencies? I don't use x11, so xdotool is a pointless dependency for me.

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR REVIEW] New packages: rbw-1.4.3, rofi-rbw-0.5.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (28 preceding siblings ...)
  2022-04-21 17:59 ` ram02z
@ 2022-04-21 20:46 ` Piraty
  2022-06-11 15:14 ` [PR PATCH] [Updated] " ram02z
                   ` (8 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: Piraty @ 2022-04-21 20:46 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 148 bytes --]

New review comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#discussion_r855580521

Comment:
no

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New packages: rbw-1.4.3, rofi-rbw-0.5.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (29 preceding siblings ...)
  2022-04-21 20:46 ` Piraty
@ 2022-06-11 15:14 ` ram02z
  2022-06-11 15:24 ` ram02z
                   ` (7 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2022-06-11 15:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New packages: rbw-1.4.3, rofi-rbw-0.5.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 2414 bytes --]

From 8f5203da0c8f5ed49a53ff795e4a311d69425d86 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH 1/2] New package: rbw-1.4.3

---
 srcpkgs/rbw/template | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..ed98c1617613
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,23 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.4.3
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=2738aa6e868bf16292fcad9c9a45c60fe310d2303d06aea7875788bacda9b15b
+
+post_install() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+		vcompletion rbw.$shell $shell
+	done
+
+	vlicense LICENSE
+}

From c60ef90e9e7db2632f4c0fc1e8ebf9a512cabaf6 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Wed, 11 Aug 2021 00:27:22 +0100
Subject: [PATCH 2/2] New package: rofi-rbw-0.5.0

---
 srcpkgs/rofi-rbw/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/rofi-rbw/template

diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template
new file mode 100644
index 000000000000..3454a4f31f95
--- /dev/null
+++ b/srcpkgs/rofi-rbw/template
@@ -0,0 +1,19 @@
+# Template file for 'rofi-rbw'
+pkgname=rofi-rbw
+version=0.5.0
+revision=1
+build_style=python3-pep517
+make_install_target="rofi_rbw-${version}-py3-none-any.whl"
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3 python3-ConfigArgParse rbw"
+short_desc="Rofi frontend for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/fdw/rofi-rbw"
+changelog="https://raw.githubusercontent.com/fdw/rofi-rbw/HEAD/CHANGELOG.md"
+distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz"
+checksum=377eae8ad120cba6d3de77501a69100a525a08cadabc86a15fa218f80f88ab03
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: New packages: rbw-1.4.3, rofi-rbw-0.5.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (30 preceding siblings ...)
  2022-06-11 15:14 ` [PR PATCH] [Updated] " ram02z
@ 2022-06-11 15:24 ` ram02z
  2022-06-18 10:45 ` [PR PATCH] [Updated] " ram02z
                   ` (6 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2022-06-11 15:24 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 162 bytes --]

New comment by ram02z on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#issuecomment-1152950502

Comment:
Rebuilt for Rust 1.61

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New packages: rbw-1.4.3, rofi-rbw-0.5.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (31 preceding siblings ...)
  2022-06-11 15:24 ` ram02z
@ 2022-06-18 10:45 ` ram02z
  2022-06-18 10:48 ` New packages: rbw-1.4.3, rofi-rbw-1.0.0 ram02z
                   ` (5 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2022-06-18 10:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New packages: rbw-1.4.3, rofi-rbw-0.5.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 2414 bytes --]

From 32f7f54f805068d2d5c8659135b9251f484840c1 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH 1/2] New package: rbw-1.4.3

---
 srcpkgs/rbw/template | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..ed98c1617613
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,23 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.4.3
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=2738aa6e868bf16292fcad9c9a45c60fe310d2303d06aea7875788bacda9b15b
+
+post_install() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+		vcompletion rbw.$shell $shell
+	done
+
+	vlicense LICENSE
+}

From 917a1468455f123deaccc3af2ec745816ea6eff3 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Wed, 11 Aug 2021 00:27:22 +0100
Subject: [PATCH 2/2] New package: rofi-rbw-1.0.0

---
 srcpkgs/rofi-rbw/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/rofi-rbw/template

diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template
new file mode 100644
index 000000000000..203a5a1eb549
--- /dev/null
+++ b/srcpkgs/rofi-rbw/template
@@ -0,0 +1,19 @@
+# Template file for 'rofi-rbw'
+pkgname=rofi-rbw
+version=1.0.0
+revision=1
+build_style=python3-pep517
+make_install_target="rofi_rbw-${version}-py3-none-any.whl"
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3 python3-ConfigArgParse rbw"
+short_desc="Rofi frontend for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/fdw/rofi-rbw"
+changelog="https://raw.githubusercontent.com/fdw/rofi-rbw/HEAD/CHANGELOG.md"
+distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz"
+checksum=25cebb7d0cbff19cd0dc54834455de0ae291c74c4d51d66a5c10a57093b49799
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: New packages: rbw-1.4.3, rofi-rbw-1.0.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (32 preceding siblings ...)
  2022-06-18 10:45 ` [PR PATCH] [Updated] " ram02z
@ 2022-06-18 10:48 ` ram02z
  2022-06-18 19:01 ` classabbyamp
                   ` (4 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2022-06-18 10:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 229 bytes --]

New comment by ram02z on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#issuecomment-1159443039

Comment:
@paper42 Are the CI failures related to the age of the PR? I can open up a new PR if so.

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: New packages: rbw-1.4.3, rofi-rbw-1.0.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (33 preceding siblings ...)
  2022-06-18 10:48 ` New packages: rbw-1.4.3, rofi-rbw-1.0.0 ram02z
@ 2022-06-18 19:01 ` classabbyamp
  2022-06-19  0:19 ` classabbyamp
                   ` (3 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: classabbyamp @ 2022-06-18 19:01 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 230 bytes --]

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#issuecomment-1159538720

Comment:
no, it was a transient issue with CI

also,you can do a force push to re-trigger CI

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: New packages: rbw-1.4.3, rofi-rbw-1.0.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (34 preceding siblings ...)
  2022-06-18 19:01 ` classabbyamp
@ 2022-06-19  0:19 ` classabbyamp
  2022-06-19 18:31 ` [PR PATCH] [Updated] " ram02z
                   ` (2 subsequent siblings)
  38 siblings, 0 replies; 40+ messages in thread
From: classabbyamp @ 2022-06-19  0:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 506 bytes --]

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#issuecomment-1159587452

Comment:
rofi-rbw added manpage, but it is currently being installed in `/usr/lib/python3.10/site-packages/share/man/man1/rofi-rbw.1` instead of `/usr/share/man/man1/rofi-rbw.1`.

a patch to remove:

https://github.com/fdw/rofi-rbw/blob/3153097f85bfb6b0b0468c4b3dab7b5b1667b115/setup.cfg#L26-L27

and

```sh
vman src/rofi_rbw/docs/rofi-rbw.1
```
should work

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Updated] New packages: rbw-1.4.3, rofi-rbw-1.0.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (35 preceding siblings ...)
  2022-06-19  0:19 ` classabbyamp
@ 2022-06-19 18:31 ` ram02z
  2022-06-19 18:32 ` ram02z
  2022-06-20 18:24 ` [PR PATCH] [Merged]: " classabbyamp
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2022-06-19 18:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]

There is an updated pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rbw
https://github.com/void-linux/void-packages/pull/32355

New packages: rbw-1.4.3, rofi-rbw-1.0.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

A patch file from https://github.com/void-linux/void-packages/pull/32355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rbw-32355.patch --]
[-- Type: text/x-diff, Size: 2451 bytes --]

From 32f7f54f805068d2d5c8659135b9251f484840c1 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Thu, 5 Aug 2021 23:54:23 +0100
Subject: [PATCH 1/2] New package: rbw-1.4.3

---
 srcpkgs/rbw/template | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 srcpkgs/rbw/template

diff --git a/srcpkgs/rbw/template b/srcpkgs/rbw/template
new file mode 100644
index 000000000000..ed98c1617613
--- /dev/null
+++ b/srcpkgs/rbw/template
@@ -0,0 +1,23 @@
+# Template file for 'rbw'
+pkgname=rbw
+version=1.4.3
+revision=1
+build_style="cargo"
+build_helper="qemu"
+depends="pinentry"
+short_desc="Unofficial command line client for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://git.tozt.net/rbw"
+changelog="https://git.tozt.net/rbw/plain/CHANGELOG.md"
+distfiles="https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"
+checksum=2738aa6e868bf16292fcad9c9a45c60fe310d2303d06aea7875788bacda9b15b
+
+post_install() {
+	for shell in bash fish zsh; do
+		vtargetrun target/${RUST_TARGET}/release/rbw gen-completions $shell > rbw.$shell
+		vcompletion rbw.$shell $shell
+	done
+
+	vlicense LICENSE
+}

From 839a92d9339774739f374bed7740cd0173759394 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Wed, 11 Aug 2021 00:27:22 +0100
Subject: [PATCH 2/2] New package: rofi-rbw-1.0.0

---
 srcpkgs/rofi-rbw/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/rofi-rbw/template

diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template
new file mode 100644
index 000000000000..37dc916c12d6
--- /dev/null
+++ b/srcpkgs/rofi-rbw/template
@@ -0,0 +1,20 @@
+# Template file for 'rofi-rbw'
+pkgname=rofi-rbw
+version=1.0.0
+revision=1
+build_style=python3-pep517
+make_install_target="rofi_rbw-${version}-py3-none-any.whl"
+hostmakedepends="python3-setuptools python3-wheel"
+depends="python3 python3-ConfigArgParse rbw"
+short_desc="Rofi frontend for Bitwarden"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/fdw/rofi-rbw"
+changelog="https://raw.githubusercontent.com/fdw/rofi-rbw/HEAD/CHANGELOG.md"
+distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz"
+checksum=25cebb7d0cbff19cd0dc54834455de0ae291c74c4d51d66a5c10a57093b49799
+
+post_install() {
+	vman src/rofi_rbw/docs/rofi-rbw.1
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: New packages: rbw-1.4.3, rofi-rbw-1.0.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (36 preceding siblings ...)
  2022-06-19 18:31 ` [PR PATCH] [Updated] " ram02z
@ 2022-06-19 18:32 ` ram02z
  2022-06-20 18:24 ` [PR PATCH] [Merged]: " classabbyamp
  38 siblings, 0 replies; 40+ messages in thread
From: ram02z @ 2022-06-19 18:32 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 220 bytes --]

New comment by ram02z on void-packages repository

https://github.com/void-linux/void-packages/pull/32355#issuecomment-1159789552

Comment:
> vman src/rofi_rbw/docs/rofi-rbw.1

Thanks! Didn't know a manpage was added.

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PR PATCH] [Merged]: New packages: rbw-1.4.3, rofi-rbw-1.0.0
  2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
                   ` (37 preceding siblings ...)
  2022-06-19 18:32 ` ram02z
@ 2022-06-20 18:24 ` classabbyamp
  38 siblings, 0 replies; 40+ messages in thread
From: classabbyamp @ 2022-06-20 18:24 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1832 bytes --]

There's a merged pull request on the void-packages repository

New packages: rbw-1.4.3, rofi-rbw-1.0.0
https://github.com/void-linux/void-packages/pull/32355

Description:
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-musl)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl

Closes #28973

#### Note:
Not sure whether to include the shell scripts in the [bin](https://git.tozt.net/rbw/tree/bin) directory, as they aren't installed on [Arch](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rbw) and are behind feature flags on [Nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/security/rbw/default.nix#L77).

^ permalink raw reply	[flat|nested] 40+ messages in thread

end of thread, other threads:[~2022-06-20 18:24 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-05 23:05 [PR PATCH] New package: rbw-1.3.0 ram02z
2021-08-06  0:17 ` [PR PATCH] [Updated] " ram02z
2021-08-06 11:50 ` ram02z
2021-08-06 11:53 ` ram02z
2021-08-06 13:25 ` [PR PATCH] [Updated] " ram02z
2021-08-06 13:54 ` ram02z
2021-08-06 15:02 ` ram02z
2021-08-06 16:15 ` [PR REVIEW] " paper42
2021-08-06 16:15 ` paper42
2021-08-06 16:36 ` [PR PATCH] [Updated] " ram02z
2021-08-06 16:40 ` ram02z
2021-08-06 16:52 ` ram02z
2021-08-06 21:28 ` ram02z
2021-08-10 14:13 ` [PR PATCH] [Updated] " ram02z
2021-08-10 23:28 ` ram02z
2021-08-10 23:34 ` New packages: rbw-1.3.0, rofi-rbw-0.4.1 ram02z
2021-08-10 23:37 ` [PR PATCH] [Updated] " ram02z
2021-09-13 23:47 ` ram02z
2021-09-13 23:48 ` ram02z
2021-10-12  7:02 ` ram02z
2021-10-12 10:07 ` ram02z
2021-10-31 14:17 ` [PR PATCH] [Updated] " ram02z
2021-10-31 14:36 ` [PR PATCH] [Updated] New packages: rbw-1.4.1, rofi-rbw-0.4.1 ram02z
2021-12-30 21:27 ` ram02z
2022-01-14 16:21 ` [PR PATCH] [Updated] New packages: rbw-1.4.1, rofi-rbw-0.5.0 ram02z
2022-01-18 21:22 ` ram02z
2022-02-19 12:09 ` ram02z
2022-02-25  0:47 ` New packages: rbw-1.4.3, rofi-rbw-0.5.0 TinfoilSubmarine
2022-04-21 17:37 ` [PR REVIEW] " classabbyamp
2022-04-21 17:59 ` ram02z
2022-04-21 20:46 ` Piraty
2022-06-11 15:14 ` [PR PATCH] [Updated] " ram02z
2022-06-11 15:24 ` ram02z
2022-06-18 10:45 ` [PR PATCH] [Updated] " ram02z
2022-06-18 10:48 ` New packages: rbw-1.4.3, rofi-rbw-1.0.0 ram02z
2022-06-18 19:01 ` classabbyamp
2022-06-19  0:19 ` classabbyamp
2022-06-19 18:31 ` [PR PATCH] [Updated] " ram02z
2022-06-19 18:32 ` ram02z
2022-06-20 18:24 ` [PR PATCH] [Merged]: " classabbyamp

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).