Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: csview-1.0.1
@ 2022-05-20  8:37 0x5c
  2022-05-25  8:46 ` [PR PATCH] [Updated] " 0x5c
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: 0x5c @ 2022-05-20  8:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages csview
https://github.com/void-linux/void-packages/pull/37210

New package: csview-1.0.1
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From cb82409a84d83bdfd011c7b00b2060fe683a53e0 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 20 May 2022 04:27:26 -0400
Subject: [PATCH] New package: csview-1.0.1

---
 .../rust1.58_format-args-capture.patch        | 15 +++++++++++++++
 srcpkgs/csview/template                       | 19 +++++++++++++++++++
 2 files changed, 34 insertions(+)
 create mode 100644 srcpkgs/csview/patches/rust1.58_format-args-capture.patch
 create mode 100644 srcpkgs/csview/template

diff --git a/srcpkgs/csview/patches/rust1.58_format-args-capture.patch b/srcpkgs/csview/patches/rust1.58_format-args-capture.patch
new file mode 100644
index 000000000000..ac38f311dd05
--- /dev/null
+++ b/srcpkgs/csview/patches/rust1.58_format-args-capture.patch
@@ -0,0 +1,15 @@
+Fix usage of format args capture, which is not supported on our rust version.
+
+--
+
+--- a/src/table/row.rs
++++ b/src/table/row.rs
+@@ -27,7 +27,7 @@
+                 .iter()
+                 .zip(widths)
+                 .map(|(cell, &width)| cell.unicode_pad(width, Alignment::Left, true))
+-                .map(|s| format!("{:pad$}{s}{:pad$}", "", "", pad = fmt.padding)),
++                .map(|s| format!("{:pad$}{}{:pad$}", "", s, "", pad = fmt.padding)),
+             sep,
+         )
+         .try_for_each(|s| write!(wtr, "{}", s))?;
diff --git a/srcpkgs/csview/template b/srcpkgs/csview/template
new file mode 100644
index 000000000000..375cba303289
--- /dev/null
+++ b/srcpkgs/csview/template
@@ -0,0 +1,19 @@
+# Template file for 'csview'
+pkgname=csview
+version=1.0.1
+revision=1
+build_style=cargo
+short_desc="Pretty csv viewer for cli with cjk/emoji support"
+maintainer="0x5c <dev@0x5c.io>"
+license="MIT, Apache-2.0"
+homepage="https://github.com/wfxr/csview"
+distfiles="https://github.com/wfxr/csview/archive/refs/tags/v${version}.tar.gz"
+checksum=34df6838dd9407197511887cdc9b2a3ed08b4b508f9c6bb660def326ea953e8c
+
+post_install() {
+	vlicense LICENSE-MIT
+	vcompletion "completions/zsh/_csview" zsh csview
+	vcompletion "completions/bash/csview.bash" bash csview
+	vcompletion "completions/fish/csview.fish" fish csview
+	vinstall "completions/elvish/csview.elv" 644 "/usr/share/elvish/lib/"
+}

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

* Re: [PR PATCH] [Updated] New package: csview-1.0.1
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
@ 2022-05-25  8:46 ` 0x5c
  2022-05-29  6:26 ` 0x5c
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: 0x5c @ 2022-05-25  8:46 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages csview
https://github.com/void-linux/void-packages/pull/37210

New package: csview-1.0.1
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

I'll be making a PR upstream for the patch

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

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

From ec83335ed6c0ccc98afbe6c3c0aaa8bdf73c7f4b Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 20 May 2022 04:27:26 -0400
Subject: [PATCH] New package: csview-1.0.1

---
 .../rust1.58_format-args-capture.patch        | 15 +++++++++++++++
 srcpkgs/csview/template                       | 19 +++++++++++++++++++
 2 files changed, 34 insertions(+)
 create mode 100644 srcpkgs/csview/patches/rust1.58_format-args-capture.patch
 create mode 100644 srcpkgs/csview/template

diff --git a/srcpkgs/csview/patches/rust1.58_format-args-capture.patch b/srcpkgs/csview/patches/rust1.58_format-args-capture.patch
new file mode 100644
index 000000000000..ac38f311dd05
--- /dev/null
+++ b/srcpkgs/csview/patches/rust1.58_format-args-capture.patch
@@ -0,0 +1,15 @@
+Fix usage of format args capture, which is not supported on our rust version.
+
+--
+
+--- a/src/table/row.rs
++++ b/src/table/row.rs
+@@ -27,7 +27,7 @@
+                 .iter()
+                 .zip(widths)
+                 .map(|(cell, &width)| cell.unicode_pad(width, Alignment::Left, true))
+-                .map(|s| format!("{:pad$}{s}{:pad$}", "", "", pad = fmt.padding)),
++                .map(|s| format!("{:pad$}{}{:pad$}", "", s, "", pad = fmt.padding)),
+             sep,
+         )
+         .try_for_each(|s| write!(wtr, "{}", s))?;
diff --git a/srcpkgs/csview/template b/srcpkgs/csview/template
new file mode 100644
index 000000000000..375cba303289
--- /dev/null
+++ b/srcpkgs/csview/template
@@ -0,0 +1,19 @@
+# Template file for 'csview'
+pkgname=csview
+version=1.0.1
+revision=1
+build_style=cargo
+short_desc="Pretty csv viewer for cli with cjk/emoji support"
+maintainer="0x5c <dev@0x5c.io>"
+license="MIT, Apache-2.0"
+homepage="https://github.com/wfxr/csview"
+distfiles="https://github.com/wfxr/csview/archive/refs/tags/v${version}.tar.gz"
+checksum=34df6838dd9407197511887cdc9b2a3ed08b4b508f9c6bb660def326ea953e8c
+
+post_install() {
+	vlicense LICENSE-MIT
+	vcompletion "completions/zsh/_csview" zsh csview
+	vcompletion "completions/bash/csview.bash" bash csview
+	vcompletion "completions/fish/csview.fish" fish csview
+	vinstall "completions/elvish/csview.elv" 644 "/usr/share/elvish/lib/"
+}

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

* Re: [PR PATCH] [Updated] New package: csview-1.0.1
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
  2022-05-25  8:46 ` [PR PATCH] [Updated] " 0x5c
