Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: sq-0.40.0
@ 2023-07-13 18:40 icp1994
  2023-07-13 18:56 ` [PR PATCH] [Updated] " icp1994
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: icp1994 @ 2023-07-13 18:40 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages sq
https://github.com/void-linux/void-packages/pull/45023

New package: sq-0.40.0
#### Testing the changes
- I tested the changes in this PR: **YES**

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

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

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

From 568c5834d471bd821ffe38536634fe217996dee6 Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Mon, 23 Jan 2023 18:23:00 +0530
Subject: [PATCH] New package: sq-0.40.0

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

diff --git a/srcpkgs/sq/template b/srcpkgs/sq/template
new file mode 100644
index 000000000000..db568662cdf2
--- /dev/null
+++ b/srcpkgs/sq/template
@@ -0,0 +1,28 @@
+# Template file for 'sq'
+pkgname=sq
+version=0.40.0
+revision=1
+build_style=go
+build_helper="qemu"
+go_import_path="github.com/neilotoole/sq"
+go_ldflags="-X ${go_import_path}/cli/buildinfo.Version=v${version}"
+short_desc="CLI tool that provides jq-style access to structured data sources"
+maintainer="icp <pangolin@vivaldi.net>"
+license="MIT"
+homepage="https://sq.io"
+changelog="https://raw.githubusercontent.com/neilotoole/sq/master/CHANGELOG.md"
+distfiles="https://github.com/neilotoole/sq/archive/refs/tags/v${version}.tar.gz"
+checksum=696ae24ac14cd87a87f06d29953b6b9580ba0b2c92c36e1425f5aa244fb33b07
+conflicts="squirrel sequoia-sq"
+
+post_install() {
+	for shell in bash fish zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/sq completion ${shell} > sq.${shell}
+		vcompletion sq.${shell} ${shell}
+	done
+
+	GOARCH= go run . man > sq.1
+	vman sq.1
+
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: sq-0.40.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
@ 2023-07-13 18:56 ` icp1994
  2023-07-13 19:07 ` icp1994
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: icp1994 @ 2023-07-13 18:56 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages sq
https://github.com/void-linux/void-packages/pull/45023

New package: sq-0.40.0
#### Testing the changes
- I tested the changes in this PR: **YES**

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

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

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

From 60ea989fc0f29162ba901f413a8202d4de47171e Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Mon, 23 Jan 2023 18:23:00 +0530
Subject: [PATCH] New package: sq-0.40.0

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

diff --git a/srcpkgs/sq/template b/srcpkgs/sq/template
new file mode 100644
index 000000000000..138b9b9004d1
--- /dev/null
+++ b/srcpkgs/sq/template
@@ -0,0 +1,29 @@
+# Template file for 'sq'
+pkgname=sq
+version=0.40.0
+revision=1
+build_style=go
+build_helper="qemu"
+go_import_path="github.com/neilotoole/sq"
+go_ldflags="-X ${go_import_path}/cli/buildinfo.Version=v${version}"
+makedepends="sqlite-devel"
+short_desc="CLI tool that provides jq-style access to structured data sources"
+maintainer="icp <pangolin@vivaldi.net>"
+license="MIT"
+homepage="https://sq.io"
+changelog="https://raw.githubusercontent.com/neilotoole/sq/master/CHANGELOG.md"
+distfiles="https://github.com/neilotoole/sq/archive/refs/tags/v${version}.tar.gz"
+checksum=696ae24ac14cd87a87f06d29953b6b9580ba0b2c92c36e1425f5aa244fb33b07
+conflicts="squirrel sequoia-sq"
+
+post_install() {
+	for shell in bash fish zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/sq completion ${shell} > sq.${shell}
+		vcompletion sq.${shell} ${shell}
+	done
+
+	CGO_ENABLED=0 GOARCH= go run . man > sq.1
+	vman sq.1
+
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: sq-0.40.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
  2023-07-13 18:56 ` [PR PATCH] [Updated] " icp1994
