Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] xsv: rename to qsv, update to 0.70.0.
@ 2022-11-24 13:18 icp1994
  2022-11-24 13:40 ` [PR PATCH] [Updated] " icp1994
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: icp1994 @ 2022-11-24 13:18 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages qsv
https://github.com/void-linux/void-packages/pull/40726

xsv: rename to qsv, update to 0.70.0.
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, x86_64

I was not quite sure whether to submit `qsv` as a new package or rename `xsv`. I went with the later option for now as their [README](https://github.com/jqnatividad/qsv/blob/0.70.0/README.md) states:

> NOTE: qsv is a fork of the popular [xsv](https://github.com/BurntSushi/xsv) utility, merging several pending PRs https://github.com/BurntSushi/xsv/issues/267. On top of xsv's 20 commands, it adds numerous new features, 28 additional commands, 6 apply subcommands & 33 apply operations (for a total of 87). See [FAQ](https://github.com/jqnatividad/qsv/discussions/categories/faq) for more details.

cc: @leahneukirchen 

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

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

From deec304bdb4cd761f0fac0aa39891a3d5d91ebf9 Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Wed, 23 Nov 2022 23:01:51 +0530
Subject: [PATCH] xsv: rename to qsv, update to 0.70.0.

---
 srcpkgs/qsv/template | 19 +++++++++++++++++++
 srcpkgs/xsv/template | 21 ---------------------
 2 files changed, 19 insertions(+), 21 deletions(-)
 create mode 100644 srcpkgs/qsv/template
 delete mode 100644 srcpkgs/xsv/template

diff --git a/srcpkgs/qsv/template b/srcpkgs/qsv/template
new file mode 100644
index 000000000000..c06d70954dcc
--- /dev/null
+++ b/srcpkgs/qsv/template
@@ -0,0 +1,19 @@
+# Template file for 'qsv'
+pkgname=qsv
+version=0.70.0
+revision=1
+build_style=cargo
+configure_args="--no-default-features --features=full"
+short_desc="CLI toolkit for CSV data-wrangling"
+maintainer="icp <pangolin@vivaldi.net>"
+license="Unlicense"
+homepage="https://github.com/jqnatividad/qsv"
+changelog="https://raw.githubusercontent.com/jqnatividad/qsv/master/CHANGELOG.md"
+distfiles="https://github.com/jqnatividad/qsv/archive/refs/tags/${version}.tar.gz"
+checksum=e49dcc2060925fd600c1b2f1dee4fbf8a6874f8749c4838f446cda2038bcba04
+
+xsv_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	build_style=meta
+	short_desc+=" (transitional dummy package)"
+}
diff --git a/srcpkgs/xsv/template b/srcpkgs/xsv/template
deleted file mode 100644
index 6846bb29849e..000000000000
--- a/srcpkgs/xsv/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'xsv'
-pkgname=xsv
-version=0.13.0
-revision=2
-build_style=cargo
-short_desc="Fast CSV toolkit written in Rust"
-maintainer="Leah Neukirchen <leah@vuxu.org>"
-license="Public Domain, MIT"
-homepage="https://github.com/BurntSushi/xsv/"
-distfiles="https://github.com/BurntSushi/${pkgname}/archive/${version}.tar.gz"
-checksum=2b75309b764c9f2f3fdc1dd31eeea5a74498f7da21ae757b3ffd6fd537ec5345
-
-pre_build() {
-	# default version too old for ppc musl systems
-	cargo update --package libc --precise 0.2.66
-}
-
-post_install() {
-	vlicense LICENSE-MIT
-	vlicense UNLICENSE
-}

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

* Re: [PR PATCH] [Updated] xsv: rename to qsv, update to 0.70.0.
  2022-11-24 13:18 [PR PATCH] xsv: rename to qsv, update to 0.70.0 icp1994
@ 2022-11-24 13:40 ` icp1994
  2022-11-24 13:52 ` sgn
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: icp1994 @ 2022-11-24 13:40 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages qsv
https://github.com/void-linux/void-packages/pull/40726

xsv: rename to qsv, update to 0.70.0.
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, x86_64

I was not quite sure whether to submit `qsv` as a new package or rename `xsv`. I went with the later option for now as their [README](https://github.com/jqnatividad/qsv/blob/0.70.0/README.md) states:

> NOTE: qsv is a fork of the popular [xsv](https://github.com/BurntSushi/xsv) utility, merging several pending PRs https://github.com/BurntSushi/xsv/issues/267. On top of xsv's 20 commands, it adds numerous new features, 28 additional commands, 6 apply subcommands & 33 apply operations (for a total of 87). See [FAQ](https://github.com/jqnatividad/qsv/discussions/categories/faq) for more details.

cc: @leahneukirchen 

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

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

From 30c631f511258e1a2c7d9df59a833e46839d7c50 Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Wed, 23 Nov 2022 23:01:51 +0530
Subject: [PATCH] xsv: rename to qsv, update to 0.70.0.

---
 srcpkgs/qsv/template | 19 +++++++++++++++++++
 srcpkgs/xsv          |  1 +
 srcpkgs/xsv/template | 21 ---------------------
 3 files changed, 20 insertions(+), 21 deletions(-)
 create mode 100644 srcpkgs/qsv/template
 create mode 120000 srcpkgs/xsv
 delete mode 100644 srcpkgs/xsv/template

diff --git a/srcpkgs/qsv/template b/srcpkgs/qsv/template
new file mode 100644
index 000000000000..c06d70954dcc
--- /dev/null
+++ b/srcpkgs/qsv/template
@@ -0,0 +1,19 @@
+# Template file for 'qsv'
+pkgname=qsv
+version=0.70.0
+revision=1
+build_style=cargo
+configure_args="--no-default-features --features=full"
+short_desc="CLI toolkit for CSV data-wrangling"
+maintainer="icp <pangolin@vivaldi.net>"
+license="Unlicense"
+homepage="https://github.com/jqnatividad/qsv"
+changelog="https://raw.githubusercontent.com/jqnatividad/qsv/master/CHANGELOG.md"
+distfiles="https://github.com/jqnatividad/qsv/archive/refs/tags/${version}.tar.gz"
+checksum=e49dcc2060925fd600c1b2f1dee4fbf8a6874f8749c4838f446cda2038bcba04
+
+xsv_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	build_style=meta
+	short_desc+=" (transitional dummy package)"
+}
diff --git a/srcpkgs/xsv b/srcpkgs/xsv
new file mode 120000
index 000000000000..546884e313b8
--- /dev/null
+++ b/srcpkgs/xsv
@@ -0,0 +1 @@
+qsv
\ No newline at end of file
diff --git a/srcpkgs/xsv/template b/srcpkgs/xsv/template
deleted file mode 100644
index 6846bb29849e..000000000000
--- a/srcpkgs/xsv/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'xsv'
-pkgname=xsv
-version=0.13.0
-revision=2
-build_style=cargo
-short_desc="Fast CSV toolkit written in Rust"
-maintainer="Leah Neukirchen <leah@vuxu.org>"
-license="Public Domain, MIT"
-homepage="https://github.com/BurntSushi/xsv/"
-distfiles="https://github.com/BurntSushi/${pkgname}/archive/${version}.tar.gz"
-checksum=2b75309b764c9f2f3fdc1dd31eeea5a74498f7da21ae757b3ffd6fd537ec5345
-
-pre_build() {
-	# default version too old for ppc musl systems
-	cargo update --package libc --precise 0.2.66
-}
-
-post_install() {
-	vlicense LICENSE-MIT
-	vlicense UNLICENSE
-}

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

* Re: xsv: rename to qsv, update to 0.70.0.
  2022-11-24 13:18 [PR PATCH] xsv: rename to qsv, update to 0.70.0 icp1994
  2022-11-24 13:40 ` [PR PATCH] [Updated] " icp1994