@ 2022-05-29  6:26 ` 0x5c
  2022-05-30 19:24 ` 0x5c
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: 0x5c @ 2022-05-29  6:26 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages csview
https://github.com/void-linux/void-packages/pull/37210

New package: csview-1.0.1
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

I'll be making a PR upstream for the patch

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

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

From 5fea37ad6f080f14a33e464487deaacd14ea85f6 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 20 May 2022 04:27:26 -0400
Subject: [PATCH] New package: csview-1.0.1

---
 .../rust1.58_format-args-capture.patch        | 15 +++++++++++++++
 srcpkgs/csview/template                       | 19 +++++++++++++++++++
 2 files changed, 34 insertions(+)
 create mode 100644 srcpkgs/csview/patches/rust1.58_format-args-capture.patch
 create mode 100644 srcpkgs/csview/template

diff --git a/srcpkgs/csview/patches/rust1.58_format-args-capture.patch b/srcpkgs/csview/patches/rust1.58_format-args-capture.patch
new file mode 100644
index 000000000000..ac38f311dd05
--- /dev/null
+++ b/srcpkgs/csview/patches/rust1.58_format-args-capture.patch
@@ -0,0 +1,15 @@
+Fix usage of format args capture, which is not supported on our rust version.
+
+--
+
+--- a/src/table/row.rs
++++ b/src/table/row.rs
+@@ -27,7 +27,7 @@
+                 .iter()
+                 .zip(widths)
+                 .map(|(cell, &width)| cell.unicode_pad(width, Alignment::Left, true))
+-                .map(|s| format!("{:pad$}{s}{:pad$}", "", "", pad = fmt.padding)),
++                .map(|s| format!("{:pad$}{}{:pad$}", "", s, "", pad = fmt.padding)),
+             sep,
+         )
+         .try_for_each(|s| write!(wtr, "{}", s))?;
diff --git a/srcpkgs/csview/template b/srcpkgs/csview/template
new file mode 100644
index 000000000000..375cba303289
--- /dev/null
+++ b/srcpkgs/csview/template
@@ -0,0 +1,19 @@
+# Template file for 'csview'
+pkgname=csview
+version=1.0.1
+revision=1
+build_style=cargo
+short_desc="Pretty csv viewer for cli with cjk/emoji support"
+maintainer="0x5c <dev@0x5c.io>"
+license="MIT, Apache-2.0"
+homepage="https://github.com/wfxr/csview"
+distfiles="https://github.com/wfxr/csview/archive/refs/tags/v${version}.tar.gz"
+checksum=34df6838dd9407197511887cdc9b2a3ed08b4b508f9c6bb660def326ea953e8c
+
+post_install() {
+	vlicense LICENSE-MIT
+	vcompletion "completions/zsh/_csview" zsh csview
+	vcompletion "completions/bash/csview.bash" bash csview
+	vcompletion "completions/fish/csview.fish" fish csview
+	vinstall "completions/elvish/csview.elv" 644 "/usr/share/elvish/lib/"
+}

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

