Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] rc: fix dead links
@ 2021-09-08  8:21 meator
  2021-09-08  9:40 ` [PR PATCH] [Updated] " meator
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: meator @ 2021-09-08  8:21 UTC (permalink / raw)
  To: ml

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

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

https://github.com/meator/void-packages rc
https://github.com/void-linux/void-packages/pull/32875

rc: fix dead links
<!-- Mark items with [x] where applicable -->
`rc` seems pretty dead now. `tobold.org` and `static.tobold.org` are down. I have tried to contact the author, but his email seems to be down too. This package should maybe be removed rather than fixed.

This PR fixes dead links and modifies the build process.

@leahneukirchen I'm pinging you since you are the maintainer of `rc`. Do you have any comment on this?
#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

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

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

From 6d743a94d220338ba6a44b10abc304403a3f9fe9 Mon Sep 17 00:00:00 2001
From: meator <meator.dev@gmail.com>
Date: Wed, 8 Sep 2021 09:45:47 +0200
Subject: [PATCH] rc: fix dead links

---
 srcpkgs/rc/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/rc/template b/srcpkgs/rc/template
index 9b5cce9066ff..77b4c99c1d76 100644
--- a/srcpkgs/rc/template
+++ b/srcpkgs/rc/template
@@ -6,14 +6,14 @@ build_style=gnu-configure
 configure_args="ac_cv_sys_restartable_syscalls=no
  $(vopt_if readline --with-edit=gnu)
  $(vopt_if libedit --with-edit=bsd)"
-makedepends="$(vopt_if readline readline-devel)
+makedepends="autoconf automake $(vopt_if readline readline-devel)
  $(vopt_if libedit libedit-devel)"
 short_desc="Alternative implementation of the plan 9 rc shell"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Zlib"
-homepage="http://tobold.org/article/rc"
-distfiles="http://static.tobold.org/$pkgname/$pkgname-$version.tar.gz"
-checksum=5ed26334dd0c1a616248b15ad7c90ca678ae3066fa02c5ddd0e6936f9af9bfd8
+homepage="https://github.com/rakitzis/rc"
+distfiles="https://github.com/rakitzis/rc/archive/refs/tags/v${version}.tar.gz"
+checksum=0b83f8698dd8ef44ca97b25c4748c087133f53c7fff39b6b70dab65931def8b0
 register_shell="/bin/rc"
 
 build_options="readline libedit static"
@@ -24,6 +24,7 @@ pre_configure() {
 		CFLAGS+=" -static"
 		LDFLAGS+=" -static"
 	fi
+	sh bootstrap
 }
 
 pre_build() {

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

* Re: [PR PATCH] [Updated] rc: fix dead links
  2021-09-08  8:21 [PR PATCH] rc: fix dead links meator
@ 2021-09-08  9:40 ` meator
  2021-09-08  9:53 ` leahneukirchen
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: meator @ 2021-09-08  9:40 UTC (permalink / raw)
  To: ml

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

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

https://github.com/meator/void-packages rc
https://github.com/void-linux/void-packages/pull/32875

rc: fix dead links
<!-- Mark items with [x] where applicable -->
`rc` seems pretty dead now. `tobold.org` and `static.tobold.org` are down. I have tried to contact the author, but his email seems to be down too. This package should maybe be removed rather than fixed.

This PR fixes dead links and modifies the build process.

@leahneukirchen I'm pinging you since you are the maintainer of `rc`. Do you have any comment on this?
#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

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

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

From 557293c171a86c5dfe2a63178b33f7f51192cb84 Mon Sep 17 00:00:00 2001
From: meator <meator.dev@gmail.com>
Date: Wed, 8 Sep 2021 09:45:47 +0200
Subject: [PATCH] rc: fix dead links

---
 srcpkgs/rc/template | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/rc/template b/srcpkgs/rc/template
index 9b5cce9066ff..f72e031f259e 100644
--- a/srcpkgs/rc/template
+++ b/srcpkgs/rc/template
@@ -6,14 +6,15 @@ build_style=gnu-configure
 configure_args="ac_cv_sys_restartable_syscalls=no
  $(vopt_if readline --with-edit=gnu)
  $(vopt_if libedit --with-edit=bsd)"
+hostmakedepends="autoconf automake"
 makedepends="$(vopt_if readline readline-devel)
  $(vopt_if libedit libedit-devel)"
 short_desc="Alternative implementation of the plan 9 rc shell"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Zlib"
-homepage="http://tobold.org/article/rc"
-distfiles="http://static.tobold.org/$pkgname/$pkgname-$version.tar.gz"
-checksum=5ed26334dd0c1a616248b15ad7c90ca678ae3066fa02c5ddd0e6936f9af9bfd8
+homepage="https://github.com/rakitzis/rc"
+distfiles="https://github.com/rakitzis/rc/archive/refs/tags/v${version}.tar.gz"
+checksum=0b83f8698dd8ef44ca97b25c4748c087133f53c7fff39b6b70dab65931def8b0
 register_shell="/bin/rc"
 
 build_options="readline libedit static"
@@ -24,6 +25,7 @@ pre_configure() {
 		CFLAGS+=" -static"
 		LDFLAGS+=" -static"
 	fi
+	sh bootstrap
 }
 
 pre_build() {

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

* Re: rc: fix dead links
  2021-09-08  8:21 [PR PATCH] rc: fix dead links meator
  2021-09-08  9:40 ` [PR PATCH] [Updated] " meator
