[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2019-08-15 Thread Jaroslav Lichtblau via arch-commits
Date: Thursday, August 15, 2019 @ 18:28:43
  Author: jlichtblau
Revision: 499609

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 499608, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 499608, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 499608, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 499608, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 499608, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  186 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-15 18:28:19 UTC (rev 499608)
+++ PKGBUILD2019-08-15 18:28:43 UTC (rev 499609)
@@ -1,93 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=1.2.1
-pkgrel=1
-arch=('x86_64')
-url="https://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-# options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('313bd59ddc2562e833fc4caa8d90360a06d5ff02976c0a4d5d42393e6f8bceac'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2019-08-06 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 6, 2019 @ 17:26:36
  Author: jlichtblau
Revision: 497903

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 497902, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 497902, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 497902, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 497902, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 497902, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  186 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-06 17:26:23 UTC (rev 497902)
+++ PKGBUILD2019-08-06 17:26:36 UTC (rev 497903)
@@ -1,93 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=1.2.0
-pkgrel=1
-arch=('x86_64')
-url="https://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-# options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('0339877effdcf3bf8aa7d4d1e50b878992792e4752ff778f27788bf71eccecd0'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2019-07-09 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, July 9, 2019 @ 17:18:44
  Author: jlichtblau
Revision: 488291

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 488290, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 488290, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 488290, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 488290, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 488290, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  186 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-09 17:18:31 UTC (rev 488290)
+++ PKGBUILD2019-07-09 17:18:44 UTC (rev 488291)
@@ -1,93 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=1.1.4
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-# options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('d464884bfd92eac2f2dbc835c740ea7d5bd9e6ebd0bca7cda49682b0da4e6b5e'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2019-06-04 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, June 4, 2019 @ 19:31:45
  Author: jlichtblau
Revision: 476889

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 476888, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 476888, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 476888, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 476888, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 476888, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  186 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-04 19:31:25 UTC (rev 476888)
+++ PKGBUILD2019-06-04 19:31:45 UTC (rev 476889)
@@ -1,93 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=1.1.3
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-# options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('d8d6b256e21a9db4be0453522206f044d4e54da15bd1d96a2624085948252a3d'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2019-05-08 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, May 8, 2019 @ 19:53:35
  Author: jlichtblau
Revision: 463214

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 463213, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 463213, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 463213, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 463213, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 463213, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  186 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-08 19:53:03 UTC (rev 463213)
+++ PKGBUILD2019-05-08 19:53:35 UTC (rev 463214)
@@ -1,93 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=1.1.1
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-# options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('a796583c12894765394be38e8de858705491dc674289bb6936e68aeb4be23477'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2019-04-08 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 8, 2019 @ 19:00:22
  Author: jlichtblau
Revision: 450441

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 450440, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 450440, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 450440, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 450440, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 450440, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  186 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-08 19:00:12 UTC (rev 450440)
+++ PKGBUILD2019-04-08 19:00:22 UTC (rev 450441)
@@ -1,93 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=1.1.0
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-# options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('6565fd30d704f7039d350c522875925acc287c8e45e18a7d42f22512860a7ac6'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2019-03-06 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, March 6, 2019 @ 21:35:00
  Author: jlichtblau
Revision: 437918

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 437917, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 437917, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 437917, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 437917, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 437917, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  186 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-03-06 21:34:53 UTC (rev 437917)
+++ PKGBUILD2019-03-06 21:35:00 UTC (rev 437918)
@@ -1,93 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=1.0.1
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-# options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('c36291efcea790df9db3b67a39a64e32a77332489abdae8260a295dae9015a3d'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2019-02-05 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, February 5, 2019 @ 18:23:25
  Author: jlichtblau
Revision: 429654

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 429653, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 429653, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 429653, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 429653, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 429653, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  186 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 18:23:09 UTC (rev 429653)
+++ PKGBUILD2019-02-05 18:23:25 UTC (rev 429654)
@@ -1,93 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=1.0.0
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-# options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('27435f9ef7c276736ec16781ad6b27fecb28053b8ffb16e0bae40c1e9bb62225'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2018-12-05 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, December 5, 2018 @ 16:48:50
  Author: jlichtblau
Revision: 411557

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 411556, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 411556, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 411556, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 411556, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 411556, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  186 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-05 16:48:37 UTC (rev 411556)
+++ PKGBUILD2018-12-05 16:48:50 UTC (rev 411557)
@@ -1,93 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.52
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-# options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('4954c2b05c60b6de29104d4783193a51164485cfa4a810c5a0696d72a83816c2'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2018-11-07 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, November 7, 2018 @ 19:59:56
  Author: jlichtblau
Revision: 403165

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 403164, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 403164, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 403164, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 403164, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 403164, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  186 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-07 19:59:37 UTC (rev 403164)
+++ PKGBUILD2018-11-07 19:59:56 UTC (rev 403165)
@@ -1,93 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.51
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-# options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('10bf5de6f5f01dc605667185ac0b485548ae9088abaa8401fc0f3a2528b2f09e'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2018-09-13 Thread Jaroslav Lichtblau via arch-commits
Date: Thursday, September 13, 2018 @ 19:39:12
  Author: jlichtblau
Revision: 380656

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 380655, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 380655, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 380655, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 380655, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 380655, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  187 --
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 122 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-13 19:38:59 UTC (rev 380655)
+++ PKGBUILD2018-09-13 19:39:12 UTC (rev 380656)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.49
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('520ff7d23e37bf01ea23ea57b5b22688de9f34d6f9aba3b61f1c3f1e8bfcbf1a'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 16:43:32
  Author: jlichtblau
Revision: 364859

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 364858, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 364858, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 364858, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 364858, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 364858, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  188 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 16:43:15 UTC (rev 364858)
+++ PKGBUILD2018-07-29 16:43:32 UTC (rev 364859)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.48
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('b4922518b012aa9bc46b39404a71ca00e5bcc2f0e0ad21a27a841a4965a9b32f'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-# check() {
-#   export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-#   cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-#   if [ "${CARCH}" == "x86_64" ] ; then
-# go run build.go -no-upgrade test
-#   fi
-# }
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2018-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, June 13, 2018 @ 18:42:20
  Author: jlichtblau
Revision: 342922

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 342921, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 342921, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 342921, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 342921, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 342921, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  188 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-13 18:42:05 UTC (rev 342921)
+++ PKGBUILD2018-06-13 18:42:20 UTC (rev 342922)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.47
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('92b3535ca3ea7b27c5b2ec771088865cd6e91d811a0816be39a6283a3067e6f3'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2018-05-01 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, May 1, 2018 @ 20:34:42
  Author: jlichtblau
Revision: 318614

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 318613, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 318613, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 318613, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 318613, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 318613, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  188 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-05-01 20:34:02 UTC (rev 318613)
+++ PKGBUILD2018-05-01 20:34:42 UTC (rev 318614)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.46
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('9401c4554d51284f906edc7498ce4a5f39ecda56ff3d3e7efe18440a6e15ab40'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2018-04-04 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, April 4, 2018 @ 20:35:46
  Author: jlichtblau
Revision: 314278

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 314277, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 314277, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 314277, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 314277, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 314277, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  188 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-04 20:35:19 UTC (rev 314277)
+++ PKGBUILD2018-04-04 20:35:46 UTC (rev 314278)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.45
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('3236a12b3698f6eaef785348a26fea59f87398b2753c414d18844e5f7d7a655b'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2018-03-08 Thread Jaroslav Lichtblau via arch-commits
Date: Thursday, March 8, 2018 @ 20:22:20
  Author: jlichtblau
Revision: 304982

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 304981, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 304981, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 304981, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 304981, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 304981, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  188 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-08 20:21:28 UTC (rev 304981)
+++ PKGBUILD2018-03-08 20:22:20 UTC (rev 304982)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.44
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('2136ef7bdec305f01fd9e7bde92d904bb9215e1e6328703b12a98015b828b83b'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2018-02-08 Thread Jaroslav Lichtblau via arch-commits
Date: Thursday, February 8, 2018 @ 19:56:49
  Author: jlichtblau
Revision: 290364

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 290361, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 290361, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 290362, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 290362, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 290362, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  188 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-08 19:56:45 UTC (rev 290363)
+++ PKGBUILD2018-02-08 19:56:49 UTC (rev 290364)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.43
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('bb0250e0bafce690a8ce3f43f0ab8349874ac1c8f3cdc224ed5d0110099bbd9c'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2018-01-10 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, January 10, 2018 @ 21:51:02
  Author: jlichtblau
Revision: 281195

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 281194, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 281194, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 281194, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 281194, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 281194, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  188 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-10 21:50:44 UTC (rev 281194)
+++ PKGBUILD2018-01-10 21:51:02 UTC (rev 281195)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.42
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('d194330f1dfac8bdb83edc978e0b184ed0c5e3aa32af660d95e4592824b20c63'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2017-12-25 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, December 25, 2017 @ 13:56:49
  Author: jlichtblau
Revision: 276017

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 276016, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 276016, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 276016, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 276016, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 276016, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  188 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-25 13:56:25 UTC (rev 276016)
+++ PKGBUILD2017-12-25 13:56:49 UTC (rev 276017)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.41
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('0a7d3c260f5cc8071cf880923d3dc59d3e9163cdd402c169058be59700cd2ad2'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2017-12-05 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, December 5, 2017 @ 17:22:45
  Author: jlichtblau
Revision: 272256

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 272255, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 272255, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 272255, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 272255, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 272255, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  188 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-05 17:22:25 UTC (rev 272255)
+++ PKGBUILD2017-12-05 17:22:45 UTC (rev 272256)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.40
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('8e60ad0567230944cfb72c5587a4c37a6f7e2515c7bd3f975ef7b9d1c7979710'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2015-01-21 Thread Jaroslav Lichtblau
Date: Wednesday, January 21, 2015 @ 20:18:51
  Author: jlichtblau
Revision: 126371

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 126370, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing.1
(from rev 126370, syncthing/trunk/syncthing.1)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 126370, syncthing/trunk/syncthing.install)
  syncthing/repos/community-x86_64/syncthing.service
(from rev 126370, syncthing/trunk/syncthing.service)
  syncthing/repos/community-x86_64/syncthing@.service
(from rev 126370, syncthing/trunk/syncthing@.service)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing.1
  syncthing/repos/community-x86_64/syncthing.install
  syncthing/repos/community-x86_64/syncthing.service
  syncthing/repos/community-x86_64/syncthing@.service

+
 PKGBUILD   |  104 ++--
 syncthing.1|  188 +--
 syncthing.install  |   18 ++--
 syncthing.service  |   22 ++---
 syncthing@.service |   24 +++---
 5 files changed, 178 insertions(+), 178 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-21 19:18:39 UTC (rev 126370)
+++ PKGBUILD2015-01-21 19:18:51 UTC (rev 126371)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: Sauyon Lee sauy...@sauyon.com
-# Contributor: Kevin MacMartin pruri...@gmail.com
-# Contributor: korjjj korjjj+...@gmail.com
-
-pkgname=syncthing
-pkgver=0.10.20
-pkgrel=1
-pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
-url=http://syncthing.net/;
-license=('GPL3')
-arch=('i686' 'x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
-syncthing@.service
-syncthing.service
-syncthing.1)
-sha1sums=('SKIP'
-  '204cad3823306c793a14a17a23220e26199160d4'
-  '2d3870eff21ad0724a48ba93e87064686693e3b9'
-  '17be8b3f99c577e325765abc251f597e204d7711')
-install=${pkgname}.install
-
-prepare() {
-cd ${srcdir}
-mkdir -p src/github.com/syncthing
-mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
-}
-
-build() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-go run build.go -no-upgrade build
-}
-
-check() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-#go run build.go -no-upgrade test
-}
-
-package() {
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
-install -D -m 644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
-install -D -m 644 ${srcdir}/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
-install -D -m 644 ${srcdir}/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
-install -D -m 644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
-}

Copied: syncthing/repos/community-x86_64/PKGBUILD (from rev 126370, 
syncthing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-21 19:18:51 UTC (rev 126371)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.10.21
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('GPL3')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
+syncthing@.service
+syncthing.service
+syncthing.1)
+sha1sums=('SKIP'
+  '204cad3823306c793a14a17a23220e26199160d4'
+  '2d3870eff21ad0724a48ba93e87064686693e3b9'
+  '17be8b3f99c577e325765abc251f597e204d7711')
+install=${pkgname}.install
+
+prepare() {
+cd ${srcdir}
+mkdir -p src/github.com/syncthing
+mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
+}
+
+build() {
+export GOPATH=${srcdir}
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+go run build.go -no-upgrade build
+}
+
+check() {
+export GOPATH=${srcdir}
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+#go run build.go -no-upgrade test
+}
+
+package() {
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2015-01-14 Thread Jaroslav Lichtblau
Date: Wednesday, January 14, 2015 @ 18:07:12
  Author: jlichtblau
Revision: 125922

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 125921, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing.1
(from rev 125921, syncthing/trunk/syncthing.1)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 125921, syncthing/trunk/syncthing.install)
  syncthing/repos/community-x86_64/syncthing.service
(from rev 125921, syncthing/trunk/syncthing.service)
  syncthing/repos/community-x86_64/syncthing@.service
(from rev 125921, syncthing/trunk/syncthing@.service)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing.1
  syncthing/repos/community-x86_64/syncthing.install
  syncthing/repos/community-x86_64/syncthing.service
  syncthing/repos/community-x86_64/syncthing@.service

+
 PKGBUILD   |  104 ++--
 syncthing.1|  188 +--
 syncthing.install  |   18 ++--
 syncthing.service  |   22 ++---
 syncthing@.service |   24 +++---
 5 files changed, 178 insertions(+), 178 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-14 17:06:57 UTC (rev 125921)
+++ PKGBUILD2015-01-14 17:07:12 UTC (rev 125922)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: Sauyon Lee sauy...@sauyon.com
-# Contributor: Kevin MacMartin pruri...@gmail.com
-# Contributor: korjjj korjjj+...@gmail.com
-
-pkgname=syncthing
-pkgver=0.10.19
-pkgrel=1
-pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
-url=http://syncthing.net/;
-license=('GPL3')
-arch=('i686' 'x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
-syncthing@.service
-syncthing.service
-syncthing.1)
-sha1sums=('SKIP'
-  '204cad3823306c793a14a17a23220e26199160d4'
-  '2d3870eff21ad0724a48ba93e87064686693e3b9'
-  '17be8b3f99c577e325765abc251f597e204d7711')
-install=${pkgname}.install
-
-prepare() {
-cd ${srcdir}
-mkdir -p src/github.com/syncthing
-mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
-}
-
-build() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-go run build.go -no-upgrade build
-}
-
-check() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-#go run build.go -no-upgrade test
-}
-
-package() {
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
-install -D -m 644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
-install -D -m 644 ${srcdir}/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
-install -D -m 644 ${srcdir}/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
-install -D -m 644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
-}

Copied: syncthing/repos/community-x86_64/PKGBUILD (from rev 125921, 
syncthing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-14 17:07:12 UTC (rev 125922)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.10.20
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('GPL3')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
+syncthing@.service
+syncthing.service
+syncthing.1)
+sha1sums=('SKIP'
+  '204cad3823306c793a14a17a23220e26199160d4'
+  '2d3870eff21ad0724a48ba93e87064686693e3b9'
+  '17be8b3f99c577e325765abc251f597e204d7711')
+install=${pkgname}.install
+
+prepare() {
+cd ${srcdir}
+mkdir -p src/github.com/syncthing
+mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
+}
+
+build() {
+export GOPATH=${srcdir}
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+go run build.go -no-upgrade build
+}
+
+check() {
+export GOPATH=${srcdir}
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+#go run build.go -no-upgrade test
+}
+
+package() {
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2015-01-11 Thread Jaroslav Lichtblau
Date: Sunday, January 11, 2015 @ 21:50:53
  Author: jlichtblau
Revision: 125768

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 125767, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing.1
(from rev 125767, syncthing/trunk/syncthing.1)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 125767, syncthing/trunk/syncthing.install)
  syncthing/repos/community-x86_64/syncthing.service
(from rev 125767, syncthing/trunk/syncthing.service)
  syncthing/repos/community-x86_64/syncthing@.service
(from rev 125767, syncthing/trunk/syncthing@.service)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing.1
  syncthing/repos/community-x86_64/syncthing.install
  syncthing/repos/community-x86_64/syncthing.service
  syncthing/repos/community-x86_64/syncthing@.service

+
 PKGBUILD   |  103 ++-
 syncthing.1|  188 +--
 syncthing.install  |   18 ++--
 syncthing.service  |   22 ++---
 syncthing@.service |   24 +++---
 5 files changed, 178 insertions(+), 177 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-11 20:50:41 UTC (rev 125767)
+++ PKGBUILD2015-01-11 20:50:53 UTC (rev 125768)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Contributor: Sauyon Lee sauy...@sauyon.com
-# Contributor: Kevin MacMartin pruri...@gmail.com
-# Contributor: korjjj korjjj+...@gmail.com
-
-pkgname=syncthing
-pkgver=0.10.18
-pkgrel=1
-pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
-url=http://syncthing.net/;
-license=('GPL3')
-arch=('i686' 'x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
-syncthing@.service
-syncthing.service
-syncthing.1)
-sha1sums=('SKIP'
-  '204cad3823306c793a14a17a23220e26199160d4'
-  '2d3870eff21ad0724a48ba93e87064686693e3b9'
-  '17be8b3f99c577e325765abc251f597e204d7711')
-install=${pkgname}.install
-
-prepare() {
-cd ${srcdir}
-mkdir -p src/github.com/syncthing
-mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
-}
-
-build() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-go run build.go -no-upgrade build
-}
-
-check() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-#go run build.go -no-upgrade test
-}
-
-package() {
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
-install -D -m 644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
-install -D -m 644 ${srcdir}/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
-install -D -m 644 ${srcdir}/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
-install -D -m 644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
-}

Copied: syncthing/repos/community-x86_64/PKGBUILD (from rev 125767, 
syncthing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-11 20:50:53 UTC (rev 125768)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.10.19
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('GPL3')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
+syncthing@.service
+syncthing.service
+syncthing.1)
+sha1sums=('SKIP'
+  '204cad3823306c793a14a17a23220e26199160d4'
+  '2d3870eff21ad0724a48ba93e87064686693e3b9'
+  '17be8b3f99c577e325765abc251f597e204d7711')
+install=${pkgname}.install
+
+prepare() {
+cd ${srcdir}
+mkdir -p src/github.com/syncthing
+mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
+}
+
+build() {
+export GOPATH=${srcdir}
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+go run build.go -no-upgrade build
+}
+
+check() {
+export GOPATH=${srcdir}
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+#go run build.go -no-upgrade test
+}
+
+package() {
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
+install -D -m 644 README.md 

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2015-01-04 Thread Jaroslav Lichtblau
Date: Sunday, January 4, 2015 @ 16:12:52
  Author: jlichtblau
Revision: 125335

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 125334, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing.1
(from rev 125334, syncthing/trunk/syncthing.1)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 125334, syncthing/trunk/syncthing.install)
  syncthing/repos/community-x86_64/syncthing.service
(from rev 125334, syncthing/trunk/syncthing.service)
  syncthing/repos/community-x86_64/syncthing@.service
(from rev 125334, syncthing/trunk/syncthing@.service)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing.1
  syncthing/repos/community-x86_64/syncthing.install
  syncthing/repos/community-x86_64/syncthing.service
  syncthing/repos/community-x86_64/syncthing@.service

+
 PKGBUILD   |  102 +--
 syncthing.1|  188 +--
 syncthing.install  |   18 ++--
 syncthing.service  |   22 ++---
 syncthing@.service |   24 +++---
 5 files changed, 177 insertions(+), 177 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-04 15:12:38 UTC (rev 125334)
+++ PKGBUILD2015-01-04 15:12:52 UTC (rev 125335)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Contributor: Sauyon Lee sauy...@sauyon.com
-# Contributor: Kevin MacMartin pruri...@gmail.com
-# Contributor: korjjj korjjj+...@gmail.com
-
-pkgname=syncthing
-pkgver=0.10.14
-pkgrel=1
-pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
-url=http://syncthing.net/;
-license=('GPL3')
-arch=('i686' 'x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
-syncthing@.service
-syncthing.service
-syncthing.1)
-sha1sums=('SKIP'
-  '204cad3823306c793a14a17a23220e26199160d4'
-  '2d3870eff21ad0724a48ba93e87064686693e3b9'
-  '17be8b3f99c577e325765abc251f597e204d7711')
-install=${pkgname}.install
-
-prepare() {
-cd ${srcdir}
-mkdir -p src/github.com/syncthing
-mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
-}
-
-build() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-go run build.go -no-upgrade build
-}
-
-check() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-#go run build.go -no-upgrade test
-}
-
-package() {
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
-install -D -m 644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
-install -D -m 644 ${srcdir}/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
-install -D -m 644 ${srcdir}/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
-install -D -m 644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
-}

Copied: syncthing/repos/community-x86_64/PKGBUILD (from rev 125334, 
syncthing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-04 15:12:52 UTC (rev 125335)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.10.15
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('GPL3')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
+syncthing@.service
+syncthing.service
+syncthing.1)
+sha1sums=('SKIP'
+  '204cad3823306c793a14a17a23220e26199160d4'
+  '2d3870eff21ad0724a48ba93e87064686693e3b9'
+  '17be8b3f99c577e325765abc251f597e204d7711')
+install=${pkgname}.install
+
+prepare() {
+cd ${srcdir}
+mkdir -p src/github.com/syncthing
+mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
+}
+
+build() {
+export GOPATH=${srcdir}
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+go run build.go -no-upgrade build
+}
+
+check() {
+export GOPATH=${srcdir}
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+#go run build.go -no-upgrade test
+}
+
+package() {
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
+install -D -m 644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
+install -D -m 644 

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2015-01-04 Thread Jaroslav Lichtblau
Date: Sunday, January 4, 2015 @ 21:08:57
  Author: jlichtblau
Revision: 125353

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 125352, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing.1
(from rev 125352, syncthing/trunk/syncthing.1)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 125352, syncthing/trunk/syncthing.install)
  syncthing/repos/community-x86_64/syncthing.service
(from rev 125352, syncthing/trunk/syncthing.service)
  syncthing/repos/community-x86_64/syncthing@.service
(from rev 125352, syncthing/trunk/syncthing@.service)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing.1
  syncthing/repos/community-x86_64/syncthing.install
  syncthing/repos/community-x86_64/syncthing.service
  syncthing/repos/community-x86_64/syncthing@.service

+
 PKGBUILD   |  102 +--
 syncthing.1|  188 +--
 syncthing.install  |   18 ++--
 syncthing.service  |   22 ++---
 syncthing@.service |   24 +++---
 5 files changed, 177 insertions(+), 177 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-04 20:08:44 UTC (rev 125352)
+++ PKGBUILD2015-01-04 20:08:57 UTC (rev 125353)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Contributor: Sauyon Lee sauy...@sauyon.com
-# Contributor: Kevin MacMartin pruri...@gmail.com
-# Contributor: korjjj korjjj+...@gmail.com
-
-pkgname=syncthing
-pkgver=0.10.15
-pkgrel=1
-pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
-url=http://syncthing.net/;
-license=('GPL3')
-arch=('i686' 'x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
-syncthing@.service
-syncthing.service
-syncthing.1)
-sha1sums=('SKIP'
-  '204cad3823306c793a14a17a23220e26199160d4'
-  '2d3870eff21ad0724a48ba93e87064686693e3b9'
-  '17be8b3f99c577e325765abc251f597e204d7711')
-install=${pkgname}.install
-
-prepare() {
-cd ${srcdir}
-mkdir -p src/github.com/syncthing
-mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
-}
-
-build() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-go run build.go -no-upgrade build
-}
-
-check() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-#go run build.go -no-upgrade test
-}
-
-package() {
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
-install -D -m 644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
-install -D -m 644 ${srcdir}/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
-install -D -m 644 ${srcdir}/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
-install -D -m 644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
-}

