Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Timothée Floure
aports
Commits
d6fb007e
Commit
d6fb007e
authored
Jul 26, 2018
by
Roberto Oliveira
Browse files
community/syncthing: upgrade to 0.14.49
parent
dc3bbf79
Changes
2
Hide whitespace changes
Inline
Side-by-side
community/syncthing/APKBUILD
View file @
d6fb007e
...
...
@@ -3,8 +3,8 @@
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname
=
syncthing
pkgver
=
0.14.4
8
pkgrel
=
1
pkgver
=
0.14.4
9
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.4
8
.tar.gz
sha512sums
=
"
7a9974e0d45582c5f184165456ea8fcaca0f7ba07a01b9f8eb2de1e1f0410ca36dc978ddde9c725a2b9d08bae8286fc2ce67595a0e510cbfe22fde9cdd9fc694
syncthing-0.14.4
9
.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"
community/syncthing/correct_block_size_calculation_on_32_bits.patch
deleted
100644 → 0
View file @
dc3bbf79
--- a/lib/protocol/protocol.go
+++ b/lib/protocol/protocol.go
Author: Jakob Borg <jakob@kastelo.net>
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
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment