Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: reddio-0.52
@ 2022-11-06  2:46 DerAndereJohannes
  2022-11-06 13:06 ` [PR REVIEW] " paper42
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: DerAndereJohannes @ 2022-11-06  2:46 UTC (permalink / raw)
  To: ml

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

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

https://github.com/DerAndereJohannes/void-packages reddio
https://github.com/void-linux/void-packages/pull/40351

New package: reddio-0.52
<!-- 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**

#### Note
First time contributing here. Been using reddio for a while, I saw that #14223 is open and the work was basically already done but not submitted in #14281. I made minor changes and decided to submit. Let me know if I should make any changes. Thanks!

<!-- 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/40351.patch is attached

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

From aa69ed3c118e6fa4adcd62aacee5d366268c27ab Mon Sep 17 00:00:00 2001
From: Johannes Herforth <johannes.herforth@rwth-aachen.de>
Date: Sun, 6 Nov 2022 03:25:06 +0100
Subject: [PATCH] New package: reddio-0.52

---
 srcpkgs/reddio/INSTALL.msg                    |  1 +
 .../reddio/patches/change_share_path.patch    | 13 +++++++++++++
 srcpkgs/reddio/template                       | 19 +++++++++++++++++++
 3 files changed, 33 insertions(+)
 create mode 100644 srcpkgs/reddio/INSTALL.msg
 create mode 100644 srcpkgs/reddio/patches/change_share_path.patch
 create mode 100644 srcpkgs/reddio/template

diff --git a/srcpkgs/reddio/INSTALL.msg b/srcpkgs/reddio/INSTALL.msg
new file mode 100644
index 000000000000..3d9fbbecf1f6
--- /dev/null
+++ b/srcpkgs/reddio/INSTALL.msg
@@ -0,0 +1 @@
+Optional: netcat to authenticate with your Reddit account credentials
diff --git a/srcpkgs/reddio/patches/change_share_path.patch b/srcpkgs/reddio/patches/change_share_path.patch
new file mode 100644
index 000000000000..0e2a5d4cf02e
--- /dev/null
+++ b/srcpkgs/reddio/patches/change_share_path.patch
@@ -0,0 +1,13 @@
+diff --git a/reddio b/reddio
+index dd65718..bc78105 100755
+--- a/reddio
++++ b/reddio
+@@ -197,7 +197,7 @@ main()
+ 	fi
+ 
+ 	# Library path environment variable has precedence over config
+-	lib_dir=${REDDIO_LIB:-${lib_dir:-/usr/local/share/reddio}}
++	lib_dir=${REDDIO_LIB:-${lib_dir:-/usr/share/reddio}}
+ 
+ 	# Make sure the lib directory can be found
+ 	[ -d "$lib_dir" ] || {
diff --git a/srcpkgs/reddio/template b/srcpkgs/reddio/template
new file mode 100644
index 000000000000..d34a8a4d794c
--- /dev/null
+++ b/srcpkgs/reddio/template
@@ -0,0 +1,19 @@
+# Template file for 'reddio'
+pkgname=reddio
+version=0.52
+revision=1
+wrksrc="${pkgname}-v${version}"
+depends="curl jq"
+short_desc="Command-line interface for Reddit written in POSIX"
+maintainer="Johannes Herforth <void@herforth.xyz>"
+license="MIT"
+homepage="https://gitlab.com/aaronNG/reddio"
+distfiles="https://gitlab.com/aaronNG/reddio/-/archive/v${version}/reddio-v${version}.tar.gz"
+checksum=7da96fe1877725b3ce12520a06e9105547fe7e6e4f5971f4b4318c96a79e8d07
+
+do_install() {
+	vbin reddio
+	vlicense LICENSE
+	vmkdir usr/share/reddio
+	vcopy share/reddio usr/share/
+}

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

* Re: [PR REVIEW] New package: reddio-0.52
  2022-11-06  2:46 [PR PATCH] New package: reddio-0.52 DerAndereJohannes
  2022-11-06 13:06 ` [PR REVIEW] " paper42
  2022-11-06 13:06 ` paper42
@ 2022-11-06 13:06 ` paper42
  2022-11-11 11:47 ` [PR PATCH] [Updated] " DerAndereJohannes
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: paper42 @ 2022-11-06 13:06 UTC (permalink / raw)
  To: ml

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

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/40351#discussion_r1014826595

Comment:
can we use `build_style=gnu-makefile` and set `make_install_args="LIBDIR=/usr/share/reddio"` instead?

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

* Re: [PR REVIEW] New package: reddio-0.52
  2022-11-06  2:46 [PR PATCH] New package: reddio-0.52 DerAndereJohannes
  2022-11-06 13:06 ` [PR REVIEW] " paper42