Copied: syncthing/repos/community-x86_64/PKGBUILD (from rev 125352, 
syncthing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-04 20:08:57 UTC (rev 125353)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.10.17
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('GPL3')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
+syncthing@.service
+syncthing.service
+syncthing.1)
+sha1sums=('SKIP'
+  '204cad3823306c793a14a17a23220e26199160d4'
+  '2d3870eff21ad0724a48ba93e87064686693e3b9'
+  '17be8b3f99c577e325765abc251f597e204d7711')
+install=${pkgname}.install
+
+prepare() {
+cd ${srcdir}
+mkdir -p src/github.com/syncthing
+mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
+}
+
+build() {
+export GOPATH=${srcdir}
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+go run build.go -no-upgrade build
+}
+
+check() {
+export GOPATH=${srcdir}
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+#go run build.go -no-upgrade test
+}
+
+package() {
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
+install -D -m 644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
+install -D -m 644 

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2014-12-29 Thread Jaroslav Lichtblau
Date: Monday, December 29, 2014 @ 11:32:52
  Author: jlichtblau
Revision: 124812

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 124811, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing.1
(from rev 124811, syncthing/trunk/syncthing.1)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 124811, syncthing/trunk/syncthing.install)
  syncthing/repos/community-x86_64/syncthing.service