* Re: [PR PATCH] [Updated] New package: csview-1.0.1
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
  2022-05-25  8:46 ` [PR PATCH] [Updated] " 0x5c
  2022-05-29  6:26 ` 0x5c
@ 2022-05-30 19:24 ` 0x5c
  2022-06-02  2:39 ` 0x5c
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: 0x5c @ 2022-05-30 19:24 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages csview
https://github.com/void-linux/void-packages/pull/37210

New package: csview-1.0.1
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

I'll be making a PR upstream for the patch

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

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

From 3cfb65e1bb1f5ef17fb9c22f1d683eb149575de3 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 20 May 2022 04:27:26 -0400
Subject: [PATCH] New package: csview-1.0.1

---
 .../rust1.58_format-args-capture.patch        | 15 +++++++++++++++
 srcpkgs/csview/template                       | 19 +++++++++++++++++++
 2 files changed, 34 insertions(+)
 create mode 100644 srcpkgs/csview/patches/rust1.58_format-args-capture.patch
 create mode 100644 srcpkgs/csview/template

diff --git a/srcpkgs/csview/patches/rust1.58_format-args-capture.patch b/srcpkgs/csview/patches/rust1.58_format-args-capture.patch
new file mode 100644
index 000000000000..ac38f311dd05
--- /dev/null
+++ b/srcpkgs/csview/patches/rust1.58_format-args-capture.patch
@@ -0,0 +1,15 @@
+Fix usage of format args capture, which is not supported on our rust version.
+
+--
+
+--- a/src/table/row.rs
++++ b/src/table/row.rs
+@@ -27,7 +27,7 @@
+                 .iter()
+                 .zip(widths)
+                 .map(|(cell, &width)| cell.unicode_pad(width, Alignment::Left, true))
+-                .map(|s| format!("{:pad$}{s}{:pad$}", "", "", pad = fmt.padding)),
++                .map(|s| format!("{:pad$}{}{:pad$}", "", s, "", pad = fmt.padding)),
+             sep,
+         )
+         .try_for_each(|s| write!(wtr, "{}", s))?;
diff --git a/srcpkgs/csview/template b/srcpkgs/csview/template
new file mode 100644
index 000000000000..375cba303289
--- /dev/null
+++ b/srcpkgs/csview/template
@@ -0,0 +1,19 @@
+# Template file for 'csview'
+pkgname=csview
+version=1.0.1
+revision=1
+build_style=cargo
+short_desc="Pretty csv viewer for cli with cjk/emoji support"
+maintainer="0x5c <dev@0x5c.io>"
+license="MIT, Apache-2.0"
+homepage="https://github.com/wfxr/csview"
+distfiles="https://github.com/wfxr/csview/archive/refs/tags/v${version}.tar.gz"
+checksum=34df6838dd9407197511887cdc9b2a3ed08b4b508f9c6bb660def326ea953e8c
+
+post_install() {
+	vlicense LICENSE-MIT
+	vcompletion "completions/zsh/_csview" zsh csview
+	vcompletion "completions/bash/csview.bash" bash csview
+	vcompletion "completions/fish/csview.fish" fish csview
+	vinstall "completions/elvish/csview.elv" 644 "/usr/share/elvish/lib/"
+}

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

* Re: [PR PATCH] [Updated] New package: csview-1.0.1
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
                   ` (2 preceding siblings ...)
  2022-05-30 19:24 ` 0x5c
@ 2022-06-02  2:39 ` 0x5c
  2022-06-06 22:17 ` 0x5c
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: 0x5c @ 2022-06-02  2:39 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages csview
https://github.com/void-linux/void-packages/pull/37210

New package: csview-1.0.1
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

I'll be making a PR upstream for the patch

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

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

From 2dedab9d8467df4add6f938fe1900236aac6dbc6 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 20 May 2022 04:27:26 -0400
Subject: [PATCH] New package: csview-1.0.1

---
 .../rust1.58_format-args-capture.patch        | 15 +++++++++++++++
 srcpkgs/csview/template                       | 19 +++++++++++++++++++
 2 files changed, 34 insertions(+)
 create mode 100644 srcpkgs/csview/patches/rust1.58_format-args-capture.patch
 create mode 100644 srcpkgs/csview/template

