Skip to content
Snippets Groups Projects
Commit 04cf74bb authored by Jaroslav Lichtblau's avatar Jaroslav Lichtblau
Browse files

- new upstream release

parent b70ee431
No related branches found
No related tags found
No related merge requests found
...@@ -5,14 +5,15 @@ ...@@ -5,14 +5,15 @@
# Contributor: korjjj <korjjj+aur@gmail.com> # Contributor: korjjj <korjjj+aur@gmail.com>
pkgname=syncthing pkgname=syncthing
pkgver=0.11.26 pkgver=0.12.0
pkgrel=1 pkgrel=1
pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing" pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
arch=('i686' 'x86_64')
url="http://syncthing.net/" url="http://syncthing.net/"
license=('MPL') license=('MPL')
arch=('i686' 'x86_64')
depends=('glibc') depends=('glibc')
makedepends=('git' 'go' 'godep' 'inetutils' 'sed') makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
install=$pkgname.install
source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver}) source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver})
sha1sums=('SKIP') sha1sums=('SKIP')
...@@ -37,7 +38,7 @@ build() { ...@@ -37,7 +38,7 @@ build() {
check() { check() {
export GOPATH="${srcdir}" export GOPATH="${srcdir}"
cd "${srcdir}/src/github.com/syncthing/${pkgname}" cd "${srcdir}/src/github.com/syncthing/${pkgname}"
# go run build.go -no-upgrade test #go run build.go -no-upgrade test
} }
package() { package() {
......
post_upgrade() {
if (( "$(vercmp $2 0.12.0-1)" < 0 )); then
cat << EOF
This is the first release on the new major v0.12 branch. It is not
compatible with the v0.11.x releases! Use this release if you are
a new user, or when you are ready to upgrade all devices in your cluster.
Full information is available on the release page
https://forum.syncthing.net/t/syncthing-v0-12-0-beryllium-bedbug/6026
EOF
fi
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment