From d6fb007e21aee6364940abbfcf9acc852c32a182 Mon Sep 17 00:00:00 2001 From: Roberto Oliveira Date: Thu, 26 Jul 2018 17:49:53 +0000 Subject: community/syncthing: upgrade to 0.14.49 --- community/syncthing/APKBUILD | 10 ++++------ .../correct_block_size_calculation_on_32_bits.patch | 15 --------------- 2 files changed, 4 insertions(+), 21 deletions(-) delete mode 100644 community/syncthing/correct_block_size_calculation_on_32_bits.patch diff --git a/community/syncthing/APKBUILD b/community/syncthing/APKBUILD index b6d62a5f0d..c2c1679924 100644 --- a/community/syncthing/APKBUILD +++ b/community/syncthing/APKBUILD @@ -3,8 +3,8 @@ # Contributor: Sören Tempel # Maintainer: Natanael Copa pkgname=syncthing -pkgver=0.14.48 -pkgrel=1 +pkgver=0.14.49 +pkgrel=0 pkgdesc="Open Source Continuous File Synchronization" url="https://syncthing.net/" arch="all !armhf" @@ -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 - correct_block_size_calculation_on_32_bits.patch " builddir="$srcdir/src/github.com/$pkgname/$pkgname" @@ -57,7 +56,6 @@ utils() { done } -sha512sums="a779ae6b25ca0b47536bdf7ed968a18e1ba294c67b1a8e75f98a112ce470853cc5d0147fdad8420d2595f983b1457f16cd642e0a1bc1a1b16d8c5672c2f1fa6a syncthing-0.14.48.tar.gz +sha512sums="7a9974e0d45582c5f184165456ea8fcaca0f7ba07a01b9f8eb2de1e1f0410ca36dc978ddde9c725a2b9d08bae8286fc2ce67595a0e510cbfe22fde9cdd9fc694 syncthing-0.14.49.tar.gz 7fe49210180827c28f3ee9a1a95da3884dbef34de9bdc643f4455c9a056adba81f16c1c6ac059e83bee360aea091ace98b8a6f4c4b26a32c450f61f15206d3f5 syncthing.initd -3fd2b699e07891ae16c67af56d516ba0fde13d5e5d067dd680fc59f9fc5b2f7c5f685b040841588cca6de1f7fb4b094572e5eb73dda8ab30d4b2994d3f526047 only-test-with-race-when-provided.patch -d4ef3ca7cc4f1e14c1127b16fd3a00913ed9a20bbf0a1caf4aa79a96edc4c3d7b80fc256e409bb2d920d3239b64777c9e97455a9b3b22a07661c7bd91619fa13 correct_block_size_calculation_on_32_bits.patch" +3fd2b699e07891ae16c67af56d516ba0fde13d5e5d067dd680fc59f9fc5b2f7c5f685b040841588cca6de1f7fb4b094572e5eb73dda8ab30d4b2994d3f526047 only-test-with-race-when-provided.patch" diff --git a/community/syncthing/correct_block_size_calculation_on_32_bits.patch b/community/syncthing/correct_block_size_calculation_on_32_bits.patch deleted file mode 100644 index db0e898817..0000000000 --- a/community/syncthing/correct_block_size_calculation_on_32_bits.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- a/lib/protocol/protocol.go -+++ b/lib/protocol/protocol.go -Author: Jakob Borg -Date: Wed Jun 6 09:59:33 2018 +0200 - - lib/protocol: Correct block size calculation on 32 bit archs (fixes #4990) (#4991) -@@ -54,7 +54,7 @@ - func BlockSize(fileSize int64) int { - var blockSize int - for _, blockSize = range BlockSizes { -- if fileSize < int64(DesiredPerFileBlocks*blockSize) { -+ if fileSize < DesiredPerFileBlocks*int64(blockSize) { - break - } - } -- cgit v1.2.3