diff --git a/srcpkgs/csview/patches/rust1.58_format-args-capture.patch b/srcpkgs/csview/patches/rust1.58_format-args-capture.patch
new file mode 100644
index 000000000000..ac38f311dd05
--- /dev/null
+++ b/srcpkgs/csview/patches/rust1.58_format-args-capture.patch
@@ -0,0 +1,15 @@
+Fix usage of format args capture, which is not supported on our rust version.
+
+--
+
+--- a/src/table/row.rs
++++ b/src/table/row.rs
+@@ -27,7 +27,7 @@
+                 .iter()
+                 .zip(widths)
+                 .map(|(cell, &width)| cell.unicode_pad(width, Alignment::Left, true))
+-                .map(|s| format!("{:pad$}{s}{:pad$}", "", "", pad = fmt.padding)),
++                .map(|s| format!("{:pad$}{}{:pad$}", "", s, "", pad = fmt.padding)),
+             sep,
+         )
+         .try_for_each(|s| write!(wtr, "{}", s))?;
diff --git a/srcpkgs/csview/template b/srcpkgs/csview/template
new file mode 100644
index 000000000000..375cba303289
--- /dev/null
+++ b/srcpkgs/csview/template
@@ -0,0 +1,19 @@
+# Template file for 'csview'
+pkgname=csview
+version=1.0.1
+revision=1
+build_style=cargo
+short_desc="Pretty csv viewer for cli with cjk/emoji support"
+maintainer="0x5c <dev@0x5c.io>"
+license="MIT, Apache-2.0"
+homepage="https://github.com/wfxr/csview"
+distfiles="https://github.com/wfxr/csview/archive/refs/tags/v${version}.tar.gz"
+checksum=34df6838dd9407197511887cdc9b2a3ed08b4b508f9c6bb660def326ea953e8c
+
+post_install() {
+	vlicense LICENSE-MIT
+	vcompletion "completions/zsh/_csview" zsh csview
+	vcompletion "completions/bash/csview.bash" bash csview
+	vcompletion "completions/fish/csview.fish" fish csview
+	vinstall "completions/elvish/csview.elv" 644 "/usr/share/elvish/lib/"
+}

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

* Re: [PR PATCH] [Updated] New package: csview-1.0.1
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
                   ` (3 preceding siblings ...)
  2022-06-02  2:39 ` 0x5c
@ 2022-06-06 22:17 ` 0x5c
  2022-06-08  0:42 ` 0x5c
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: 0x5c @ 2022-06-06 22:17 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages csview
https://github.com/void-linux/void-packages/pull/37210

New package: csview-1.0.1
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

I'll be making a PR upstream for the patch

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

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

From a1d4406261412b915d6657ce095b422df8a252b9 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 20 May 2022 04:27:26 -0400
Subject: [PATCH] New package: csview-1.0.1

---
 .../rust1.58_format-args-capture.patch        | 15 +++++++++++++++
 srcpkgs/csview/template                       | 19 +++++++++++++++++++
 2 files changed, 34 insertions(+)
 create mode 100644 srcpkgs/csview/patches/rust1.58_format-args-capture.patch
 create mode 100644 srcpkgs/csview/template

diff --git a/srcpkgs/csview/patches/rust1.58_format-args-capture.patch b/srcpkgs/csview/patches/rust1.58_format-args-capture.patch
new file mode 100644
index 000000000000..ac38f311dd05
--- /dev/null
+++ b/srcpkgs/csview/patches/rust1.58_format-args-capture.patch
@@ -0,0 +1,15 @@
+Fix usage of format args capture, which is not supported on our rust version.
+
+--
+
+--- a/src/table/row.rs
++++ b/src/table/row.rs
+@@ -27,7 +27,7 @@
+                 .iter()
+                 .zip(widths)
+                 .map(|(cell, &width)| cell.unicode_pad(width, Alignment::Left, true))
+-                .map(|s| format!("{:pad$}{s}{:pad$}", "", "", pad = fmt.padding)),
++                .map(|s| format!("{:pad$}{}{:pad$}", "", s, "", pad = fmt.padding)),
+             sep,
+         )
+         .try_for_each(|s| write!(wtr, "{}", s))?;
diff --git a/srcpkgs/csview/template b/srcpkgs/csview/template
new file mode 100644
index 000000000000..375cba303289
--- /dev/null
+++ b/srcpkgs/csview/template
@@ -0,0 +1,19 @@
+# Template file for 'csview'
+pkgname=csview
+version=1.0.1
+revision=1
+build_style=cargo
+short_desc="Pretty csv viewer for cli with cjk/emoji support"
+maintainer="0x5c <dev@0x5c.io>"
+license="MIT, Apache-2.0"
+homepage="https://github.com/wfxr/csview"
+distfiles="https://github.com/wfxr/csview/archive/refs/tags/v${version}.tar.gz"
+checksum=34df6838dd9407197511887cdc9b2a3ed08b4b508f9c6bb660def326ea953e8c
+
+post_install() {
+	vlicense LICENSE-MIT
+	vcompletion "completions/zsh/_csview" zsh csview
+	vcompletion "completions/bash/csview.bash" bash csview
+	vcompletion "completions/fish/csview.fish" fish csview
+	vinstall "completions/elvish/csview.elv" 644 "/usr/share/elvish/lib/"
+}

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

