Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: lazycli 0.1.15
@ 2023-04-16  4:54 zen0bit
  2023-04-16  5:10 ` [PR PATCH] [Updated] New package: lazycli-0.1.15 zen0bit
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: zen0bit @ 2023-04-16  4:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oSoWoSo/VUR lazycli
https://github.com/void-linux/void-packages/pull/43472

New package: lazycli 0.1.15

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x64 glibc)


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

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

From 4507200dca42299170db6145cf7a3e8345e7bad5 Mon Sep 17 00:00:00 2001
From: zenobit <zen@osowoso.xyz>
Date: Wed, 14 Dec 2022 15:05:52 +0100
Subject: [PATCH] New package: lazycli 0.1.15 - not done yet

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

diff --git a/srcpkgs/lazycli/template b/srcpkgs/lazycli/template
new file mode 100644
index 000000000000..06ba9e2944c8
--- /dev/null
+++ b/srcpkgs/lazycli/template
@@ -0,0 +1,23 @@
+# Template file for 'lazycli'
+pkgname=lazycli
+version=0.1.15
+revision=1
+#archs="i686 x86_64"
+#wrksrc=
+#create_wrksrc=yes
+build_style=cargo
+#configure_args=""
+#make_build_args=""
+make_install_args="cargo install --locked --path ."
+#conf_files=""
+#make_dirs="/var/log/dir 0755 root root"
+#hostmakedepends=""
+#makedepends=""
+#depends=""
+short_desc="Turn static CLI commands into TUIs with ease"
+maintainer="zenobit <zen@osowoso.xyz>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/jesseduffield/lazycli"
+#changelog=""
+distfiles="https://github.com/jesseduffield/lazycli/archive/refs/tags/v0.1.15.tar.gz"
+checksum=66f4c4c5bedf4d3ceb35aebc1d7f18663c7250ac47241fea18108c0741bf2019

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

* Re: [PR PATCH] [Updated] New package: lazycli-0.1.15
  2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
@ 2023-04-16  5:10 ` zen0bit
  2023-04-19 20:58 ` zen0bit
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: zen0bit @ 2023-04-16  5:10 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oSoWoSo/VUR lazycli
https://github.com/void-linux/void-packages/pull/43472

New package: lazycli-0.1.15

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x64 glibc)


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

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

From dd0d1a8fda369d3def2119626139da79569fcf71 Mon Sep 17 00:00:00 2001
From: zenobit <zen@osowoso.xyz>
Date: Sun, 16 Apr 2023 07:09:10 +0200
Subject: [PATCH] New package: lazycli-0.1.15

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

diff --git a/srcpkgs/lazycli/template b/srcpkgs/lazycli/template
new file mode 100644
index 000000000000..be4ffdb59a16
--- /dev/null
+++ b/srcpkgs/lazycli/template
@@ -0,0 +1,28 @@
+# Template file for 'lazycli'
+pkgname=lazycli
+version=0.1.15
+revision=1
+build_style=cargo
+#configure_args=""
+#make_build_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+make_install_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+#conf_files=""
+short_desc="Turn static CLI commands into TUIs with ease"
+maintainer="zenobit <zen@osowoso.xyz>"
+license="MIT"
+homepage="https://github.com/jesseduffield/lazycli"
+#changelog=""
+distfiles="https://github.com/jesseduffield/lazycli/archive/refs/tags/v${version}.tar.gz"
+checksum=66f4c4c5bedf4d3ceb35aebc1d7f18663c7250ac47241fea18108c0741bf2019
+
+do_build() {
+	cargo build --release
+}
+
+do_install() {
+	vbin target/release/lazycli
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: lazycli-0.1.15
  2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
  2023-04-16  5:10 ` [PR PATCH] [Updated] New package: lazycli-0.1.15 zen0bit
@ 2023-04-19 20:58 ` zen0bit
  2023-04-22  4:54 ` zen0bit
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: zen0bit @ 2023-04-19 20:58 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oSoWoSo/VUR lazycli
https://github.com/void-linux/void-packages/pull/43472

New package: lazycli-0.1.15

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x64 glibc)


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

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

From d1542e1618cf7ed93a7c81a68aa3dec37e42e842 Mon Sep 17 00:00:00 2001
From: zenobit <zen@osowoso.xyz>
Date: Sun, 16 Apr 2023 07:09:10 +0200
Subject: [PATCH] New package: lazycli-0.1.15

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