@ 2022-11-24 13:52 ` sgn
  2022-11-24 13:54 ` leahneukirchen
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: sgn @ 2022-11-24 13:52 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/40726#issuecomment-1326483357

Comment:
Does it provide conflicting files? If no, I think it's better to have new package.

https://github.com/BurntSushi/xsv/issues/267#issuecomment-797498070
> I might request giving the project a different name though, because I do at least intend to at some point breath life back into xsv.

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

* Re: xsv: rename to qsv, update to 0.70.0.
  2022-11-24 13:18 [PR PATCH] xsv: rename to qsv, update to 0.70.0 icp1994
  2022-11-24 13:40 ` [PR PATCH] [Updated] " icp1994
  2022-11-24 13:52 ` sgn
@ 2022-11-24 13:54 ` leahneukirchen
  2022-11-24 14:22 ` [PR PATCH] [Updated] " icp1994
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: leahneukirchen @ 2022-11-24 13:54 UTC (permalink / raw)
  To: ml

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

New comment by leahneukirchen on void-packages repository

https://github.com/void-linux/void-packages/pull/40726#issuecomment-1326485039

Comment:
I'd be in favour of a separate package too.

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

* Re: [PR PATCH] [Updated] xsv: rename to qsv, update to 0.70.0.
  2022-11-24 13:18 [PR PATCH] xsv: rename to qsv, update to 0.70.0 icp1994
                   ` (2 preceding siblings ...)
  2022-11-24 13:54 ` leahneukirchen