* Re: [PR PATCH] [Updated] New package: csview-1.0.1
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
                   ` (4 preceding siblings ...)
  2022-06-06 22:17 ` 0x5c
@ 2022-06-08  0:42 ` 0x5c
  2022-06-08  2:21 ` 0x5c
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: 0x5c @ 2022-06-08  0:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages csview
https://github.com/void-linux/void-packages/pull/37210

New package: csview-1.0.1
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

I'll be making a PR upstream for the patch

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

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

From 2e94c2e63afdcd42dc2be3736c7a10ade51e8211 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 20 May 2022 04:27:26 -0400
Subject: [PATCH] New package: csview-1.0.1

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

diff --git a/srcpkgs/csview/template b/srcpkgs/csview/template
new file mode 100644
index 000000000000..375cba303289
--- /dev/null
+++ b/srcpkgs/csview/template
@@ -0,0 +1,19 @@
+# Template file for 'csview'
+pkgname=csview
+version=1.0.1
+revision=1
+build_style=cargo
+short_desc="Pretty csv viewer for cli with cjk/emoji support"
+maintainer="0x5c <dev@0x5c.io>"
+license="MIT, Apache-2.0"
+homepage="https://github.com/wfxr/csview"
+distfiles="https://github.com/wfxr/csview/archive/refs/tags/v${version}.tar.gz"
+checksum=34df6838dd9407197511887cdc9b2a3ed08b4b508f9c6bb660def326ea953e8c
+
+post_install() {
+	vlicense LICENSE-MIT
+	vcompletion "completions/zsh/_csview" zsh csview
+	vcompletion "completions/bash/csview.bash" bash csview
+	vcompletion "completions/fish/csview.fish" fish csview
+	vinstall "completions/elvish/csview.elv" 644 "/usr/share/elvish/lib/"
+}

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

* Re: [PR PATCH] [Updated] New package: csview-1.0.1
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
                   ` (5 preceding siblings ...)
  2022-06-08  0:42 ` 0x5c
@ 2022-06-08  2:21 ` 0x5c
  2022-06-08  5:32 ` 0x5c
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: 0x5c @ 2022-06-08  2:21 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages csview
https://github.com/void-linux/void-packages/pull/37210

New package: csview-1.0.1
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

I'll be making a PR upstream for the patch

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

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

From 3cfdabfa763738fbdd942d07a5527ca458d3ce3a Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 20 May 2022 04:27:26 -0400
Subject: [PATCH] New package: csview-1.0.1

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

diff --git a/srcpkgs/csview/template b/srcpkgs/csview/template
new file mode 100644
index 000000000000..375cba303289
--- /dev/null
+++ b/srcpkgs/csview/template
@@ -0,0 +1,19 @@
+# Template file for 'csview'
+pkgname=csview
+version=1.0.1
+revision=1
+build_style=cargo
+short_desc="Pretty csv viewer for cli with cjk/emoji support"
+maintainer="0x5c <dev@0x5c.io>"
+license="MIT, Apache-2.0"
+homepage="https://github.com/wfxr/csview"
+distfiles="https://github.com/wfxr/csview/archive/refs/tags/v${version}.tar.gz"
+checksum=34df6838dd9407197511887cdc9b2a3ed08b4b508f9c6bb660def326ea953e8c
+
+post_install() {
+	vlicense LICENSE-MIT
+	vcompletion "completions/zsh/_csview" zsh csview
+	vcompletion "completions/bash/csview.bash" bash csview
+	vcompletion "completions/fish/csview.fish" fish csview
+	vinstall "completions/elvish/csview.elv" 644 "/usr/share/elvish/lib/"
+}

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

* Re: New package: csview-1.0.1
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
                   ` (6 preceding siblings ...)
  2022-06-08  2:21 ` 0x5c