@ 2021-09-08  9:53 ` leahneukirchen
  2021-09-12 16:27 ` leahneukirchen
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: leahneukirchen @ 2021-09-08  9:53 UTC (permalink / raw)
  To: ml

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

New comment by leahneukirchen on void-packages repository

https://github.com/void-linux/void-packages/pull/32875#issuecomment-915093298

Comment:
Moving to rakitzis/rc sounds good, this seems to be the canonical upstream repo. The README there also contains a way to contact Toby that should work.

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

* Re: rc: fix dead links
  2021-09-08  8:21 [PR PATCH] rc: fix dead links meator
  2021-09-08  9:40 ` [PR PATCH] [Updated] " meator
  2021-09-08  9:53 ` leahneukirchen
@ 2021-09-12 16:27 ` leahneukirchen
  2021-09-12 16:42 ` [PR PATCH] [Updated] " meator
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: leahneukirchen @ 2021-09-12 16:27 UTC (permalink / raw)
  To: ml

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

New comment by leahneukirchen on void-packages repository

https://github.com/void-linux/void-packages/pull/32875#issuecomment-917667166

Comment:
Need to bump revision and automake already depends on autoconf, it's enough.

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

* Re: [PR PATCH] [Updated] rc: fix dead links
  2021-09-08  8:21 [PR PATCH] rc: fix dead links meator
                   ` (2 preceding siblings ...)
  2021-09-12 16:27 ` leahneukirchen
@ 2021-09-12 16:42 ` meator
  2021-09-12 16:42 ` meator
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: meator @ 2021-09-12 16:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/meator/void-packages rc
https://github.com/void-linux/void-packages/pull/32875

rc: fix dead links
<!-- Mark items with [x] where applicable -->
`rc` seems pretty dead now. `tobold.org` and `static.tobold.org` are down. I have tried to contact the author, but his email seems to be down too. This package should maybe be removed rather than fixed.

This PR fixes dead links and modifies the build process.

@leahneukirchen I'm pinging you since you are the maintainer of `rc`. Do you have any comment on this?
#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

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

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

From 3cd0f7ad880fb75b21626985ed4843f92d1b6134 Mon Sep 17 00:00:00 2001
From: meator <meator.dev@gmail.com>
Date: Wed, 8 Sep 2021 09:45:47 +0200
Subject: [PATCH] rc: fix dead links

---
 srcpkgs/rc/template | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/rc/template b/srcpkgs/rc/template
index 9b5cce9066ff..349abee18a14 100644
--- a/srcpkgs/rc/template
+++ b/srcpkgs/rc/template
@@ -6,14 +6,15 @@ build_style=gnu-configure
 configure_args="ac_cv_sys_restartable_syscalls=no
  $(vopt_if readline --with-edit=gnu)
  $(vopt_if libedit --with-edit=bsd)"
+hostmakedepends="automake"
 makedepends="$(vopt_if readline readline-devel)
  $(vopt_if libedit libedit-devel)"
 short_desc="Alternative implementation of the plan 9 rc shell"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Zlib"
-homepage="http://tobold.org/article/rc"
-distfiles="http://static.tobold.org/$pkgname/$pkgname-$version.tar.gz"
-checksum=5ed26334dd0c1a616248b15ad7c90ca678ae3066fa02c5ddd0e6936f9af9bfd8
+homepage="https://github.com/rakitzis/rc"
+distfiles="https://github.com/rakitzis/rc/archive/refs/tags/v${version}.tar.gz"
+checksum=0b83f8698dd8ef44ca97b25c4748c087133f53c7fff39b6b70dab65931def8b0
 register_shell="/bin/rc"
 
 build_options="readline libedit static"