@ 2022-11-06 13:06 ` paper42
  2022-11-06 13:06 ` paper42
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: paper42 @ 2022-11-06 13:06 UTC (permalink / raw)
  To: ml

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

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/40351#discussion_r1014826220

Comment:
```suggestion
short_desc="Command-line interface for Reddit written in POSIX sh"
```

I am not sure this meets quality requirements if it's just a shell script.

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

* Re: [PR REVIEW] New package: reddio-0.52
  2022-11-06  2:46 [PR PATCH] New package: reddio-0.52 DerAndereJohannes
@ 2022-11-06 13:06 ` paper42
  2022-11-06 13:06 ` paper42
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: paper42 @ 2022-11-06 13:06 UTC (permalink / raw)
  To: ml

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

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/40351#discussion_r1014826726

Comment:
we don't really use INSTALL.msg for optional dependencies and this seems to be an important dependency. I would remove INSTALL.msg and include it in $depends.

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

* Re: [PR PATCH] [Updated] New package: reddio-0.52
  2022-11-06  2:46 [PR PATCH] New package: reddio-0.52 DerAndereJohannes
                   ` (2 preceding siblings ...)
  2022-11-06 13:06 ` paper42
@ 2022-11-11 11:47 ` DerAndereJohannes
  2022-11-11 11:54 ` DerAndereJohannes
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: DerAndereJohannes @ 2022-11-11 11:47 UTC (permalink / raw)
  To: ml

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

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

https://github.com/DerAndereJohannes/void-packages reddio
https://github.com/void-linux/void-packages/pull/40351

New package: reddio-0.52
<!-- 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**

#### Note
First time contributing here. Been using reddio for a while, I saw that #14223 is open and the work was basically already done but not submitted in #14281. I made minor changes and decided to submit. Let me know if I should make any changes. Thanks!

<!-- 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/40351.patch is attached

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

From 6b440bbb51f435be4bf8bb72eaa4dc618f80c24a Mon Sep 17 00:00:00 2001
From: Johannes Herforth <johannes.herforth@rwth-aachen.de>
Date: Sun, 6 Nov 2022 03:25:06 +0100
Subject: [PATCH] New package: reddio-0.52

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

diff --git a/srcpkgs/reddio/template b/srcpkgs/reddio/template
new file mode 100644
index 000000000000..f3cab35fa757
--- /dev/null
+++ b/srcpkgs/reddio/template
@@ -0,0 +1,19 @@
+# Template file for 'reddio'
+pkgname=reddio
+version=0.52
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=gnu-makefile
+# make_install_args="REDDIO_LIB=/usr/share/reddio"
+make_install_args="PREFIX=/usr"
+depends="curl jq netcat"
+short_desc="Command-line interface for Reddit written in POSIX sh"
+maintainer="Johannes Herforth <void@herforth.xyz>"
+license="MIT"
+homepage="https://gitlab.com/aaronNG/reddio"
+distfiles="https://gitlab.com/aaronNG/reddio/-/archive/v${version}/reddio-v${version}.tar.gz"
+checksum=7da96fe1877725b3ce12520a06e9105547fe7e6e4f5971f4b4318c96a79e8d07
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: reddio-0.52
  2022-11-06  2:46 [PR PATCH] New package: reddio-0.52 DerAndereJohannes
                   ` (3 preceding siblings ...)
  2022-11-11 11:47 ` [PR PATCH] [Updated] " DerAndereJohannes
@ 2022-11-11 11:54 ` DerAndereJohannes
  2022-11-11 12:02 ` DerAndereJohannes
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: DerAndereJohannes @ 2022-11-11 11:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/DerAndereJohannes/void-packages reddio
https://github.com/void-linux/void-packages/pull/40351

New package: reddio-0.52
<!-- 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**

#### Note
First time contributing here. Been using reddio for a while, I saw that #14223 is open and the work was basically already done but not submitted in #14281. I made minor changes and decided to submit. Let me know if I should make any changes. Thanks!

<!-- 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/40351.patch is attached

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

From e91969c0c9c5330f69f8ac67ad02d77e1d9baa49 Mon Sep 17 00:00:00 2001
From: Johannes Herforth <johannes.herforth@rwth-aachen.de>
Date: Sun, 6 Nov 2022 03:25:06 +0100
Subject: [PATCH] New package: reddio-0.52

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

diff --git a/srcpkgs/reddio/template b/srcpkgs/reddio/template
new file mode 100644
index 000000000000..18910dc019d4
--- /dev/null
+++ b/srcpkgs/reddio/template
@@ -0,0 +1,18 @@
+# Template file for 'reddio'
+pkgname=reddio
+version=0.52
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=gnu-makefile
+make_install_args="PREFIX=/usr"
+depends="curl jq netcat"
+short_desc="Command-line interface for Reddit written in POSIX sh"
+maintainer="Johannes Herforth <void@herforth.xyz>"
+license="MIT"
+homepage="https://gitlab.com/aaronNG/reddio"
+distfiles="https://gitlab.com/aaronNG/reddio/-/archive/v${version}/reddio-v${version}.tar.gz"
+checksum=7da96fe1877725b3ce12520a06e9105547fe7e6e4f5971f4b4318c96a79e8d07
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: New package: reddio-0.52
  2022-11-06  2:46 [PR PATCH] New package: reddio-0.52 DerAndereJohannes
                   ` (4 preceding siblings ...)
  2022-11-11 11:54 ` DerAndereJohannes
@ 2022-11-11 12:02 ` DerAndereJohannes
  2022-11-11 12:03 ` [PR PATCH] [Updated] " DerAndereJohannes
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: DerAndereJohannes @ 2022-11-11 12:02 UTC (permalink / raw)
  To: ml

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

New comment by DerAndereJohannes on void-packages repository

https://github.com/void-linux/void-packages/pull/40351#issuecomment-1311612874

Comment:
@paper42 Thank you for your feedback! I put all the changes in that you proposed. The make file had a handy prefix variable to solve the install issue and remove the patch!

As to if the program meets the quality requirements: It is a very handy and sophisticated set of  programs to make user scripts far more powerful. I would have guessed the initial people proposing it think the same. On that note, if the team does not think it is sufficient enough, I will understand and we could get rid of this and #14223.

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

* Re: [PR PATCH] [Updated] New package: reddio-0.52
  2022-11-06  2:46 [PR PATCH] New package: reddio-0.52 DerAndereJohannes
                   ` (5 preceding siblings ...)
  2022-11-11 12:02 ` DerAndereJohannes
@ 2022-11-11 12:03 ` DerAndereJohannes
  2022-11-11 12:11 ` DerAndereJohannes
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: DerAndereJohannes @ 2022-11-11 12:03 UTC (permalink / raw)
  To: ml

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

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

https://github.com/DerAndereJohannes/void-packages reddio
https://github.com/void-linux/void-packages/pull/40351

New package: reddio-0.52
<!-- 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**

#### Note
First time contributing here. Been using reddio for a while, I saw that #14223 is open and the work was basically already done but not submitted in #14281. I made minor changes and decided to submit. Let me know if I should make any changes. Thanks!