diff --git a/srcpkgs/lazycli/template b/srcpkgs/lazycli/template
new file mode 100644
index 000000000000..be4ffdb59a16
--- /dev/null
+++ b/srcpkgs/lazycli/template
@@ -0,0 +1,28 @@
+# Template file for 'lazycli'
+pkgname=lazycli
+version=0.1.15
+revision=1
+build_style=cargo
+#configure_args=""
+#make_build_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+make_install_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+#conf_files=""
+short_desc="Turn static CLI commands into TUIs with ease"
+maintainer="zenobit <zen@osowoso.xyz>"
+license="MIT"
+homepage="https://github.com/jesseduffield/lazycli"
+#changelog=""
+distfiles="https://github.com/jesseduffield/lazycli/archive/refs/tags/v${version}.tar.gz"
+checksum=66f4c4c5bedf4d3ceb35aebc1d7f18663c7250ac47241fea18108c0741bf2019
+
+do_build() {
+	cargo build --release
+}
+
+do_install() {
+	vbin target/release/lazycli
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: lazycli-0.1.15
  2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
  2023-04-16  5:10 ` [PR PATCH] [Updated] New package: lazycli-0.1.15 zen0bit
  2023-04-19 20:58 ` zen0bit
@ 2023-04-22  4:54 ` zen0bit
  2023-04-22  5:09 ` zen0bit
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: zen0bit @ 2023-04-22  4:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oSoWoSo/VUR lazycli
https://github.com/void-linux/void-packages/pull/43472

New package: lazycli-0.1.15

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x64 glibc)


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

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

From 3ebef7732171af3e6e354fbd4c969d6b2a634dc4 Mon Sep 17 00:00:00 2001
From: zenobit <zen@osowoso.xyz>
Date: Sun, 16 Apr 2023 07:09:10 +0200
Subject: [PATCH] New package: lazycli-0.1.15

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

diff --git a/srcpkgs/lazycli/template b/srcpkgs/lazycli/template
new file mode 100644
index 000000000000..be4ffdb59a16
--- /dev/null
+++ b/srcpkgs/lazycli/template
@@ -0,0 +1,28 @@
+# Template file for 'lazycli'
+pkgname=lazycli
+version=0.1.15
+revision=1
+build_style=cargo
+#configure_args=""
+#make_build_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+make_install_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+#conf_files=""
+short_desc="Turn static CLI commands into TUIs with ease"
+maintainer="zenobit <zen@osowoso.xyz>"
+license="MIT"
+homepage="https://github.com/jesseduffield/lazycli"
+#changelog=""
+distfiles="https://github.com/jesseduffield/lazycli/archive/refs/tags/v${version}.tar.gz"
+checksum=66f4c4c5bedf4d3ceb35aebc1d7f18663c7250ac47241fea18108c0741bf2019
+
+do_build() {
+	cargo build --release
+}
+
+do_install() {
+	vbin target/release/lazycli
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: lazycli-0.1.15
  2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
                   ` (2 preceding siblings ...)
  2023-04-22  4:54 ` zen0bit
@ 2023-04-22  5:09 ` zen0bit
  2023-05-04 10:49 ` zen0bit
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: zen0bit @ 2023-04-22  5:09 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oSoWoSo/VUR lazycli
https://github.com/void-linux/void-packages/pull/43472

New package: lazycli-0.1.15

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x64 glibc)


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

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

From c1db12715a335ca7f2414ff0ea8d8e7b963a7f36 Mon Sep 17 00:00:00 2001
From: zenobit <zen@osowoso.xyz>
Date: Sun, 16 Apr 2023 07:09:10 +0200
Subject: [PATCH] New package: lazycli-0.1.15

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