@@ -24,6 +25,7 @@ pre_configure() {
 		CFLAGS+=" -static"
 		LDFLAGS+=" -static"
 	fi
+	sh bootstrap
 }
 
 pre_build() {

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

* Re: rc: fix dead links
  2021-09-08  8:21 [PR PATCH] rc: fix dead links meator
                   ` (3 preceding siblings ...)
  2021-09-12 16:42 ` [PR PATCH] [Updated] " meator
@ 2021-09-12 16:42 ` meator
  2021-09-12 16:48 ` ericonr
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: meator @ 2021-09-12 16:42 UTC (permalink / raw)
  To: ml

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

New comment by meator on void-packages repository

https://github.com/void-linux/void-packages/pull/32875#issuecomment-917669549

Comment:
> Need to bump revision

Why?

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

* Re: rc: fix dead links
  2021-09-08  8:21 [PR PATCH] rc: fix dead links meator
                   ` (4 preceding siblings ...)
  2021-09-12 16:42 ` meator
@ 2021-09-12 16:48 ` ericonr
  2021-09-12 17:05 ` [PR PATCH] [Updated] " meator
  2021-09-12 17:12 ` [PR PATCH] [Merged]: " leahneukirchen
  7 siblings, 0 replies; 9+ messages in thread
From: ericonr @ 2021-09-12 16:48 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/32875#issuecomment-917670314

Comment:
So the package in repos receives the updated metadata information.

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

* Re: [PR PATCH] [Updated] rc: fix dead links
  2021-09-08  8:21 [PR PATCH] rc: fix dead links meator
                   ` (5 preceding siblings ...)
  2021-09-12 16:48 ` ericonr
@ 2021-09-12 17:05 ` meator
  2021-09-12 17:12 ` [PR PATCH] [Merged]: " leahneukirchen
  7 siblings, 0 replies; 9+ messages in thread
From: meator @ 2021-09-12 17:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/meator/void-packages rc
https://github.com/void-linux/void-packages/pull/32875

rc: fix dead links
<!-- Mark items with [x] where applicable -->
`rc` seems pretty dead now. `tobold.org` and `static.tobold.org` are down. I have tried to contact the author, but his email seems to be down too. This package should maybe be removed rather than fixed.

This PR fixes dead links and modifies the build process.

@leahneukirchen I'm pinging you since you are the maintainer of `rc`. Do you have any comment on this?
#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

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

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

From aa2a040833fe1b3ba66ee0d31a22f5ab7d87840e Mon Sep 17 00:00:00 2001
From: meator <meator.dev@gmail.com>
Date: Wed, 8 Sep 2021 09:45:47 +0200
Subject: [PATCH] rc: fix dead links

---
 srcpkgs/rc/template | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/rc/template b/srcpkgs/rc/template
index 9b5cce9066ff..12d2169be111 100644
--- a/srcpkgs/rc/template
+++ b/srcpkgs/rc/template
@@ -1,19 +1,20 @@
 # Template file for 'rc'
 pkgname=rc
 version=1.7.4
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="ac_cv_sys_restartable_syscalls=no
  $(vopt_if readline --with-edit=gnu)
  $(vopt_if libedit --with-edit=bsd)"
+hostmakedepends="automake"
 makedepends="$(vopt_if readline readline-devel)
  $(vopt_if libedit libedit-devel)"
 short_desc="Alternative implementation of the plan 9 rc shell"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Zlib"
-homepage="http://tobold.org/article/rc"
-distfiles="http://static.tobold.org/$pkgname/$pkgname-$version.tar.gz"
-checksum=5ed26334dd0c1a616248b15ad7c90ca678ae3066fa02c5ddd0e6936f9af9bfd8
+homepage="https://github.com/rakitzis/rc"
+distfiles="https://github.com/rakitzis/rc/archive/refs/tags/v${version}.tar.gz"
+checksum=0b83f8698dd8ef44ca97b25c4748c087133f53c7fff39b6b70dab65931def8b0
 register_shell="/bin/rc"
 
 build_options="readline libedit static"
@@ -24,6 +25,7 @@ pre_configure() {
 		CFLAGS+=" -static"
 		LDFLAGS+=" -static"
 	fi
+	sh bootstrap
 }
 
 pre_build() {

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

* Re: [PR PATCH] [Merged]: rc: fix dead links
  2021-09-08  8:21 [PR PATCH] rc: fix dead links meator
                   ` (6 preceding siblings ...)
  2021-09-12 17:05 ` [PR PATCH] [Updated] " meator
@ 2021-09-12 17:12 ` leahneukirchen
  7 siblings, 0 replies; 9+ messages in thread
From: leahneukirchen @ 2021-09-12 17:12 UTC (permalink / raw)
  To: ml

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

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

rc: fix dead links
https://github.com/void-linux/void-packages/pull/32875

Description:
<!-- Mark items with [x] where applicable -->
`rc` seems pretty dead now. `tobold.org` and `static.tobold.org` are down. I have tried to contact the author, but his email seems to be down too. This package should maybe be removed rather than fixed.

This PR fixes dead links and modifies the build process.

@leahneukirchen I'm pinging you since you are the maintainer of `rc`. Do you have any comment on this?
#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

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

end of thread, other threads:[~2021-09-12 17:12 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-08  8:21 [PR PATCH] rc: fix dead links meator
2021-09-08  9:40 ` [PR PATCH] [Updated] " meator
2021-09-08  9:53 ` leahneukirchen
2021-09-12 16:27 ` leahneukirchen
2021-09-12 16:42 ` [PR PATCH] [Updated] " meator
2021-09-12 16:42 ` meator
2021-09-12 16:48 ` ericonr
2021-09-12 17:05 ` [PR PATCH] [Updated] " meator
2021-09-12 17:12 ` [PR PATCH] [Merged]: " 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).