<!-- 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/40351.patch is attached

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

From e91969c0c9c5330f69f8ac67ad02d77e1d9baa49 Mon Sep 17 00:00:00 2001
From: Johannes Herforth <johannes.herforth@rwth-aachen.de>
Date: Sun, 6 Nov 2022 03:25:06 +0100
Subject: [PATCH] New package: reddio-0.52

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

diff --git a/srcpkgs/reddio/template b/srcpkgs/reddio/template
new file mode 100644
index 000000000000..18910dc019d4
--- /dev/null
+++ b/srcpkgs/reddio/template
@@ -0,0 +1,18 @@
+# Template file for 'reddio'
+pkgname=reddio
+version=0.52
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=gnu-makefile
+make_install_args="PREFIX=/usr"
+depends="curl jq netcat"
+short_desc="Command-line interface for Reddit written in POSIX sh"
+maintainer="Johannes Herforth <void@herforth.xyz>"
+license="MIT"
+homepage="https://gitlab.com/aaronNG/reddio"
+distfiles="https://gitlab.com/aaronNG/reddio/-/archive/v${version}/reddio-v${version}.tar.gz"
+checksum=7da96fe1877725b3ce12520a06e9105547fe7e6e4f5971f4b4318c96a79e8d07
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: reddio-0.52
  2022-11-06  2:46 [PR PATCH] New package: reddio-0.52 DerAndereJohannes
                   ` (6 preceding siblings ...)
  2022-11-11 12:03 ` [PR PATCH] [Updated] " DerAndereJohannes
@ 2022-11-11 12:11 ` DerAndereJohannes
  2022-11-11 12:35 ` DerAndereJohannes
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: DerAndereJohannes @ 2022-11-11 12:11 UTC (permalink / raw)
  To: ml

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

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

https://github.com/DerAndereJohannes/void-packages reddio
https://github.com/void-linux/void-packages/pull/40351

New package: reddio-0.52
<!-- 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**

#### Note
First time contributing here. Been using reddio for a while, I saw that #14223 is open and the work was basically already done but not submitted in #14281. I made minor changes and decided to submit. Let me know if I should make any changes. Thanks!

<!-- 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/40351.patch is attached

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

From 612128b6a0e06057696ccd69f045671979a34595 Mon Sep 17 00:00:00 2001
From: Johannes Herforth <johannes.herforth@rwth-aachen.de>
Date: Sun, 6 Nov 2022 03:25:06 +0100
Subject: [PATCH] New package: reddio-0.52

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

diff --git a/srcpkgs/reddio/template b/srcpkgs/reddio/template
new file mode 100644
index 000000000000..18910dc019d4
--- /dev/null
+++ b/srcpkgs/reddio/template
@@ -0,0 +1,18 @@
+# Template file for 'reddio'
+pkgname=reddio
+version=0.52
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=gnu-makefile
+make_install_args="PREFIX=/usr"
+depends="curl jq netcat"
+short_desc="Command-line interface for Reddit written in POSIX sh"
+maintainer="Johannes Herforth <void@herforth.xyz>"
+license="MIT"
+homepage="https://gitlab.com/aaronNG/reddio"
+distfiles="https://gitlab.com/aaronNG/reddio/-/archive/v${version}/reddio-v${version}.tar.gz"
+checksum=7da96fe1877725b3ce12520a06e9105547fe7e6e4f5971f4b4318c96a79e8d07
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: reddio-0.52
  2022-11-06  2:46 [PR PATCH] New package: reddio-0.52 DerAndereJohannes
                   ` (7 preceding siblings ...)
  2022-11-11 12:11 ` DerAndereJohannes