diff --git a/srcpkgs/lazycli/template b/srcpkgs/lazycli/template
new file mode 100644
index 000000000000..759db455fc96
--- /dev/null
+++ b/srcpkgs/lazycli/template
@@ -0,0 +1,32 @@
+# Template file for 'lazycli'
+pkgname=lazycli
+version=0.1.15
+revision=1
+build_style=cargo
+#configure_args=""
+#make_build_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+make_install_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+#conf_files=""
+short_desc="Turn static CLI commands into TUIs with ease"
+maintainer="zenobit <zen@osowoso.xyz>"
+license="MIT"
+homepage="https://github.com/jesseduffield/lazycli"
+#changelog=""
+distfiles="https://github.com/jesseduffield/lazycli/archive/refs/tags/v${version}.tar.gz"
+checksum=66f4c4c5bedf4d3ceb35aebc1d7f18663c7250ac47241fea18108c0741bf2019
+
+pre_build() {
+	cargo fix --allow-no-vcs --bin lazycli --tests
+}
+
+do_build() {
+	cargo build --release
+}
+
+do_install() {
+	vbin target/release/lazycli
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: lazycli-0.1.15
  2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
                   ` (3 preceding siblings ...)
  2023-04-22  5:09 ` zen0bit
@ 2023-05-04 10:49 ` zen0bit
  2023-09-03  4:38 ` zen0bit
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: zen0bit @ 2023-05-04 10:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oSoWoSo/VUR lazycli
https://github.com/void-linux/void-packages/pull/43472

New package: lazycli-0.1.15

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x64 glibc)


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

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

From eac2a65e1e2b095c0ced8e6ae28c3dfbed9162a7 Mon Sep 17 00:00:00 2001
From: zenobit <zen@osowoso.xyz>
Date: Sun, 16 Apr 2023 07:09:10 +0200
Subject: [PATCH] New package: lazycli-0.1.15

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

diff --git a/srcpkgs/lazycli/template b/srcpkgs/lazycli/template
new file mode 100644
index 000000000000..befb596f6614
--- /dev/null
+++ b/srcpkgs/lazycli/template
@@ -0,0 +1,33 @@
+# Template file for 'lazycli'
+pkgname=lazycli
+version=0.1.15
+revision=1
+build_style=cargo
+configure_args="RUST_BACKTRACE=1"
+#make_build_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+make_install_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+#conf_files=""
+short_desc="Turn static CLI commands into TUIs with ease"
+maintainer="zenobit <zen@osowoso.xyz>"
+license="MIT"
+homepage="https://github.com/jesseduffield/lazycli"
+#changelog=""
+distfiles="https://github.com/jesseduffield/lazycli/archive/refs/tags/v${version}.tar.gz"
+checksum=66f4c4c5bedf4d3ceb35aebc1d7f18663c7250ac47241fea18108c0741bf2019
+
+pre_build() {
+	cargo fix --allow-no-vcs --bin lazycli --tests
+  cargo fix --allow-no-vcs --bin lazycli
+}
+
+do_build() {
+	cargo build --release
+}
+
+do_install() {
+	vbin target/release/lazycli
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: lazycli-0.1.15
  2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
                   ` (4 preceding siblings ...)
  2023-05-04 10:49 ` zen0bit
@ 2023-09-03  4:38 ` zen0bit
  2023-09-03  4:40 ` zen0bit
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: zen0bit @ 2023-09-03  4:38 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oSoWoSo/VUR lazycli
https://github.com/void-linux/void-packages/pull/43472

New package: lazycli-0.1.15

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x64 glibc)


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

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

From 6267ad2153bfca9802a45e44ae66c38a5cfc95f3 Mon Sep 17 00:00:00 2001
From: zenobit <zen@osowoso.xyz>
Date: Sun, 16 Apr 2023 07:09:10 +0200
Subject: [PATCH] New package: lazycli-0.1.15

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

diff --git a/srcpkgs/lazycli/template b/srcpkgs/lazycli/template
new file mode 100644
index 0000000000000..d357e11f559b9
--- /dev/null
+++ b/srcpkgs/lazycli/template
@@ -0,0 +1,27 @@
+# Template file for 'lazycli'
+pkgname=lazycli
+version=0.1.15
+revision=1
+build_style=cargo
+makedepends="rust-std"
+configure_args="RUST_BACKTRACE=1"
+make_install_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+short_desc="Turn static CLI commands into TUIs with ease"
+maintainer="zenobit <zen@osowoso.xyz>"
+license="MIT"
+homepage="https://github.com/jesseduffield/lazycli"
+#changelog=""
+distfiles="https://github.com/jesseduffield/lazycli/archive/refs/tags/v${version}.tar.gz"
+checksum=66f4c4c5bedf4d3ceb35aebc1d7f18663c7250ac47241fea18108c0741bf2019
+
+do_build() {
+	cargo build --release
+}
+
+do_install() {
+	vbin target/release/lazycli
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: lazycli-0.1.15
  2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
                   ` (5 preceding siblings ...)
  2023-09-03  4:38 ` zen0bit
@ 2023-09-03  4:40 ` zen0bit
  2023-09-04 13:52 ` zen0bit
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: zen0bit @ 2023-09-03  4:40 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oSoWoSo/VUR lazycli
https://github.com/void-linux/void-packages/pull/43472

New package: lazycli-0.1.15

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x64 glibc)


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

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