(from rev 124811, syncthing/trunk/syncthing.service)
  syncthing/repos/community-x86_64/syncthing@.service
(from rev 124811, syncthing/trunk/syncthing@.service)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing.1
  syncthing/repos/community-x86_64/syncthing.install
  syncthing/repos/community-x86_64/syncthing.service
  syncthing/repos/community-x86_64/syncthing@.service

+
 PKGBUILD   |  102 +--
 syncthing.1|  188 +--
 syncthing.install  |   18 ++--
 syncthing.service  |   22 ++---
 syncthing@.service |   24 +++---
 5 files changed, 177 insertions(+), 177 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-29 10:28:53 UTC (rev 124811)
+++ PKGBUILD2014-12-29 10:32:52 UTC (rev 124812)
@@ -1,51 +0,0 @@
-# $Id:
-# Maintainer : Martin Wimpress c...@flexion.org
-# Contributor: Sauyon Lee sauy...@sauyon.com
-# Contributor: Kevin MacMartin pruri...@gmail.com
-# Contributor: korjjj korjjj+...@gmail.com
-
-pkgname=syncthing
-pkgver=0.10.13
-pkgrel=1
-pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
-url=http://syncthing.net/;
-license=('GPL3')
-arch=('i686' 'x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
-syncthing@.service
-syncthing.service
-syncthing.1)
-sha1sums=('SKIP'
-  '204cad3823306c793a14a17a23220e26199160d4'
-  '2d3870eff21ad0724a48ba93e87064686693e3b9'
-  '17be8b3f99c577e325765abc251f597e204d7711')
-install=${pkgname}.install
-
-prepare() {
-cd ${srcdir}
-mkdir -p src/github.com/syncthing
-mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
-}
-
-build() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-go run build.go -no-upgrade build
-}
-
-check() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-#go run build.go -no-upgrade test
-}
-
-package() {
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
-install -D -m 644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
-install -D -m 644 ${srcdir}/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
-install -D -m 644 ${srcdir}/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
-install -D -m 644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
-}