@ 2022-06-08  5:32 ` 0x5c
  2022-06-12  1:24 ` [PR PATCH] [Updated] " 0x5c
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: 0x5c @ 2022-06-08  5:32 UTC (permalink / raw)
  To: ml

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

New comment by 0x5c on void-packages repository

https://github.com/void-linux/void-packages/pull/37210#issuecomment-1149481913

Comment:
This originally needed a patch to build on our old rust version, but since the update I removed it.
Rebased at the same time

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

* Re: [PR PATCH] [Updated] New package: csview-1.0.1
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
                   ` (7 preceding siblings ...)
  2022-06-08  5:32 ` 0x5c
@ 2022-06-12  1:24 ` 0x5c
  2022-06-20 19:27 ` 0x5c
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: 0x5c @ 2022-06-12  1:24 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages csview
https://github.com/void-linux/void-packages/pull/37210

New package: csview-1.0.1
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

I'll be making a PR upstream for the patch

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

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

From 6529a2743e2e96700969b810edc6e42661c5eba4 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 20 May 2022 04:27:26 -0400
Subject: [PATCH] New package: csview-1.0.1

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

diff --git a/srcpkgs/csview/template b/srcpkgs/csview/template
new file mode 100644
index 000000000000..375cba303289
--- /dev/null
+++ b/srcpkgs/csview/template
@@ -0,0 +1,19 @@
+# Template file for 'csview'
+pkgname=csview
+version=1.0.1
+revision=1
+build_style=cargo
+short_desc="Pretty csv viewer for cli with cjk/emoji support"
+maintainer="0x5c <dev@0x5c.io>"
+license="MIT, Apache-2.0"
+homepage="https://github.com/wfxr/csview"
+distfiles="https://github.com/wfxr/csview/archive/refs/tags/v${version}.tar.gz"
+checksum=34df6838dd9407197511887cdc9b2a3ed08b4b508f9c6bb660def326ea953e8c
+
+post_install() {
+	vlicense LICENSE-MIT
+	vcompletion "completions/zsh/_csview" zsh csview
+	vcompletion "completions/bash/csview.bash" bash csview
+	vcompletion "completions/fish/csview.fish" fish csview
+	vinstall "completions/elvish/csview.elv" 644 "/usr/share/elvish/lib/"
+}

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

* Re: [PR PATCH] [Updated] New package: csview-1.0.1
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
                   ` (8 preceding siblings ...)
  2022-06-12  1:24 ` [PR PATCH] [Updated] " 0x5c
@ 2022-06-20 19:27 ` 0x5c
  2022-06-27  0:31 ` 0x5c
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: 0x5c @ 2022-06-20 19:27 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages csview
https://github.com/void-linux/void-packages/pull/37210

New package: csview-1.0.1
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

I'll be making a PR upstream for the patch

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

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

From 62eb5a14b3aa48aca0e7ffbe049017f2292d0e15 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 20 May 2022 04:27:26 -0400
Subject: [PATCH] New package: csview-1.0.1

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

diff --git a/srcpkgs/csview/template b/srcpkgs/csview/template
new file mode 100644
index 000000000000..375cba303289
--- /dev/null
+++ b/srcpkgs/csview/template
@@ -0,0 +1,19 @@
+# Template file for 'csview'
+pkgname=csview
+version=1.0.1
+revision=1
+build_style=cargo
+short_desc="Pretty csv viewer for cli with cjk/emoji support"
+maintainer="0x5c <dev@0x5c.io>"
+license="MIT, Apache-2.0"
+homepage="https://github.com/wfxr/csview"
+distfiles="https://github.com/wfxr/csview/archive/refs/tags/v${version}.tar.gz"
+checksum=34df6838dd9407197511887cdc9b2a3ed08b4b508f9c6bb660def326ea953e8c
+
+post_install() {
+	vlicense LICENSE-MIT
+	vcompletion "completions/zsh/_csview" zsh csview
+	vcompletion "completions/bash/csview.bash" bash csview
+	vcompletion "completions/fish/csview.fish" fish csview
+	vinstall "completions/elvish/csview.elv" 644 "/usr/share/elvish/lib/"
+}

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

* Re: [PR PATCH] [Updated] New package: csview-1.0.1
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
                   ` (9 preceding siblings ...)
  2022-06-20 19:27 ` 0x5c
@ 2022-06-27  0:31 ` 0x5c
  2022-07-01  7:35 ` 0x5c
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: 0x5c @ 2022-06-27  0:31 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages csview
https://github.com/void-linux/void-packages/pull/37210