From cfcc75a474c88a54ceff87f8944ceb034e7e1341 Mon Sep 17 00:00:00 2001
From: zenobit <zen@osowoso.xyz>
Date: Sun, 16 Apr 2023 07:09:10 +0200
Subject: [PATCH] New package: lazycli-0.1.15

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

diff --git a/srcpkgs/lazycli/template b/srcpkgs/lazycli/template
new file mode 100644
index 0000000000000..2b0b4257faa08
--- /dev/null
+++ b/srcpkgs/lazycli/template
@@ -0,0 +1,27 @@
+# Template file for 'lazycli'
+pkgname=lazycli
+version=0.1.15
+revision=1
+build_style=cargo
+configure_args="RUST_BACKTRACE=1"
+make_install_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+makedepends="rust-std"
+short_desc="Turn static CLI commands into TUIs with ease"
+maintainer="zenobit <zen@osowoso.xyz>"
+license="MIT"
+homepage="https://github.com/jesseduffield/lazycli"
+#changelog=""
+distfiles="https://github.com/jesseduffield/lazycli/archive/refs/tags/v${version}.tar.gz"
+checksum=66f4c4c5bedf4d3ceb35aebc1d7f18663c7250ac47241fea18108c0741bf2019
+
+do_build() {
+	cargo build --release
+}
+
+do_install() {
+	vbin target/release/lazycli
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: lazycli-0.1.15
  2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
                   ` (6 preceding siblings ...)
  2023-09-03  4:40 ` zen0bit
@ 2023-09-04 13:52 ` zen0bit
  2023-10-10 15:35 ` zen0bit
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: zen0bit @ 2023-09-04 13:52 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oSoWoSo/VUR lazycli
https://github.com/void-linux/void-packages/pull/43472

New package: lazycli-0.1.15

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x64 glibc)


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

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

From 74409caea6fee97fb9557a7b72ae38c71a567aea Mon Sep 17 00:00:00 2001
From: zenobit <zen@osowoso.xyz>
Date: Sun, 16 Apr 2023 07:09:10 +0200
Subject: [PATCH] New package: lazycli-0.1.15

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

diff --git a/srcpkgs/lazycli/template b/srcpkgs/lazycli/template
new file mode 100644
index 0000000000000..05dffdc1b17ad
--- /dev/null
+++ b/srcpkgs/lazycli/template
@@ -0,0 +1,31 @@
+# Template file for 'lazycli'
+pkgname=lazycli
+version=0.1.15
+revision=1
+build_style=cargo
+configure_args="RUST_BACKTRACE=1"
+make_install_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+short_desc="Turn static CLI commands into TUIs with ease"
+maintainer="zenobit <zen@osowoso.xyz>"
+license="MIT"
+homepage="https://github.com/jesseduffield/lazycli"
+#changelog=""
+distfiles="https://github.com/jesseduffield/lazycli/archive/refs/tags/v${version}.tar.gz"
+checksum=66f4c4c5bedf4d3ceb35aebc1d7f18663c7250ac47241fea18108c0741bf2019
+
+#pre_build() {
+	# fixes an indexmap error when cross compiling
+	#cargo update --package autocfg:1.1.0 --precise 1.1.0
+#}
+
+do_build() {
+	cargo build --release
+}
+
+do_install() {
+	vbin target/release/lazycli
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: lazycli-0.1.15
  2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
                   ` (7 preceding siblings ...)
  2023-09-04 13:52 ` zen0bit
@ 2023-10-10 15:35 ` zen0bit
  2024-01-09  1:46 ` github-actions
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: zen0bit @ 2023-10-10 15:35 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oSoWoSo/VUR lazycli
https://github.com/void-linux/void-packages/pull/43472

New package: lazycli-0.1.15

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x64 glibc)


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

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

