Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] rsync: fix IPv6 on musl
@ 2020-12-04  9:31 paper42
  2020-12-04 13:24 ` [PR REVIEW] " ericonr
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: paper42 @ 2020-12-04  9:31 UTC (permalink / raw)
  To: ml

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

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

https://github.com/paper42/void-packages 0001-rsync-fix-IPv6-on-musl.patch
https://github.com/void-linux/void-packages/pull/26937

rsync: fix IPv6 on musl
close: #26796

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-0001-rsync-fix-IPv6-on-musl.patch-26937.patch --]
[-- Type: text/x-diff, Size: 1390 bytes --]

From 9f09910f6e896b8c468a24cdadec36f13282a7bf Mon Sep 17 00:00:00 2001
From: Paper <paper@tilde.institute>
Date: Fri, 4 Dec 2020 10:30:23 +0100
Subject: [PATCH] rsync: fix IPv6 on musl

close: #26796
---
 srcpkgs/rsync/template | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/rsync/template b/srcpkgs/rsync/template
index e95260cec74..2bd9d8f7cbc 100644
--- a/srcpkgs/rsync/template
+++ b/srcpkgs/rsync/template
@@ -1,7 +1,7 @@
 # Template file for 'rsync'
 pkgname=rsync
 version=3.2.3
-revision=1
+revision=2
 build_style=gnu-configure
 conf_files="/etc/rsyncd.conf"
 hostmakedepends="perl"
@@ -10,11 +10,14 @@ makedepends="zlib-devel acl-devel popt-devel xxHash-devel liblz4-devel
 short_desc="Remote fast incremental file transfer tool"
 maintainer="Lugubris <lugubris@disroot.org>"
 license="GPL-3.0-only"
-homepage="http://samba.anu.edu.au/rsync/"
+homepage="https://rsync.samba.org/"
 changelog="https://download.samba.org/pub/rsync/NEWS"
-distfiles="http://www.samba.org/ftp/rsync/src/rsync-$version.tar.gz"
+distfiles="https://www.samba.org/ftp/rsync/src/rsync-$version.tar.gz"
 checksum=becc3c504ceea499f4167a260040ccf4d9f2ef9499ad5683c179a697146ce50e
 
+# Force enable IPv6 on musl - upstream bug https://bugzilla.samba.org/show_bug.cgi?id=10715
+CFLAGS="$CFLAGS -DINET6"
+
 if [ "$CROSS_BUILD" ]; then
 	configure_args=" --disable-simd"
 fi

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

* Re: [PR REVIEW] rsync: fix IPv6 on musl
  2020-12-04  9:31 [PR PATCH] rsync: fix IPv6 on musl paper42
@ 2020-12-04 13:24 ` ericonr
  2020-12-04 14:11 ` pullmoll
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: ericonr @ 2020-12-04 13:24 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/26937#discussion_r536096262

Comment:
You can set `CFLAGS="-DINET6"` directly.

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

* Re: rsync: fix IPv6 on musl
  2020-12-04  9:31 [PR PATCH] rsync: fix IPv6 on musl paper42
  2020-12-04 13:24 ` [PR REVIEW] " ericonr
@ 2020-12-04 14:11 ` pullmoll
  2020-12-04 17:29 ` [PR PATCH] [Updated] " paper42
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pullmoll @ 2020-12-04 14:11 UTC (permalink / raw)
  To: ml

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

New comment by pullmoll on void-packages repository

https://github.com/void-linux/void-packages/pull/26937#issuecomment-738804986

Comment:
Ouch. I never actually tested whether rsync supports / uses IPv6 despite using it everywhere and all the time.

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

* Re: [PR PATCH] [Updated] rsync: fix IPv6 on musl
  2020-12-04  9:31 [PR PATCH] rsync: fix IPv6 on musl paper42
  2020-12-04 13:24 ` [PR REVIEW] " ericonr
  2020-12-04 14:11 ` pullmoll
@ 2020-12-04 17:29 ` paper42
  2020-12-04 17:30 ` [PR REVIEW] " paper42
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: paper42 @ 2020-12-04 17:29 UTC (permalink / raw)
  To: ml

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

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

https://github.com/paper42/void-packages 0001-rsync-fix-IPv6-on-musl.patch
https://github.com/void-linux/void-packages/pull/26937

rsync: fix IPv6 on musl
close: #26796

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-0001-rsync-fix-IPv6-on-musl.patch-26937.patch --]
[-- Type: text/x-diff, Size: 1382 bytes --]

From 3b3b5c71cee136a1ff8dccc4c62d8cabdd545eb3 Mon Sep 17 00:00:00 2001
From: Paper <paper@tilde.institute>
Date: Fri, 4 Dec 2020 10:30:23 +0100
Subject: [PATCH] rsync: fix IPv6 on musl

close: #26796
---
 srcpkgs/rsync/template | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/rsync/template b/srcpkgs/rsync/template
index e95260cec74..15815f9725d 100644
--- a/srcpkgs/rsync/template
+++ b/srcpkgs/rsync/template
@@ -1,7 +1,7 @@
 # Template file for 'rsync'
 pkgname=rsync
 version=3.2.3
-revision=1
+revision=2
 build_style=gnu-configure
 conf_files="/etc/rsyncd.conf"
 hostmakedepends="perl"
@@ -10,11 +10,14 @@ makedepends="zlib-devel acl-devel popt-devel xxHash-devel liblz4-devel
 short_desc="Remote fast incremental file transfer tool"
 maintainer="Lugubris <lugubris@disroot.org>"
 license="GPL-3.0-only"
-homepage="http://samba.anu.edu.au/rsync/"
+homepage="https://rsync.samba.org/"
 changelog="https://download.samba.org/pub/rsync/NEWS"
-distfiles="http://www.samba.org/ftp/rsync/src/rsync-$version.tar.gz"
+distfiles="https://www.samba.org/ftp/rsync/src/rsync-$version.tar.gz"
 checksum=becc3c504ceea499f4167a260040ccf4d9f2ef9499ad5683c179a697146ce50e
 
+# Force enable IPv6 on musl - upstream bug https://bugzilla.samba.org/show_bug.cgi?id=10715
+CFLAGS="-DINET6"
+
 if [ "$CROSS_BUILD" ]; then
 	configure_args=" --disable-simd"
 fi

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

* Re: [PR REVIEW] rsync: fix IPv6 on musl
  2020-12-04  9:31 [PR PATCH] rsync: fix IPv6 on musl paper42
                   ` (2 preceding siblings ...)
  2020-12-04 17:29 ` [PR PATCH] [Updated] " paper42
@ 2020-12-04 17:30 ` paper42
  2020-12-04 17:50 ` ericonr
  2020-12-04 17:51 ` [PR PATCH] [Merged]: " ericonr
  5 siblings, 0 replies; 7+ messages in thread
From: paper42 @ 2020-12-04 17:30 UTC (permalink / raw)
  To: ml

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

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/26937#discussion_r536260059

Comment:
thanks

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

* Re: rsync: fix IPv6 on musl
  2020-12-04  9:31 [PR PATCH] rsync: fix IPv6 on musl paper42
                   ` (3 preceding siblings ...)
  2020-12-04 17:30 ` [PR REVIEW] " paper42
@ 2020-12-04 17:50 ` ericonr
  2020-12-04 17:51 ` [PR PATCH] [Merged]: " ericonr
  5 siblings, 0 replies; 7+ messages in thread
From: ericonr @ 2020-12-04 17:50 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/26937#issuecomment-738925176

Comment:
Thanks!

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

* Re: [PR PATCH] [Merged]: rsync: fix IPv6 on musl
  2020-12-04  9:31 [PR PATCH] rsync: fix IPv6 on musl paper42
                   ` (4 preceding siblings ...)
  2020-12-04 17:50 ` ericonr
@ 2020-12-04 17:51 ` ericonr
  5 siblings, 0 replies; 7+ messages in thread
From: ericonr @ 2020-12-04 17:51 UTC (permalink / raw)
  To: ml

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

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

rsync: fix IPv6 on musl
https://github.com/void-linux/void-packages/pull/26937

Description:
close: #26796

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

end of thread, other threads:[~2020-12-04 17:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-04  9:31 [PR PATCH] rsync: fix IPv6 on musl paper42
2020-12-04 13:24 ` [PR REVIEW] " ericonr
2020-12-04 14:11 ` pullmoll
2020-12-04 17:29 ` [PR PATCH] [Updated] " paper42
2020-12-04 17:30 ` [PR REVIEW] " paper42
2020-12-04 17:50 ` ericonr
2020-12-04 17:51 ` [PR PATCH] [Merged]: " ericonr

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