New package: csview-1.0.1
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

I'll be making a PR upstream for the patch

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

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

From abc47c350adb8d854dda685e33d2a81300f02018 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 20 May 2022 04:27:26 -0400
Subject: [PATCH] New package: csview-1.0.1

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

diff --git a/srcpkgs/csview/template b/srcpkgs/csview/template
new file mode 100644
index 000000000000..375cba303289
--- /dev/null
+++ b/srcpkgs/csview/template
@@ -0,0 +1,19 @@
+# Template file for 'csview'
+pkgname=csview
+version=1.0.1
+revision=1
+build_style=cargo
+short_desc="Pretty csv viewer for cli with cjk/emoji support"
+maintainer="0x5c <dev@0x5c.io>"
+license="MIT, Apache-2.0"
+homepage="https://github.com/wfxr/csview"
+distfiles="https://github.com/wfxr/csview/archive/refs/tags/v${version}.tar.gz"
+checksum=34df6838dd9407197511887cdc9b2a3ed08b4b508f9c6bb660def326ea953e8c
+
+post_install() {
+	vlicense LICENSE-MIT
+	vcompletion "completions/zsh/_csview" zsh csview
+	vcompletion "completions/bash/csview.bash" bash csview
+	vcompletion "completions/fish/csview.fish" fish csview
+	vinstall "completions/elvish/csview.elv" 644 "/usr/share/elvish/lib/"
+}

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

* Re: [PR PATCH] [Updated] New package: csview-1.0.1
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
                   ` (10 preceding siblings ...)
  2022-06-27  0:31 ` 0x5c
@ 2022-07-01  7:35 ` 0x5c
  2022-07-21  1:42 ` 0x5c
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: 0x5c @ 2022-07-01  7:35 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages csview
https://github.com/void-linux/void-packages/pull/37210

New package: csview-1.0.1
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

I'll be making a PR upstream for the patch

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

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

From 96090f4a25905dcf33fe432a59a36597a6335651 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 20 May 2022 04:27:26 -0400
Subject: [PATCH] New package: csview-1.0.1

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

diff --git a/srcpkgs/csview/template b/srcpkgs/csview/template
new file mode 100644
index 000000000000..375cba303289
--- /dev/null
+++ b/srcpkgs/csview/template
@@ -0,0 +1,19 @@
+# Template file for 'csview'
+pkgname=csview
+version=1.0.1
+revision=1
+build_style=cargo
+short_desc="Pretty csv viewer for cli with cjk/emoji support"
+maintainer="0x5c <dev@0x5c.io>"
+license="MIT, Apache-2.0"
+homepage="https://github.com/wfxr/csview"
+distfiles="https://github.com/wfxr/csview/archive/refs/tags/v${version}.tar.gz"
+checksum=34df6838dd9407197511887cdc9b2a3ed08b4b508f9c6bb660def326ea953e8c
+
+post_install() {
+	vlicense LICENSE-MIT
+	vcompletion "completions/zsh/_csview" zsh csview
+	vcompletion "completions/bash/csview.bash" bash csview
+	vcompletion "completions/fish/csview.fish" fish csview
+	vinstall "completions/elvish/csview.elv" 644 "/usr/share/elvish/lib/"
+}

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

* Re: [PR PATCH] [Updated] New package: csview-1.0.1
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
                   ` (11 preceding siblings ...)
  2022-07-01  7:35 ` 0x5c
@ 2022-07-21  1:42 ` 0x5c
  2022-09-05 19:02 ` 0x5c
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: 0x5c @ 2022-07-21  1:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages csview
https://github.com/void-linux/void-packages/pull/37210

New package: csview-1.0.1
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

I'll be making a PR upstream for the patch

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

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

From 587268d22306936e098f6e03668dca4659ea60e9 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 20 May 2022 04:27:26 -0400
Subject: [PATCH] New package: csview-1.0.1

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

diff --git a/srcpkgs/csview/template b/srcpkgs/csview/template
new file mode 100644
index 000000000000..375cba303289
--- /dev/null
+++ b/srcpkgs/csview/template
@@ -0,0 +1,19 @@
+# Template file for 'csview'
+pkgname=csview
+version=1.0.1
+revision=1
+build_style=cargo
+short_desc="Pretty csv viewer for cli with cjk/emoji support"
+maintainer="0x5c <dev@0x5c.io>"
+license="MIT, Apache-2.0"
+homepage="https://github.com/wfxr/csview"
+distfiles="https://github.com/wfxr/csview/archive/refs/tags/v${version}.tar.gz"
+checksum=34df6838dd9407197511887cdc9b2a3ed08b4b508f9c6bb660def326ea953e8c
+
+post_install() {
+	vlicense LICENSE-MIT
+	vcompletion "completions/zsh/_csview" zsh csview
+	vcompletion "completions/bash/csview.bash" bash csview
+	vcompletion "completions/fish/csview.fish" fish csview
+	vinstall "completions/elvish/csview.elv" 644 "/usr/share/elvish/lib/"
+}

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