From b37067fae7addb9ce60908853e31a348ca0ed60a Mon Sep 17 00:00:00 2001
From: zenobit <zen@osowoso.xyz>
Date: Sun, 16 Apr 2023 07:09:10 +0200
Subject: [PATCH] New package: lazycli-0.1.15

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

diff --git a/srcpkgs/lazycli/template b/srcpkgs/lazycli/template
new file mode 100644
index 0000000000000..c9dc32716e771
--- /dev/null
+++ b/srcpkgs/lazycli/template
@@ -0,0 +1,25 @@
+# Template file for 'lazycli'
+pkgname=lazycli
+version=0.1.15
+revision=1
+build_style=cargo
+configure_args="RUST_BACKTRACE=1"
+make_install_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+short_desc="Turn static CLI commands into TUIs with ease"
+maintainer="zenobit <zen@osowoso.xyz>"
+license="MIT"
+homepage="https://github.com/jesseduffield/lazycli"
+distfiles="https://github.com/jesseduffield/lazycli/archive/refs/tags/v${version}.tar.gz"
+checksum=66f4c4c5bedf4d3ceb35aebc1d7f18663c7250ac47241fea18108c0741bf2019
+
+do_build() {
+	cargo build --release
+}
+
+do_install() {
+	vbin target/release/lazycli
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: New package: lazycli-0.1.15
  2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
                   ` (8 preceding siblings ...)
  2023-10-10 15:35 ` zen0bit
@ 2024-01-09  1:46 ` github-actions
  2024-01-10  2:51 ` [PR PATCH] [Updated] " zen0bit
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: github-actions @ 2024-01-09  1:46 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/43472#issuecomment-1882140027

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Updated] New package: lazycli-0.1.15
  2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
                   ` (9 preceding siblings ...)
  2024-01-09  1:46 ` github-actions
@ 2024-01-10  2:51 ` zen0bit
  2024-01-10  2:53 ` zen0bit
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: zen0bit @ 2024-01-10  2:51 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oSoWoSo/VUR lazycli
https://github.com/void-linux/void-packages/pull/43472

New package: lazycli-0.1.15

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x64 glibc)


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

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

From 315fd85921aa71339286506655dc70278f2b0939 Mon Sep 17 00:00:00 2001
From: zenobit <zen@osowoso.xyz>
Date: Sun, 16 Apr 2023 07:09:10 +0200
Subject: [PATCH 1/2] New package: lazycli-0.1.15

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

diff --git a/srcpkgs/lazycli/template b/srcpkgs/lazycli/template
new file mode 100644
index 0000000000000..c9dc32716e771
--- /dev/null
+++ b/srcpkgs/lazycli/template
@@ -0,0 +1,25 @@
+# Template file for 'lazycli'
+pkgname=lazycli
+version=0.1.15
+revision=1
+build_style=cargo
+configure_args="RUST_BACKTRACE=1"
+make_install_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+short_desc="Turn static CLI commands into TUIs with ease"
+maintainer="zenobit <zen@osowoso.xyz>"
+license="MIT"
+homepage="https://github.com/jesseduffield/lazycli"
+distfiles="https://github.com/jesseduffield/lazycli/archive/refs/tags/v${version}.tar.gz"
+checksum=66f4c4c5bedf4d3ceb35aebc1d7f18663c7250ac47241fea18108c0741bf2019
+
+do_build() {
+	cargo build --release
+}
+
+do_install() {
+	vbin target/release/lazycli
+}
+
+post_install() {
+	vlicense LICENSE
+}

From 312274dab954cc262e269b24e5106f138df5ddad Mon Sep 17 00:00:00 2001
From: zenobit <zen@osowoso.xyz>
Date: Tue, 10 Oct 2023 17:48:42 +0200
Subject: [PATCH 2/2] test

---
 srcpkgs/lazycli/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/lazycli/template b/srcpkgs/lazycli/template
