diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2018-01-13 01:45:37 +0000 |
---|---|---|
committer | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2018-01-13 01:45:39 +0000 |
commit | dc9e2a45e01f56d691ee35591f389977b212c9a6 (patch) | |
tree | f7f94af5b7173ea52f6846ba6b0beb7cf24536ea /community/syncthing | |
parent | 01262d263efcc0f1a5f80183bf37619e62d4c5f4 (diff) | |
download | aports-dc9e2a45e01f56d691ee35591f389977b212c9a6.tar.bz2 aports-dc9e2a45e01f56d691ee35591f389977b212c9a6.tar.xz |
community/syncthing: upgrade to 0.14.43
Also remove a patch that is already applied upstream.
Diffstat (limited to 'community/syncthing')
-rw-r--r-- | community/syncthing/APKBUILD | 8 | ||||
-rw-r--r-- | community/syncthing/enable-generic-build-on-s390x.patch | 36 |
2 files changed, 3 insertions, 41 deletions
diff --git a/community/syncthing/APKBUILD b/community/syncthing/APKBUILD index 6a75f26c11..7518560655 100644 --- a/community/syncthing/APKBUILD +++ b/community/syncthing/APKBUILD @@ -3,7 +3,7 @@ # Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net> # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=syncthing -pkgver=0.14.42 +pkgver=0.14.43 pkgrel=0 pkgdesc="Open Source Continuous File Synchronization" url="https://syncthing.net/" @@ -18,7 +18,6 @@ subpackages="$pkgname-utils" source="$pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/v$pkgver.tar.gz $pkgname.initd only-test-with-race-when-provided.patch - enable-generic-build-on-s390x.patch " builddir="$srcdir/src/github.com/$pkgname/$pkgname" @@ -57,7 +56,6 @@ utils() { done } -sha512sums="0704ded365e0d0c3da5264d55dcb4a0a5b2c1439d1c1c784afc5b2448d1022b14b3cfb38eae54d5a9f4a7e9a330e4e0123e6ae8fe39a2fe3df07342c5a074703 syncthing-0.14.42.tar.gz +sha512sums="3e1867fc1a012713ec2872ce4e3c27fa7967b498fb0342942c6963caad33c2f018700d6b99e669fd4a31deddeb1359fb27390313b890b4e08cca06b7857e069b syncthing-0.14.43.tar.gz 7fe49210180827c28f3ee9a1a95da3884dbef34de9bdc643f4455c9a056adba81f16c1c6ac059e83bee360aea091ace98b8a6f4c4b26a32c450f61f15206d3f5 syncthing.initd -3fd2b699e07891ae16c67af56d516ba0fde13d5e5d067dd680fc59f9fc5b2f7c5f685b040841588cca6de1f7fb4b094572e5eb73dda8ab30d4b2994d3f526047 only-test-with-race-when-provided.patch -5dec62fc0555e298a1be4aede02dde3b407e8d4adbddc5d82d6dcd2f761f3b3eed7b71de51ab08efd185b84c9706fdb9e26a1086474623eb52b344cc793cf876 enable-generic-build-on-s390x.patch" +3fd2b699e07891ae16c67af56d516ba0fde13d5e5d067dd680fc59f9fc5b2f7c5f685b040841588cca6de1f7fb4b094572e5eb73dda8ab30d4b2994d3f526047 only-test-with-race-when-provided.patch" diff --git a/community/syncthing/enable-generic-build-on-s390x.patch b/community/syncthing/enable-generic-build-on-s390x.patch deleted file mode 100644 index a2207c7bcd..0000000000 --- a/community/syncthing/enable-generic-build-on-s390x.patch +++ /dev/null @@ -1,36 +0,0 @@ -From c1b8c15f920f33755fece096e71338332bdef820 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Dan=20Hor=C3=A1k?= <dan@danny.cz> -Date: Mon, 24 Apr 2017 14:08:56 +0200 -Subject: [PATCH] enable generic build on s390x - ---- - cpuid_other.go | 2 +- - sha256block_other.go | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/cpuid_other.go b/cpuid_other.go -index 203588c..e26952a 100644 ---- a/vendor/github.com/minio/sha256-simd/cpuid_other.go -+++ b/vendor/github.com/minio/sha256-simd/cpuid_other.go -@@ -13,7 +13,7 @@ - // limitations under the License. - // - --// +build ppc64 ppc64le mips mipsle mips64 mips64le -+// +build ppc64 ppc64le mips mipsle mips64 mips64le s390x - - package sha256 - -diff --git a/sha256block_other.go b/sha256block_other.go -index 00a3488..38e7403 100644 ---- a/vendor/github.com/minio/sha256-simd/sha256block_other.go -+++ b/vendor/github.com/minio/sha256-simd/sha256block_other.go -@@ -13,7 +13,7 @@ - // limitations under the License. - // - --// +build ppc64 ppc64le mips mipsle mips64 mips64le -+// +build ppc64 ppc64le mips mipsle mips64 mips64le s390x - - package sha256 - |