* Re: [PR PATCH] [Updated] New package: csview-1.0.1
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
                   ` (12 preceding siblings ...)
  2022-07-21  1:42 ` 0x5c
@ 2022-09-05 19:02 ` 0x5c
  2022-12-05  1:59 ` New package: csview-1.1.0 github-actions
  2022-12-20  1:58 ` [PR PATCH] [Closed]: " github-actions
  15 siblings, 0 replies; 17+ messages in thread
From: 0x5c @ 2022-09-05 19:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages csview
https://github.com/void-linux/void-packages/pull/37210

New package: csview-1.0.1
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

I'll be making a PR upstream for the patch

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

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

From a46690ba0dde7492508cdd81f5da6f00fa535c47 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 20 May 2022 04:27:26 -0400
Subject: [PATCH] New package: csview-1.1.0

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

diff --git a/srcpkgs/csview/template b/srcpkgs/csview/template
new file mode 100644
index 000000000000..27b2007b1252
--- /dev/null
+++ b/srcpkgs/csview/template
@@ -0,0 +1,19 @@
+# Template file for 'csview'
+pkgname=csview
+version=1.1.0
+revision=1
+build_style=cargo
+short_desc="Pretty csv viewer for cli with cjk/emoji support"
+maintainer="0x5c <dev@0x5c.io>"
+license="MIT, Apache-2.0"
+homepage="https://github.com/wfxr/csview"
+distfiles="https://github.com/wfxr/csview/archive/refs/tags/v${version}.tar.gz"
+checksum=69947891ede93257d663b40097e47da97b06fb2c0bf35a4bf02f2b43aa12fa8e
+
+post_install() {
+	vlicense LICENSE-MIT
+	vcompletion "completions/zsh/_csview" zsh csview
+	vcompletion "completions/bash/csview.bash" bash csview
+	vcompletion "completions/fish/csview.fish" fish csview
+	vinstall "completions/elvish/csview.elv" 644 "/usr/share/elvish/lib/"
+}

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

* Re: New package: csview-1.1.0
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
                   ` (13 preceding siblings ...)
  2022-09-05 19:02 ` 0x5c
@ 2022-12-05  1:59 ` github-actions
  2022-12-20  1:58 ` [PR PATCH] [Closed]: " github-actions
  15 siblings, 0 replies; 17+ messages in thread
From: github-actions @ 2022-12-05  1:59 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/37210#issuecomment-1336624373

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] 17+ messages in thread

* Re: [PR PATCH] [Closed]: New package: csview-1.1.0
  2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
                   ` (14 preceding siblings ...)
  2022-12-05  1:59 ` New package: csview-1.1.0 github-actions
@ 2022-12-20  1:58 ` github-actions
  15 siblings, 0 replies; 17+ messages in thread
From: github-actions @ 2022-12-20  1:58 UTC (permalink / raw)
  To: ml

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

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

New package: csview-1.1.0
https://github.com/void-linux/void-packages/pull/37210

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

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

I'll be making a PR upstream for the patch

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

end of thread, other threads:[~2022-12-20  1:58 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-20  8:37 [PR PATCH] New package: csview-1.0.1 0x5c
2022-05-25  8:46 ` [PR PATCH] [Updated] " 0x5c
2022-05-29  6:26 ` 0x5c
2022-05-30 19:24 ` 0x5c
2022-06-02  2:39 ` 0x5c
2022-06-06 22:17 ` 0x5c
2022-06-08  0:42 ` 0x5c
2022-06-08  2:21 ` 0x5c
2022-06-08  5:32 ` 0x5c
2022-06-12  1:24 ` [PR PATCH] [Updated] " 0x5c
2022-06-20 19:27 ` 0x5c
2022-06-27  0:31 ` 0x5c
2022-07-01  7:35 ` 0x5c
2022-07-21  1:42 ` 0x5c
2022-09-05 19:02 ` 0x5c
2022-12-05  1:59 ` New package: csview-1.1.0 github-actions
2022-12-20  1:58 ` [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).