Copied: syncthing/repos/community-x86_64/PKGBUILD (from rev 124811, 
syncthing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-29 10:32:52 UTC (rev 124812)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.10.14
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('GPL3')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
+syncthing@.service
+syncthing.service
+syncthing.1)
+sha1sums=('SKIP'
+  '204cad3823306c793a14a17a23220e26199160d4'
+  '2d3870eff21ad0724a48ba93e87064686693e3b9'
+  '17be8b3f99c577e325765abc251f597e204d7711')
+install=${pkgname}.install
+
+prepare() {
+cd ${srcdir}
+mkdir -p src/github.com/syncthing
+mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
+}
+
+build() {
+export GOPATH=${srcdir}
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+go run build.go -no-upgrade build
+}
+
+check() {
+export GOPATH=${srcdir}
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+#go run build.go -no-upgrade test
+}
+
+package() {
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
+install -D -m 644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
+install -D -m 644 

[arch-commits] Commit in syncthing/repos/community-x86_64 (10 files)

2014-12-20 Thread Jaroslav Lichtblau
Date: Sunday, December 21, 2014 @ 01:28:44
  Author: jlichtblau
Revision: 124249

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 124247, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing.1
(from rev 124248, syncthing/trunk/syncthing.1)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 124248, syncthing/trunk/syncthing.install)
  syncthing/repos/community-x86_64/syncthing.service