@ 2022-11-24 14:22 ` icp1994
  2022-11-24 14:23 ` icp1994
  2022-11-25 19:52 ` [PR PATCH] [Merged]: New package: qsv-0.70.0 leahneukirchen
  5 siblings, 0 replies; 7+ messages in thread
From: icp1994 @ 2022-11-24 14:22 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages qsv
https://github.com/void-linux/void-packages/pull/40726

xsv: rename to qsv, update to 0.70.0.
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, x86_64

I was not quite sure whether to submit `qsv` as a new package or rename `xsv`. I went with the later option for now as their [README](https://github.com/jqnatividad/qsv/blob/0.70.0/README.md) states:

> NOTE: qsv is a fork of the popular [xsv](https://github.com/BurntSushi/xsv) utility, merging several pending PRs https://github.com/BurntSushi/xsv/issues/267. On top of xsv's 20 commands, it adds numerous new features, 28 additional commands, 6 apply subcommands & 33 apply operations (for a total of 87). See [FAQ](https://github.com/jqnatividad/qsv/discussions/categories/faq) for more details.

cc: @leahneukirchen 

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

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

From 23c6bfacd93ee4891e3d6fb8fa56b4ab3d5ef879 Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Wed, 23 Nov 2022 23:01:51 +0530
Subject: [PATCH] New package: qsv-0.70.0

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

diff --git a/srcpkgs/qsv/template b/srcpkgs/qsv/template
new file mode 100644
index 000000000000..5f061bf74985
--- /dev/null
+++ b/srcpkgs/qsv/template
@@ -0,0 +1,14 @@
+# Template file for 'qsv'
+pkgname=qsv
+version=0.70.0
+revision=1
+build_style=cargo
+configure_args="--no-default-features --features=full"
+make_check_args="-- --skip test_sample::sample_seed" # fails in i686
+short_desc="CLI toolkit for CSV data-wrangling"
+maintainer="icp <pangolin@vivaldi.net>"
+license="Unlicense"
+homepage="https://github.com/jqnatividad/qsv"
+changelog="https://raw.githubusercontent.com/jqnatividad/qsv/master/CHANGELOG.md"
+distfiles="https://github.com/jqnatividad/qsv/archive/refs/tags/${version}.tar.gz"
+checksum=e49dcc2060925fd600c1b2f1dee4fbf8a6874f8749c4838f446cda2038bcba04

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

* Re: xsv: rename to qsv, update to 0.70.0.
  2022-11-24 13:18 [PR PATCH] xsv: rename to qsv, update to 0.70.0 icp1994
                   ` (3 preceding siblings ...)
  2022-11-24 14:22 ` [PR PATCH] [Updated] " icp1994
@ 2022-11-24 14:23 ` icp1994
  2022-11-25 19:52 ` [PR PATCH] [Merged]: New package: qsv-0.70.0 leahneukirchen
  5 siblings, 0 replies; 7+ messages in thread
From: icp1994 @ 2022-11-24 14:23 UTC (permalink / raw)
  To: ml

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

New comment by icp1994 on void-packages repository

https://github.com/void-linux/void-packages/pull/40726#issuecomment-1326519317

Comment:
Thanks, changed accordingly.

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

* Re: [PR PATCH] [Merged]: New package: qsv-0.70.0.
  2022-11-24 13:18 [PR PATCH] xsv: rename to qsv, update to 0.70.0 icp1994
                   ` (4 preceding siblings ...)
  2022-11-24 14:23 ` icp1994
@ 2022-11-25 19:52 ` leahneukirchen
  5 siblings, 0 replies; 7+ messages in thread
From: leahneukirchen @ 2022-11-25 19:52 UTC (permalink / raw)
  To: ml

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

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

New package: qsv-0.70.0.
https://github.com/void-linux/void-packages/pull/40726

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

#### Local build testing
- I built this PR locally for my native architecture, x86_64

I was not quite sure whether to submit `qsv` as a new package or rename `xsv`. I went with the later option for now as their [README](https://github.com/jqnatividad/qsv/blob/0.70.0/README.md) states:

> NOTE: qsv is a fork of the popular [xsv](https://github.com/BurntSushi/xsv) utility, merging several pending PRs https://github.com/BurntSushi/xsv/issues/267. On top of xsv's 20 commands, it adds numerous new features, 28 additional commands, 6 apply subcommands & 33 apply operations (for a total of 87). See [FAQ](https://github.com/jqnatividad/qsv/discussions/categories/faq) for more details.

cc: @leahneukirchen 

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

end of thread, other threads:[~2022-11-25 19:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-24 13:18 [PR PATCH] xsv: rename to qsv, update to 0.70.0 icp1994
2022-11-24 13:40 ` [PR PATCH] [Updated] " icp1994
2022-11-24 13:52 ` sgn
2022-11-24 13:54 ` leahneukirchen
2022-11-24 14:22 ` [PR PATCH] [Updated] " icp1994
2022-11-24 14:23 ` icp1994
2022-11-25 19:52 ` [PR PATCH] [Merged]: New package: qsv-0.70.0 leahneukirchen

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