@ 2023-07-13 19:07 ` icp1994
  2023-07-13 19:20 ` icp1994
                   ` (14 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: icp1994 @ 2023-07-13 19:07 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages sq
https://github.com/void-linux/void-packages/pull/45023

New package: sq-0.40.0
#### Testing the changes
- I tested the changes in this PR: **YES**

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

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

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

From af54e0d497de5a3c4ac7c2a18dd7ce11afd343ba Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Mon, 23 Jan 2023 18:23:00 +0530
Subject: [PATCH] New package: sq-0.40.0

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

diff --git a/srcpkgs/sq/template b/srcpkgs/sq/template
new file mode 100644
index 000000000000..fb9503a9053f
--- /dev/null
+++ b/srcpkgs/sq/template
@@ -0,0 +1,30 @@
+# Template file for 'sq'
+pkgname=sq
+version=0.40.0
+revision=1
+archs="x86_64* aarch64*"
+build_style=go
+build_helper="qemu"
+go_import_path="github.com/neilotoole/sq"
+go_ldflags="-X ${go_import_path}/cli/buildinfo.Version=v${version}"
+makedepends="sqlite-devel"
+short_desc="CLI tool that provides jq-style access to structured data sources"
+maintainer="icp <pangolin@vivaldi.net>"
+license="MIT"
+homepage="https://sq.io"
+changelog="https://raw.githubusercontent.com/neilotoole/sq/master/CHANGELOG.md"
+distfiles="https://github.com/neilotoole/sq/archive/refs/tags/v${version}.tar.gz"
+checksum=696ae24ac14cd87a87f06d29953b6b9580ba0b2c92c36e1425f5aa244fb33b07
+conflicts="squirrel sequoia-sq"
+
+post_install() {
+	for shell in bash fish zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/sq completion ${shell} > sq.${shell}
+		vcompletion sq.${shell} ${shell}
+	done
+
+	go run . man > sq.1
+	vman sq.1
+
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: sq-0.40.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
  2023-07-13 18:56 ` [PR PATCH] [Updated] " icp1994
  2023-07-13 19:07 ` icp1994
@ 2023-07-13 19:20 ` icp1994
  2023-07-23 20:56 ` [PR REVIEW] " Piraty
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: icp1994 @ 2023-07-13 19:20 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages sq
https://github.com/void-linux/void-packages/pull/45023

New package: sq-0.40.0
#### Testing the changes
- I tested the changes in this PR: **YES**

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

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

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

From 1ebd4fe029e5ee20c887fec07edb64e916b926a2 Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Mon, 23 Jan 2023 18:23:00 +0530
Subject: [PATCH] New package: sq-0.40.0

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

diff --git a/srcpkgs/sq/template b/srcpkgs/sq/template
new file mode 100644
index 000000000000..29c599c036ac
--- /dev/null
+++ b/srcpkgs/sq/template
@@ -0,0 +1,28 @@
+# Template file for 'sq'
+pkgname=sq
+version=0.40.0
+revision=1
+archs="x86_64* aarch64*"
+build_wrksrc="sq-${version}"
+build_style=go
+go_import_path="github.com/neilotoole/sq"
+go_ldflags="-X ${go_import_path}/cli/buildinfo.Version=v${version}"
+short_desc="CLI tool that provides jq-style access to structured data sources"
+maintainer="icp <pangolin@vivaldi.net>"
+license="MIT"
+homepage="https://sq.io"
+changelog="https://raw.githubusercontent.com/neilotoole/sq/master/CHANGELOG.md"
+distfiles="https://github.com/neilotoole/sq/archive/refs/tags/v${version}.tar.gz
+ https://github.com/neilotoole/sq/releases/download/v${version}/sq-${version}-linux-amd64.tar.gz"
+checksum="696ae24ac14cd87a87f06d29953b6b9580ba0b2c92c36e1425f5aa244fb33b07
+ 08098b182d08f561d2229691f7b8fd00983e6442cf9b35e97035364387da95a4"
+conflicts="squirrel sequoia-sq"
+
+post_install() {
+	for shell in bash fish zsh; do
+		vcompletion "${wrksrc}/completions/sq.${shell}" "${shell}"
+	done
+
+	vman ${wrksrc}/manpages/sq.1.gz
+	vlicense LICENSE
+}

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

* Re: [PR REVIEW] New package: sq-0.40.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
                   ` (2 preceding siblings ...)
  2023-07-13 19:20 ` icp1994
@ 2023-07-23 20:56 ` Piraty
  2023-07-24  5:54 ` [PR PATCH] [Updated] " icp1994
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Piraty @ 2023-07-23 20:56 UTC (permalink / raw)
  To: ml

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

New review comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/45023#discussion_r1271557019

Comment:
what's the reasoning to limit archs here?

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

* Re: [PR PATCH] [Updated] New package: sq-0.40.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
                   ` (3 preceding siblings ...)
  2023-07-23 20:56 ` [PR REVIEW] " Piraty
@ 2023-07-24  5:54 ` icp1994
  2023-07-24  5:57 ` icp1994
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: icp1994 @ 2023-07-24  5:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages sq
https://github.com/void-linux/void-packages/pull/45023

New package: sq-0.40.0
#### Testing the changes
- I tested the changes in this PR: **YES**

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

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

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

From c8972cd208d116da7a7c869c658fa54eb4d16a08 Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Mon, 23 Jan 2023 18:23:00 +0530
Subject: [PATCH] New package: sq-0.40.0

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

diff --git a/srcpkgs/sq/template b/srcpkgs/sq/template
new file mode 100644
index 000000000000..b34d407e9726
--- /dev/null
+++ b/srcpkgs/sq/template
@@ -0,0 +1,29 @@
+# Template file for 'sq'
+pkgname=sq
+version=0.40.0
+revision=1
+build_wrksrc="sq-${version}"
+build_style=go
+go_import_path="github.com/neilotoole/sq"
+go_ldflags="-X ${go_import_path}/cli/buildinfo.Version=v${version}"
+go_build_tags="libsqlite3"
+makedepends="sqlite-devel"
+short_desc="CLI tool that provides jq-style access to structured data sources"
+maintainer="icp <pangolin@vivaldi.net>"
+license="MIT"
+homepage="https://sq.io"
+changelog="https://raw.githubusercontent.com/neilotoole/sq/master/CHANGELOG.md"
+distfiles="https://github.com/neilotoole/sq/archive/refs/tags/v${version}.tar.gz
+ https://github.com/neilotoole/sq/releases/download/v${version}/sq-${version}-linux-amd64.tar.gz"
+checksum="696ae24ac14cd87a87f06d29953b6b9580ba0b2c92c36e1425f5aa244fb33b07
+ 08098b182d08f561d2229691f7b8fd00983e6442cf9b35e97035364387da95a4"
+conflicts="squirrel sequoia-sq"
+
+post_install() {
+	for shell in bash fish zsh; do
+		vcompletion "${wrksrc}/completions/sq.${shell}" "${shell}"
+	done
+
+	vman ${wrksrc}/manpages/sq.1.gz
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: sq-0.40.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
                   ` (4 preceding siblings ...)
  2023-07-24  5:54 ` [PR PATCH] [Updated] " icp1994
@ 2023-07-24  5:57 ` icp1994
  2023-07-24  5:59 ` [PR REVIEW] " icp1994
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: icp1994 @ 2023-07-24  5:57 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages sq
https://github.com/void-linux/void-packages/pull/45023

New package: sq-0.40.0
#### Testing the changes
- I tested the changes in this PR: **YES**

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

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

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

From f7c23bf6ad1bc2c84eb0bbed7601661c9b091fdf Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Mon, 23 Jan 2023 18:23:00 +0530
Subject: [PATCH] New package: sq-0.40.0

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

diff --git a/srcpkgs/sq/template b/srcpkgs/sq/template
new file mode 100644
index 000000000000..96c00ca634e5
--- /dev/null
+++ b/srcpkgs/sq/template
@@ -0,0 +1,30 @@
+# Template file for 'sq'
+pkgname=sq
+version=0.40.0
+revision=1
+archs="x86_64* aarch64*"
+build_wrksrc="sq-${version}"
+build_style=go
+go_import_path="github.com/neilotoole/sq"
+go_ldflags="-X ${go_import_path}/cli/buildinfo.Version=v${version}"
+go_build_tags="libsqlite3"
+makedepends="sqlite-devel"
+short_desc="CLI tool that provides jq-style access to structured data sources"
+maintainer="icp <pangolin@vivaldi.net>"
+license="MIT"
+homepage="https://sq.io"
+changelog="https://raw.githubusercontent.com/neilotoole/sq/master/CHANGELOG.md"
+distfiles="https://github.com/neilotoole/sq/archive/refs/tags/v${version}.tar.gz
+ https://github.com/neilotoole/sq/releases/download/v${version}/sq-${version}-linux-amd64.tar.gz"
+checksum="696ae24ac14cd87a87f06d29953b6b9580ba0b2c92c36e1425f5aa244fb33b07
+ 08098b182d08f561d2229691f7b8fd00983e6442cf9b35e97035364387da95a4"
+conflicts="squirrel sequoia-sq"
+
+post_install() {
+	for shell in bash fish zsh; do
+		vcompletion "${wrksrc}/completions/sq.${shell}" "${shell}"
+	done
+
+	vman ${wrksrc}/manpages/sq.1.gz
+	vlicense LICENSE
+}

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

* Re: [PR REVIEW] New package: sq-0.40.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
                   ` (5 preceding siblings ...)
  2023-07-24  5:57 ` icp1994
@ 2023-07-24  5:59 ` icp1994
  2023-09-02  5:09 ` [PR PATCH] [Updated] " icp1994
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: icp1994 @ 2023-07-24  5:59 UTC (permalink / raw)
  To: ml

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

New review comment by icp1994 on void-packages repository

https://github.com/void-linux/void-packages/pull/45023#discussion_r1271784190

Comment:
It doesn't build in 32-bit systems, at least [in CI](https://github.com/void-linux/void-packages/actions/runs/5641324418)

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

* Re: [PR PATCH] [Updated] New package: sq-0.40.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
                   ` (6 preceding siblings ...)
  2023-07-24  5:59 ` [PR REVIEW] " icp1994
@ 2023-09-02  5:09 ` icp1994
  2023-09-02  5:13 ` icp1994
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: icp1994 @ 2023-09-02  5:09 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages sq
https://github.com/void-linux/void-packages/pull/45023

New package: sq-0.40.0
#### Testing the changes
- I tested the changes in this PR: **YES**

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

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

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

From d357be69d0fad8e3fa8767237c8bee5c86cabd30 Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Mon, 23 Jan 2023 18:23:00 +0530
Subject: [PATCH] New package: sq-0.42.0

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

diff --git a/srcpkgs/sq/template b/srcpkgs/sq/template
new file mode 100644
index 0000000000000..6fb33cd839b2d
--- /dev/null
+++ b/srcpkgs/sq/template
@@ -0,0 +1,30 @@
+# Template file for 'sq'
+pkgname=sq
+version=0.42.0
+revision=1
+# archs="x86_64* aarch64*"
+build_wrksrc="sq-${version}"
+build_style=go
+go_import_path="github.com/neilotoole/sq"
+go_ldflags="-X ${go_import_path}/cli/buildinfo.Version=v${version}"
+go_build_tags="libsqlite3"
+makedepends="sqlite-devel"
+short_desc="CLI tool that provides jq-style access to structured data sources"
+maintainer="icp <pangolin@vivaldi.net>"
+license="MIT"
+homepage="https://sq.io"
+changelog="https://raw.githubusercontent.com/neilotoole/sq/master/CHANGELOG.md"
+distfiles="https://github.com/neilotoole/sq/archive/refs/tags/v${version}.tar.gz
+ https://github.com/neilotoole/sq/releases/download/v${version}/sq-${version}-amd64-amd64.tar.gz"
+checksum="1d73a814ead3205211aca852fa8c30528ec60546732cfc282105f9aa8e4556f5
+ abcab9a053f759e62d516f4ab003f918c7d03385c0581c09c5ed369debd44038"
+conflicts="squirrel sequoia-sq"
+
+post_install() {
+	for shell in bash fish zsh; do
+		vcompletion "${wrksrc}/completions/sq.${shell}" "${shell}"
+	done
+
+	vman ${wrksrc}/manpages/sq.1.gz
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: sq-0.40.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
                   ` (7 preceding siblings ...)
  2023-09-02  5:09 ` [PR PATCH] [Updated] " icp1994
@ 2023-09-02  5:13 ` icp1994
  2023-09-07 16:06 ` [PR REVIEW] New package: sq-0.42.0 Piraty
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: icp1994 @ 2023-09-02  5:13 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages sq
https://github.com/void-linux/void-packages/pull/45023

New package: sq-0.40.0
#### Testing the changes
- I tested the changes in this PR: **YES**

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

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

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

From 0660c9f089186113825600ee1b920afbb1001757 Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Mon, 23 Jan 2023 18:23:00 +0530
Subject: [PATCH] New package: sq-0.42.0

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

diff --git a/srcpkgs/sq/template b/srcpkgs/sq/template
new file mode 100644
index 0000000000000..81e0c60461648
--- /dev/null
+++ b/srcpkgs/sq/template
@@ -0,0 +1,30 @@
+# Template file for 'sq'
+pkgname=sq
+version=0.42.0
+revision=1
+archs="x86_64* aarch64*"
+build_wrksrc="sq-${version}"
+build_style=go
+go_import_path="github.com/neilotoole/sq"
+go_ldflags="-X ${go_import_path}/cli/buildinfo.Version=v${version}"
+go_build_tags="libsqlite3"
+makedepends="sqlite-devel"
+short_desc="CLI tool that provides jq-style access to structured data sources"
+maintainer="icp <pangolin@vivaldi.net>"
+license="MIT"
+homepage="https://sq.io"
+changelog="https://raw.githubusercontent.com/neilotoole/sq/master/CHANGELOG.md"
+distfiles="https://github.com/neilotoole/sq/archive/refs/tags/v${version}.tar.gz
+ https://github.com/neilotoole/sq/releases/download/v${version}/sq-${version}-amd64-amd64.tar.gz"
+checksum="1d73a814ead3205211aca852fa8c30528ec60546732cfc282105f9aa8e4556f5
+ abcab9a053f759e62d516f4ab003f918c7d03385c0581c09c5ed369debd44038"
+conflicts="squirrel sequoia-sq"
+
+post_install() {
+	for shell in bash fish zsh; do
+		vcompletion "${wrksrc}/completions/sq.${shell}" "${shell}"
+	done
+
+	vman ${wrksrc}/manpages/sq.1.gz
+	vlicense LICENSE
+}

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

* Re: [PR REVIEW] New package: sq-0.42.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
                   ` (8 preceding siblings ...)
  2023-09-02  5:13 ` icp1994
@ 2023-09-07 16:06 ` Piraty
  2023-09-07 16:21 ` icp1994
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Piraty @ 2023-09-07 16:06 UTC (permalink / raw)
  To: ml

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

New review comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/45023#discussion_r1318829297

Comment:
why preclude ppc64  and riscv64 then?

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

* Re: [PR REVIEW] New package: sq-0.42.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
                   ` (9 preceding siblings ...)
  2023-09-07 16:06 ` [PR REVIEW] New package: sq-0.42.0 Piraty
@ 2023-09-07 16:21 ` icp1994
  2023-09-09 15:13 ` leahneukirchen
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: icp1994 @ 2023-09-07 16:21 UTC (permalink / raw)
  To: ml

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

New review comment by icp1994 on void-packages repository

https://github.com/void-linux/void-packages/pull/45023#discussion_r1318853783

Comment:
Void doesn't officially support ppc anymore, does it? And I have no way to verify if it actually builds for riscv so I didn't include it.

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

* Re: New package: sq-0.42.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
                   ` (10 preceding siblings ...)
  2023-09-07 16:21 ` icp1994
@ 2023-09-09 15:13 ` leahneukirchen
  2023-09-09 17:54 ` [PR PATCH] [Updated] " icp1994
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: leahneukirchen @ 2023-09-09 15:13 UTC (permalink / raw)
  To: ml

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

New comment by leahneukirchen on void-packages repository

https://github.com/void-linux/void-packages/pull/45023#issuecomment-1712534308

Comment:
This fixes compilation on 32-bit, feel free to upstream:

```
--- sq-0.42.0/libsq/ast/render/range.go.orig
+++ sq-0.42.0/libsq/ast/render/range.go
@@ -27,7 +27,7 @@
                if rr.Limit == -1 {
                        // MySQL requires a LIMIT if OFFSET is used. Therefore
                        // we make the LIMIT a very large number
-                       limit = fmt.Sprintf("LIMIT %d", math.MaxInt64)
+                       limit = fmt.Sprintf("LIMIT %d", uint64(math.MaxInt64))
                }
        }
