Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: csvcut-1.0
@ 2024-03-28  3:26 gega
  2024-03-29  3:51 ` [PR PATCH] [Updated] " gega
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: gega @ 2024-03-28  3:26 UTC (permalink / raw)
  To: ml

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

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

https://github.com/gega/void-packages csvcut
https://github.com/void-linux/void-packages/pull/49574

New package: csvcut-1.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

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

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


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

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

From 94d4eedf6c7af5c531d0ce343797e8ccb55779b1 Mon Sep 17 00:00:00 2001
From: Gergely Gati <gati.gergely@gmail.com>
Date: Wed, 27 Mar 2024 20:10:34 -0700
Subject: [PATCH] New package: csvcut-1.0

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

diff --git a/srcpkgs/csvcut/template b/srcpkgs/csvcut/template
new file mode 100644
index 00000000000000..18bc9d487b60ee
--- /dev/null
+++ b/srcpkgs/csvcut/template
@@ -0,0 +1,30 @@
+# Template file for 'csvcut'
+pkgname=csvcut
+version=1.0
+revision=1
+#archs="i686 x86_64"
+#build_wrksrc=
+build_style=gnu-configure
+#configure_args=""
+#make_build_args=""
+#make_install_args=""
+#conf_files=""
+#make_dirs="/var/log/dir 0755 root root"
+hostmakedepends="automake valgrind libxml2 jq"
+#makedepends=""
+#depends=""
+short_desc="Process CSV files like 'cut' utility"
+maintainer="Gergely Gati <gati.gergely@gmail.com>"
+license="BSD-3-Clause"
+homepage="https://github.com/gega/csvcut"
+#changelog=""
+distfiles="https://github.com/gega/csvcut/releases/download/v${version}/csvcut-${version}.tar.gz"
+checksum=fc4a0059f9e640afd4389615182506f4aa3bd0075c598352b75e83f63962d9f9
+
+do_install() {
+	make MANDIR=${DESTDIR}/usr/share/man DESTDIR=${DESTDIR}/usr/bin install
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: csvcut-1.0
  2024-03-28  3:26 [PR PATCH] New package: csvcut-1.0 gega
@ 2024-03-29  3:51 ` gega
  2024-03-29  3:54 ` gega
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: gega @ 2024-03-29  3:51 UTC (permalink / raw)
  To: ml

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

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

https://github.com/gega/void-packages csvcut
https://github.com/void-linux/void-packages/pull/49574

New package: csvcut-1.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

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

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


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

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

From b4cffd94b59f27f4c1d1af743ada81907b6d48e9 Mon Sep 17 00:00:00 2001
From: Gergely Gati <gati.gergely@gmail.com>
Date: Wed, 27 Mar 2024 20:10:34 -0700
Subject: [PATCH] New package: csvcut-1.1

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

diff --git a/srcpkgs/csvcut/template b/srcpkgs/csvcut/template
new file mode 100644
index 00000000000000..59d6dbaeb180f5
--- /dev/null
+++ b/srcpkgs/csvcut/template
@@ -0,0 +1,20 @@
+# Template file for 'csvcut'
+pkgname=csvcut
+version=1.1
+revision=2
+build_style=gnu-configure
+hostmakedepends="automake"
+short_desc="Process CSV files like 'cut' utility"
+maintainer="Gergely Gati <gati.gergely@gmail.com>"
+license="BSD-3-Clause"
+homepage="https://github.com/gega/csvcut"
+distfiles="https://github.com/gega/csvcut/releases/download/v${version}/csvcut-${version}.tar.gz"
+checksum=49d6fb3fe7d74ca4850823f576b85d436b44a688aea74dce5c9503f26506306b
+
+do_install() {
+	make MANDIR=${DESTDIR}/usr/share/man DESTDIR=${DESTDIR}/usr/bin install
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: csvcut-1.0
  2024-03-28  3:26 [PR PATCH] New package: csvcut-1.0 gega
  2024-03-29  3:51 ` [PR PATCH] [Updated] " gega
@ 2024-03-29  3:54 ` gega
  2024-03-29 16:18 ` gega
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: gega @ 2024-03-29  3:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/gega/void-packages csvcut
https://github.com/void-linux/void-packages/pull/49574

New package: csvcut-1.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

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

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


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

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

From a329b6603aed029f016ea60fbf0f8cd52aa8b075 Mon Sep 17 00:00:00 2001
From: Gergely Gati <gati.gergely@gmail.com>
Date: Wed, 27 Mar 2024 20:10:34 -0700
Subject: [PATCH] New package: csvcut-1.1

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

diff --git a/srcpkgs/csvcut/template b/srcpkgs/csvcut/template
new file mode 100644
index 00000000000000..8f24d0b2bca1fd
--- /dev/null
+++ b/srcpkgs/csvcut/template
@@ -0,0 +1,16 @@
+# Template file for 'csvcut'
+pkgname=csvcut
+version=1.1
+revision=2
+build_style=gnu-configure
+hostmakedepends="automake"
+short_desc="Process CSV files like 'cut' utility"
+maintainer="Gergely Gati <gati.gergely@gmail.com>"
+license="BSD-3-Clause"
+homepage="https://github.com/gega/csvcut"
+distfiles="https://github.com/gega/csvcut/releases/download/v${version}/csvcut-${version}.tar.gz"
+checksum=49d6fb3fe7d74ca4850823f576b85d436b44a688aea74dce5c9503f26506306b
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: New package: csvcut-1.0
  2024-03-28  3:26 [PR PATCH] New package: csvcut-1.0 gega
  2024-03-29  3:51 ` [PR PATCH] [Updated] " gega
  2024-03-29  3:54 ` gega
