summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2020-06-20 03:20:59 +0200
committerLars Wendler <polynomial-c@gentoo.org>2020-06-20 03:28:09 +0200
commit9f8b0a10cde068cb69c2714a61b5f8d00e96ea99 (patch)
treec9944b9cc17f7e25463e5be46149d0b7fc01d6de /net-misc/rsync/files
parentdev-lua/lua-openssl: drop vulnerable (diff)
downloadgentoo-9f8b0a10cde068cb69c2714a61b5f8d00e96ea99.tar.gz
gentoo-9f8b0a10cde068cb69c2714a61b5f8d00e96ea99.tar.bz2
gentoo-9f8b0a10cde068cb69c2714a61b5f8d00e96ea99.zip
net-misc/rsync: Bump to version 3.2.0. Removed old
Bug: https://bugs.gentoo.org/728852 Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'net-misc/rsync/files')
-rw-r--r--net-misc/rsync/files/rsync-3.2.0-simd_check.patch24
-rw-r--r--net-misc/rsync/files/rsync-3.2.0_pre3-simd_check.patch24
2 files changed, 24 insertions, 24 deletions
diff --git a/net-misc/rsync/files/rsync-3.2.0-simd_check.patch b/net-misc/rsync/files/rsync-3.2.0-simd_check.patch
new file mode 100644
index 000000000000..db3ee83dc0d0
--- /dev/null
+++ b/net-misc/rsync/files/rsync-3.2.0-simd_check.patch
@@ -0,0 +1,24 @@
+https://github.com/WayneD/rsync/pull/24
+
+--- rsync-3.2.0/configure.ac 2020-06-19 23:11:01.000000000 +0200
++++ rsync-3.2.0/configure.ac 2020-06-19 23:11:01.000000000 +0200
+@@ -207,7 +207,7 @@
+ if test x"$CXX" != x""; then
+ CXX_VERSION=`$CXX --version 2>/dev/null | head -n 1`
+ case "$CXX_VERSION" in
+- g++*)
++ *g++*)
+ CXX_VERSION=`$CXX -dumpversion | sed 's/\..*//g'`
+ if test "$CXX_VERSION" -ge "5"; then
+ CXX_OK=yes
+--- rsync-3.2.0/configure.sh 2020-06-19 23:11:01.000000000 +0200
++++ rsync-3.2.0/configure.sh 2020-06-19 23:11:01.000000000 +0200
+@@ -4889,7 +4889,7 @@
+ if test x"$CXX" != x""; then
+ CXX_VERSION=`$CXX --version 2>/dev/null | head -n 1`
+ case "$CXX_VERSION" in
+- g++*)
++ *g++*)
+ CXX_VERSION=`$CXX -dumpversion | sed 's/\..*//g'`
+ if test "$CXX_VERSION" -ge "5"; then
+ CXX_OK=yes
diff --git a/net-misc/rsync/files/rsync-3.2.0_pre3-simd_check.patch b/net-misc/rsync/files/rsync-3.2.0_pre3-simd_check.patch
deleted file mode 100644
index 1d50c95b00d2..000000000000
--- a/net-misc/rsync/files/rsync-3.2.0_pre3-simd_check.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-https://github.com/WayneD/rsync/issues/19
-
---- rsync-3.2.0pre3/configure.ac 2020-06-17 19:12:09.000000000 +0200
-+++ rsync-3.2.0pre3/configure.ac 2020-06-17 19:12:09.000000000 +0200
-@@ -202,7 +202,7 @@
- if test x"$enable_simd" = x"yes"; then
- # For x86-64 SIMD, g++ is also required
- if test x"$build_cpu" = x"x86_64"; then
-- if test x"$CXX" = x"g++"; then
-+ if echo "$CXX" | grep -q 'g++$'; then
- # AC_MSG_RESULT() called below
- SIMD="$SIMD x86_64"
- else
---- rsync-3.2.0pre3/configure.sh 2020-06-17 19:12:09.000000000 +0200
-+++ rsync-3.2.0pre3/configure.sh 2020-06-17 19:12:09.000000000 +0200
-@@ -4842,7 +4842,7 @@
- if test x"$enable_simd" = x"yes"; then
- # For x86-64 SIMD, g++ is also required
- if test x"$build_cpu" = x"x86_64"; then
-- if test x"$CXX" = x"g++"; then
-+ if echo "$CXX" | grep -q 'g++$'; then
- # AC_MSG_RESULT() called below
- SIMD="$SIMD x86_64"
- else