@ 2022-11-11 12:35 ` DerAndereJohannes
  2023-02-10  2:40 ` github-actions
  2023-02-25  2:01 ` [PR PATCH] [Closed]: " github-actions
  10 siblings, 0 replies; 12+ messages in thread
From: DerAndereJohannes @ 2022-11-11 12:35 UTC (permalink / raw)
  To: ml

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

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

https://github.com/DerAndereJohannes/void-packages reddio
https://github.com/void-linux/void-packages/pull/40351

New package: reddio-0.52
<!-- 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**

#### Note
First time contributing here. Been using reddio for a while, I saw that #14223 is open and the work was basically already done but not submitted in #14281. I made minor changes and decided to submit. Let me know if I should make any changes. Thanks!

<!-- 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/40351.patch is attached

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

From ba3a0ffbe9c39850ee56fd6d2ea7f4f967eba1b6 Mon Sep 17 00:00:00 2001
From: Johannes Herforth <johannes.herforth@rwth-aachen.de>
Date: Sun, 6 Nov 2022 03:25:06 +0100
Subject: [PATCH] New package: reddio-0.52

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

diff --git a/srcpkgs/reddio/template b/srcpkgs/reddio/template
new file mode 100644
index 000000000000..70c049649b77
--- /dev/null
+++ b/srcpkgs/reddio/template
@@ -0,0 +1,17 @@
+# Template file for 'reddio'
+pkgname=reddio
+version=0.52
+revision=1
+build_style=gnu-makefile
+make_install_args="PREFIX=/usr"
+depends="curl jq netcat"
+short_desc="Command-line interface for Reddit written in POSIX sh"
+maintainer="Johannes Herforth <void@herforth.xyz>"
+license="MIT"
+homepage="https://gitlab.com/aaronNG/reddio"
+distfiles="https://gitlab.com/aaronNG/${pkgname}/-/archive/v${version}/${pkgname}-v${version}.tar.gz"
+checksum=7da96fe1877725b3ce12520a06e9105547fe7e6e4f5971f4b4318c96a79e8d07
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: New package: reddio-0.52
  2022-11-06  2:46 [PR PATCH] New package: reddio-0.52 DerAndereJohannes
                   ` (8 preceding siblings ...)
  2022-11-11 12:35 ` DerAndereJohannes
@ 2023-02-10  2:40 ` github-actions
  2023-02-25  2:01 ` [PR PATCH] [Closed]: " github-actions
  10 siblings, 0 replies; 12+ messages in thread
From: github-actions @ 2023-02-10  2:40 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/40351#issuecomment-1425097186

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

* Re: [PR PATCH] [Closed]: New package: reddio-0.52
  2022-11-06  2:46 [PR PATCH] New package: reddio-0.52 DerAndereJohannes
                   ` (9 preceding siblings ...)
  2023-02-10  2:40 ` github-actions
@ 2023-02-25  2:01 ` github-actions
  10 siblings, 0 replies; 12+ messages in thread
From: github-actions @ 2023-02-25  2:01 UTC (permalink / raw)
  To: ml

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

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

New package: reddio-0.52
https://github.com/void-linux/void-packages/pull/40351

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**

#### Note
First time contributing here. Been using reddio for a while, I saw that #14223 is open and the work was basically already done but not submitted in #14281. I made minor changes and decided to submit. Let me know if I should make any changes. Thanks!

<!-- 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
-->


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

end of thread, other threads:[~2023-02-25  2:01 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-06  2:46 [PR PATCH] New package: reddio-0.52 DerAndereJohannes
2022-11-06 13:06 ` [PR REVIEW] " paper42
2022-11-06 13:06 ` paper42
2022-11-06 13:06 ` paper42
2022-11-11 11:47 ` [PR PATCH] [Updated] " DerAndereJohannes
2022-11-11 11:54 ` DerAndereJohannes
2022-11-11 12:02 ` DerAndereJohannes
2022-11-11 12:03 ` [PR PATCH] [Updated] " DerAndereJohannes
2022-11-11 12:11 ` DerAndereJohannes
2022-11-11 12:35 ` DerAndereJohannes
2023-02-10  2:40 ` github-actions
2023-02-25  2:01 ` [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).