index c9dc32716e771..979c8354e3b0c 100644
--- a/srcpkgs/lazycli/template
+++ b/srcpkgs/lazycli/template
@@ -13,7 +13,8 @@ distfiles="https://github.com/jesseduffield/lazycli/archive/refs/tags/v${version
 checksum=66f4c4c5bedf4d3ceb35aebc1d7f18663c7250ac47241fea18108c0741bf2019
 
 do_build() {
-	cargo build --release
+	#cargo build --release
+	cargo install --locked --path .
 }
 
 do_install() {

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

* Re: [PR PATCH] [Updated] New package: lazycli-0.1.15
  2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
                   ` (10 preceding siblings ...)
  2024-01-10  2:51 ` [PR PATCH] [Updated] " zen0bit
@ 2024-01-10  2:53 ` zen0bit
  2024-04-11  1:45 ` github-actions
  2024-04-25  1:46 ` [PR PATCH] [Closed]: " github-actions
  13 siblings, 0 replies; 15+ messages in thread
From: zen0bit @ 2024-01-10  2:53 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oSoWoSo/VUR lazycli
https://github.com/void-linux/void-packages/pull/43472

New package: lazycli-0.1.15

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x64 glibc)


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

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

From d6cf4ec208dce563097aa00d9894bd0794b31d61 Mon Sep 17 00:00:00 2001
From: zenobit <zen@osowoso.xyz>
Date: Sun, 16 Apr 2023 07:09:10 +0200
Subject: [PATCH] New package: lazycli-0.1.15

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

diff --git a/srcpkgs/lazycli/template b/srcpkgs/lazycli/template
new file mode 100644
index 0000000000000..979c8354e3b0c
--- /dev/null
+++ b/srcpkgs/lazycli/template
@@ -0,0 +1,26 @@
+# Template file for 'lazycli'
+pkgname=lazycli
+version=0.1.15
+revision=1
+build_style=cargo
+configure_args="RUST_BACKTRACE=1"
+make_install_args="CONFIG_DIR_ENV_VAR=/usr/share/lazycli"
+short_desc="Turn static CLI commands into TUIs with ease"
+maintainer="zenobit <zen@osowoso.xyz>"
+license="MIT"
+homepage="https://github.com/jesseduffield/lazycli"
+distfiles="https://github.com/jesseduffield/lazycli/archive/refs/tags/v${version}.tar.gz"
+checksum=66f4c4c5bedf4d3ceb35aebc1d7f18663c7250ac47241fea18108c0741bf2019
+
+do_build() {
+	#cargo build --release
+	cargo install --locked --path .
+}
+
+do_install() {
+	vbin target/release/lazycli
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: New package: lazycli-0.1.15
  2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
                   ` (11 preceding siblings ...)
  2024-01-10  2:53 ` zen0bit
@ 2024-04-11  1:45 ` github-actions
  2024-04-25  1:46 ` [PR PATCH] [Closed]: " github-actions
  13 siblings, 0 replies; 15+ messages in thread
From: github-actions @ 2024-04-11  1:45 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/43472#issuecomment-2048787905

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Closed]: New package: lazycli-0.1.15
  2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
                   ` (12 preceding siblings ...)
  2024-04-11  1:45 ` github-actions
@ 2024-04-25  1:46 ` github-actions
  13 siblings, 0 replies; 15+ messages in thread
From: github-actions @ 2024-04-25  1:46 UTC (permalink / raw)
  To: ml

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

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

New package: lazycli-0.1.15
https://github.com/void-linux/void-packages/pull/43472

Description:

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x64 glibc)


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

end of thread, other threads:[~2024-04-25  1:46 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-16  4:54 [PR PATCH] New package: lazycli 0.1.15 zen0bit
2023-04-16  5:10 ` [PR PATCH] [Updated] New package: lazycli-0.1.15 zen0bit
2023-04-19 20:58 ` zen0bit
2023-04-22  4:54 ` zen0bit
2023-04-22  5:09 ` zen0bit
2023-05-04 10:49 ` zen0bit
2023-09-03  4:38 ` zen0bit
2023-09-03  4:40 ` zen0bit
2023-09-04 13:52 ` zen0bit
2023-10-10 15:35 ` zen0bit
2024-01-09  1:46 ` github-actions
2024-01-10  2:51 ` [PR PATCH] [Updated] " zen0bit
2024-01-10  2:53 ` zen0bit
2024-04-11  1:45 ` github-actions
2024-04-25  1:46 ` [PR PATCH] [Closed]: " github-actions

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).