@ 2024-03-29 16:18 ` gega
  2024-03-29 18:34 ` meator
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: gega @ 2024-03-29 16:18 UTC (permalink / raw)
  To: ml

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

New comment by gega on void-packages repository

https://github.com/void-linux/void-packages/pull/49574#issuecomment-2027442266

Comment:
Thank you for the review! I fixed everything and pushed the changes! How can I restart the testing step?

> Remove commented out variables and `do_install()` and separate `makedepens` and `hostmakedepends` properly.
> 
> Does the program really depend on `valgrind`? It looks weird to me.
> 
> If you are unsure about writing templates, I can recommend [my tutorial](https://xbps-src-tutorials.github.io/).



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

* Re: New package: csvcut-1.0
  2024-03-28  3:26 [PR PATCH] New package: csvcut-1.0 gega
                   ` (2 preceding siblings ...)
  2024-03-29 16:18 ` gega
@ 2024-03-29 18:34 ` meator
  2024-03-29 19:14 ` [PR PATCH] [Updated] " gega
  2024-04-09  5:13 ` [PR PATCH] [Closed]: " gega
  5 siblings, 0 replies; 7+ messages in thread
From: meator @ 2024-03-29 18:34 UTC (permalink / raw)
  To: ml

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

New comment by meator on void-packages repository

https://github.com/void-linux/void-packages/pull/49574#issuecomment-2027585779

Comment:
> Thank you for the review! I fixed everything and pushed the changes! How can I restart the testing step?

You can't, a maintainer has to run them for first contributors. [You can run the tests locally if you so wish](https://xbps-src-tutorials.github.io/tips-and-tricks.html#reproduce-checks-locally), but running all of them shouldn't be necessary. If one native compilation and one cross compilation works, everything will likely work.

New packages must have `revision=1`.

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

* Re: [PR PATCH] [Updated] New package: csvcut-1.0
  2024-03-28  3:26 [PR PATCH] New package: csvcut-1.0 gega
                   ` (3 preceding siblings ...)
  2024-03-29 18:34 ` meator
@ 2024-03-29 19:14 ` gega
  2024-04-09  5:13 ` [PR PATCH] [Closed]: " gega
  5 siblings, 0 replies; 7+ messages in thread
From: gega @ 2024-03-29 19:14 UTC (permalink / raw)
  To: ml

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

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

https://github.com/gega/void-packages csvcut
https://github.com/void-linux/void-packages/pull/49574

New package: csvcut-1.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

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

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


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

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

From fc050fb5a61eba88426dd8608e238e565cf5b5a5 Mon Sep 17 00:00:00 2001
From: Gergely Gati <gati.gergely@gmail.com>
Date: Wed, 27 Mar 2024 20:10:34 -0700
Subject: [PATCH] New package: csvcut-1.1

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

diff --git a/srcpkgs/csvcut/template b/srcpkgs/csvcut/template
new file mode 100644
index 00000000000000..9396044fa7dbe3
--- /dev/null
+++ b/srcpkgs/csvcut/template
@@ -0,0 +1,16 @@
+# Template file for 'csvcut'
+pkgname=csvcut
+version=1.1
+revision=1
+build_style=gnu-configure
+hostmakedepends="automake"
+short_desc="Process CSV files like 'cut' utility"
+maintainer="Gergely Gati <gati.gergely@gmail.com>"
+license="BSD-3-Clause"
+homepage="https://github.com/gega/csvcut"
+distfiles="https://github.com/gega/csvcut/releases/download/v${version}/csvcut-${version}.tar.gz"
+checksum=49d6fb3fe7d74ca4850823f576b85d436b44a688aea74dce5c9503f26506306b
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Closed]: New package: csvcut-1.0
  2024-03-28  3:26 [PR PATCH] New package: csvcut-1.0 gega
                   ` (4 preceding siblings ...)
  2024-03-29 19:14 ` [PR PATCH] [Updated] " gega
@ 2024-04-09  5:13 ` gega
  5 siblings, 0 replies; 7+ messages in thread
From: gega @ 2024-04-09  5:13 UTC (permalink / raw)
  To: ml

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

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

New package: csvcut-1.0
https://github.com/void-linux/void-packages/pull/49574

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

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

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


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

end of thread, other threads:[~2024-04-09  5:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-28  3:26 [PR PATCH] New package: csvcut-1.0 gega
2024-03-29  3:51 ` [PR PATCH] [Updated] " gega
2024-03-29  3:54 ` gega
2024-03-29 16:18 ` gega
2024-03-29 18:34 ` meator
2024-03-29 19:14 ` [PR PATCH] [Updated] " gega
2024-04-09  5:13 ` [PR PATCH] [Closed]: " gega

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