```

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

* Re: [PR PATCH] [Updated] New package: sq-0.42.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
                   ` (11 preceding siblings ...)
  2023-09-09 15:13 ` leahneukirchen
@ 2023-09-09 17:54 ` icp1994
  2023-09-09 17:57 ` icp1994
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: icp1994 @ 2023-09-09 17:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages sq
https://github.com/void-linux/void-packages/pull/45023

New package: sq-0.42.0
#### Testing the changes
- I tested the changes in this PR: **YES**

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

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

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

From f42d7362e5a1f5c0617b387366460fd3270a7794 Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Mon, 23 Jan 2023 18:23:00 +0530
Subject: [PATCH] New package: sq-0.42.0

---
 srcpkgs/sq/patches/32-bit.patch | 11 +++++++++++
 srcpkgs/sq/template             | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)
 create mode 100644 srcpkgs/sq/patches/32-bit.patch
 create mode 100644 srcpkgs/sq/template

diff --git a/srcpkgs/sq/patches/32-bit.patch b/srcpkgs/sq/patches/32-bit.patch
new file mode 100644
index 0000000000000..ea4c868ece3b4
--- /dev/null
+++ b/srcpkgs/sq/patches/32-bit.patch
@@ -0,0 +1,11 @@
+--- a/libsq/ast/render/range.go
++++ b/libsq/ast/render/range.go
+@@ -27,7 +27,7 @@
+ 		if rr.Limit == -1 {
+ 			// MySQL requires a LIMIT if OFFSET is used. Therefore
+ 			// we make the LIMIT a very large number
+-			limit = fmt.Sprintf("LIMIT %d", math.MaxInt64)
++			limit = fmt.Sprintf("LIMIT %d", uint64(math.MaxInt64))
+ 		}
+ 	}
+
diff --git a/srcpkgs/sq/template b/srcpkgs/sq/template
new file mode 100644
index 0000000000000..736291540fa14
--- /dev/null
+++ b/srcpkgs/sq/template
@@ -0,0 +1,32 @@
+# Template file for 'sq'
+pkgname=sq
+version=0.42.0
+revision=1
+build_style=go
+go_import_path="github.com/neilotoole/sq"
+go_ldflags="-X ${go_import_path}/cli/buildinfo.Version=v${version}"
+go_build_tags="libsqlite3"
+makedepends="sqlite-devel"
+short_desc="CLI tool that provides jq-style access to structured data sources"
+maintainer="icp <pangolin@vivaldi.net>"
+license="MIT"
+homepage="https://sq.io"
+changelog="https://raw.githubusercontent.com/neilotoole/sq/master/CHANGELOG.md"
+distfiles="https://github.com/neilotoole/sq/archive/refs/tags/v${version}.tar.gz
+ https://github.com/neilotoole/sq/releases/download/v${version}/sq-${version}-amd64-amd64.tar.gz"
+checksum="1d73a814ead3205211aca852fa8c30528ec60546732cfc282105f9aa8e4556f5
+ abcab9a053f759e62d516f4ab003f918c7d03385c0581c09c5ed369debd44038"
+conflicts="squirrel sequoia-sq"
+
+post_extract() {
+	mv sq-${version}/* .
+}
+
+post_install() {
+	for shell in bash fish zsh; do
+		vcompletion "completions/sq.${shell}" "${shell}"
+	done
+
+	vman manpages/sq.1.gz
+	vlicense LICENSE
+}

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

* Re: New package: sq-0.42.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
                   ` (12 preceding siblings ...)
  2023-09-09 17:54 ` [PR PATCH] [Updated] " icp1994
@ 2023-09-09 17:57 ` icp1994
  2023-09-09 21:04 ` [PR REVIEW] " Piraty
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: icp1994 @ 2023-09-09 17:57 UTC (permalink / raw)
  To: ml

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

New comment by icp1994 on void-packages repository

https://github.com/void-linux/void-packages/pull/45023#issuecomment-1712566718

Comment:
Thank you!

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

* Re: [PR REVIEW] New package: sq-0.42.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
                   ` (13 preceding siblings ...)
  2023-09-09 17:57 ` icp1994
@ 2023-09-09 21:04 ` Piraty
  2023-09-09 21:04 ` [PR PATCH] [Merged]: " Piraty
  2023-09-10 18:17 ` neilotoole
  16 siblings, 0 replies; 18+ messages in thread
From: Piraty @ 2023-09-09 21:04 UTC (permalink / raw)
  To: ml

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

New review comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/45023#discussion_r1320653878

Comment:
yet there's no reason to spoil the fun for those who build on their own.

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

* Re: [PR PATCH] [Merged]: New package: sq-0.42.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
                   ` (14 preceding siblings ...)
  2023-09-09 21:04 ` [PR REVIEW] " Piraty
@ 2023-09-09 21:04 ` Piraty
  2023-09-10 18:17 ` neilotoole
  16 siblings, 0 replies; 18+ messages in thread
From: Piraty @ 2023-09-09 21:04 UTC (permalink / raw)
  To: ml

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

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

New package: sq-0.42.0
https://github.com/void-linux/void-packages/pull/45023

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

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

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

* Re: New package: sq-0.42.0
  2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
                   ` (15 preceding siblings ...)
  2023-09-09 21:04 ` [PR PATCH] [Merged]: " Piraty
@ 2023-09-10 18:17 ` neilotoole
  16 siblings, 0 replies; 18+ messages in thread
From: neilotoole @ 2023-09-10 18:17 UTC (permalink / raw)
  To: ml

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

New comment by neilotoole on void-packages repository

https://github.com/void-linux/void-packages/pull/45023#issuecomment-1712903581

Comment:
Hi, I'm the [`sq`](https://github.com/neilotoole/sq) author. @icp1994's PR has been merged, and released as [`sq v0.42.1`](https://github.com/neilotoole/sq/releases/tag/v0.42.1). Let me know if there's anything else I can do to help. 

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

end of thread, other threads:[~2023-09-10 18:17 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-13 18:40 [PR PATCH] New package: sq-0.40.0 icp1994
2023-07-13 18:56 ` [PR PATCH] [Updated] " icp1994
2023-07-13 19:07 ` icp1994
2023-07-13 19:20 ` icp1994
2023-07-23 20:56 ` [PR REVIEW] " Piraty
2023-07-24  5:54 ` [PR PATCH] [Updated] " icp1994
2023-07-24  5:57 ` icp1994
2023-07-24  5:59 ` [PR REVIEW] " icp1994
2023-09-02  5:09 ` [PR PATCH] [Updated] " icp1994
2023-09-02  5:13 ` icp1994
2023-09-07 16:06 ` [PR REVIEW] New package: sq-0.42.0 Piraty
2023-09-07 16:21 ` icp1994
2023-09-09 15:13 ` leahneukirchen
2023-09-09 17:54 ` [PR PATCH] [Updated] " icp1994
2023-09-09 17:57 ` icp1994
2023-09-09 21:04 ` [PR REVIEW] " Piraty
2023-09-09 21:04 ` [PR PATCH] [Merged]: " Piraty
2023-09-10 18:17 ` neilotoole

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