(from rev 124248, syncthing/trunk/syncthing.service)
  syncthing/repos/community-x86_64/syncthing@.service
(from rev 124248, syncthing/trunk/syncthing@.service)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing.1
  syncthing/repos/community-x86_64/syncthing.install
  syncthing/repos/community-x86_64/syncthing.service
  syncthing/repos/community-x86_64/syncthing@.service

+
 PKGBUILD   |  102 +--
 syncthing.1|  188 +--
 syncthing.install  |   18 ++--
 syncthing.service  |   22 ++---
 syncthing@.service |   24 +++---
 5 files changed, 177 insertions(+), 177 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-21 00:28:24 UTC (rev 124248)
+++ PKGBUILD2014-12-21 00:28:44 UTC (rev 124249)
@@ -1,51 +0,0 @@
-# $Id:
-# Maintainer : Martin Wimpress c...@flexion.org
-# Contributor: Sauyon Lee sauy...@sauyon.com
-# Contributor: Kevin MacMartin pruri...@gmail.com
-# Contributor: korjjj korjjj+...@gmail.com
-
-pkgname=syncthing
-pkgver=0.10.12
-pkgrel=1
-pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
-url=http://syncthing.net/;
-license=('GPL3')
-arch=('i686' 'x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
-syncthing@.service
-syncthing.service
-syncthing.1)
-sha1sums=('SKIP'
-  '204cad3823306c793a14a17a23220e26199160d4'
-  '2d3870eff21ad0724a48ba93e87064686693e3b9'
-  '17be8b3f99c577e325765abc251f597e204d7711')
-install=${pkgname}.install
-
-prepare() {
-cd ${srcdir}
-mkdir -p src/github.com/syncthing
-mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
-}
-
-build() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-go run build.go -no-upgrade build
-}
-
-check() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-#go run build.go -no-upgrade test
-}
-
-package() {
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
-install -D -m 644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
-install -D -m 644 ${srcdir}/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
-install -D -m 644 ${srcdir}/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
-install -D -m 644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
-}

Copied: syncthing/repos/community-x86_64/PKGBUILD (from rev 124247, 
syncthing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-21 00:28:44 UTC (rev 124249)
@@ -0,0 +1,51 @@
+# $Id:
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.10.13
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('GPL3')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
+syncthing@.service
+syncthing.service
+syncthing.1)
+sha1sums=('SKIP'
+  '204cad3823306c793a14a17a23220e26199160d4'
+  '2d3870eff21ad0724a48ba93e87064686693e3b9'
+  '17be8b3f99c577e325765abc251f597e204d7711')
+install=${pkgname}.install
+
+prepare() {
+cd ${srcdir}
+mkdir -p src/github.com/syncthing
+mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
+}
+
+build() {
+export GOPATH=${srcdir}
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+go run build.go -no-upgrade build
+}
+
+check() {
+export GOPATH=${srcdir}
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+#go run build.go -no-upgrade test
+}
+
+package() {
+cd ${srcdir}/src/github.com/syncthing/${pkgname}
+install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
+install -D -m 644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
+install -D -m 644