[arch-commits] Commit in vdirsyncer/repos (4 files)

2019-11-04 Thread Felix Yan via arch-commits
Date: Monday, November 4, 2019 @ 23:01:06
  Author: felixonmars
Revision: 524154

archrelease: copy trunk to community-staging-any

Added:
  vdirsyncer/repos/community-staging-any/
  vdirsyncer/repos/community-staging-any/PKGBUILD
(from rev 524152, vdirsyncer/trunk/PKGBUILD)
  vdirsyncer/repos/community-staging-any/vdirsyncer.service
(from rev 524153, vdirsyncer/trunk/vdirsyncer.service)
  vdirsyncer/repos/community-staging-any/vdirsyncer.timer
(from rev 524153, vdirsyncer/trunk/vdirsyncer.timer)

+
 PKGBUILD   |   58 +++
 vdirsyncer.service |7 ++
 vdirsyncer.timer   |   10 
 3 files changed, 75 insertions(+)

Copied: vdirsyncer/repos/community-staging-any/PKGBUILD (from rev 524152, 
vdirsyncer/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2019-11-04 23:01:06 UTC (rev 524154)
@@ -0,0 +1,58 @@
+# Maintainer: David Runge 
+# Contributor: Hugo Osvaldo Barrera 
+
+pkgname=vdirsyncer
+pkgver=0.16.7
+pkgrel=3
+pkgdesc="Synchronize CalDAV and CardDAV."
+arch=('any')
+url="https://vdirsyncer.pimutils.org/en/stable/;
+license=('BSD')
+depends=('python-click' 'python-setuptools' 'python-requests-toolbelt'
+'python-atomicwrites' 'python-click-threading' 'python-click-log')
+makedepends=('python-setuptools-scm')
+optdepends=('python-requests-oauthlib: Google support'
+'python-etesync: Etesync support')
+checkdepends=('python-pytest' 'python-wsgi-intercept' 'radicale'
+'python-pytest-xprocess' 'python-pytest-localserver' 'python-hypothesis'
+'python-pytest-subtesthack')
+source=("${pkgname}-${pkgver}.tar.gz::https://pypi.io/packages/source/v/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+
"https://raw.githubusercontent.com/pimutils/${pkgname}/${pkgver}/contrib/${pkgname}.service;
+
"https://raw.githubusercontent.com/pimutils/${pkgname}/${pkgver}/contrib/${pkgname}.timer;)
+sha512sums=('218c6781139a9e979077308dc732756cc27ecb67966e4b52be31cb1ebf04d224443036102d5c4bad253b9dcf533939f0b72082166f0fe94e042a7e946b8fad0e'
+
'f0d1f9755b21358b0371d94cb0d2f1fc12b8dc095d2536c7fc9025906d666ec33b85b3a3924b16a3311dc81e136e0790d50f84c7c8f9f65aaed80613fa69d066'
+
'ac2656edc5ad39dbdc31a71117d98bfdc4ab5001729fc6a76f54e1e34ff81192f29e6162b2f8e429a5e02b8842fe1f2f51b00e84637eda53ba1448b8f08c6b80')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # removing obsoleted use of health_check in hypothesis
+  sed -e '/_health_/d' \
+  -i tests/{unit/test_repair,conftest}.py
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make DETERMINISTIC_TESTS=true test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  # license
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+  # systemd
+  install -t "${pkgdir}/usr/lib/systemd/user/" \
+-vDm 644 "${srcdir}/${pkgname}."{service,timer}
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm 644 {AUTHORS,CHANGELOG,README}.rst
+}
+

Copied: vdirsyncer/repos/community-staging-any/vdirsyncer.service (from rev 
524153, vdirsyncer/trunk/vdirsyncer.service)
===
--- community-staging-any/vdirsyncer.service(rev 0)
+++ community-staging-any/vdirsyncer.service2019-11-04 23:01:06 UTC (rev 
524154)
@@ -0,0 +1,7 @@
+[Unit]
+Description=Synchronize calendars and contacts
+Documentation=https://vdirsyncer.readthedocs.org/
+
+[Service]
+ExecStart=/usr/bin/vdirsyncer sync
+Type=oneshot

Copied: vdirsyncer/repos/community-staging-any/vdirsyncer.timer (from rev 
524153, vdirsyncer/trunk/vdirsyncer.timer)
===
--- community-staging-any/vdirsyncer.timer  (rev 0)
+++ community-staging-any/vdirsyncer.timer  2019-11-04 23:01:06 UTC (rev 
524154)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Synchronize vdirs
+
+[Timer]
+OnBootSec=5m
+OnUnitActiveSec=15m
+AccuracySec=5m
+
+[Install]
+WantedBy=timers.target


[arch-commits] Commit in vdirsyncer/repos (4 files)

2018-07-16 Thread David Runge via arch-commits
Date: Monday, July 16, 2018 @ 23:23:19
  Author: dvzrv
Revision: 360311

archrelease: copy trunk to community-staging-any

Added:
  vdirsyncer/repos/community-staging-any/
  vdirsyncer/repos/community-staging-any/PKGBUILD
(from rev 360310, vdirsyncer/trunk/PKGBUILD)
  vdirsyncer/repos/community-staging-any/vdirsyncer.service
(from rev 360310, vdirsyncer/trunk/vdirsyncer.service)
  vdirsyncer/repos/community-staging-any/vdirsyncer.timer
(from rev 360310, vdirsyncer/trunk/vdirsyncer.timer)

+
 PKGBUILD   |   60 +++
 vdirsyncer.service |7 +
 vdirsyncer.timer   |   10 
 3 files changed, 77 insertions(+)

Copied: vdirsyncer/repos/community-staging-any/PKGBUILD (from rev 360310, 
vdirsyncer/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2018-07-16 23:23:19 UTC (rev 360311)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: Hugo Osvaldo Barrera 
+
+pkgname=vdirsyncer
+pkgver=0.16.6
+pkgrel=2
+pkgdesc="Synchronize CalDAV and CardDAV."
+arch=('any')
+url="https://vdirsyncer.pimutils.org/en/stable/;
+license=('BSD')
+depends=('python-click' 'python-setuptools' 'python-requests-toolbelt'
+'python-atomicwrites' 'python-click-threading' 'python-click-log')
+makedepends=('python-setuptools-scm')
+optdepends=('python-requests-oauthlib: Google support'
+'python-etesync: Etesync support')
+checkdepends=('python-pytest' 'python-wsgi-intercept' 'radicale'
+'python-pytest-xprocess' 'python-pytest-localserver' 'python-hypothesis'
+'python-pytest-subtesthack')
+source=("${pkgname}-${pkgver}.tar.gz::https://pypi.io/packages/source/v/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+
"https://raw.githubusercontent.com/pimutils/${pkgname}/${pkgver}/contrib/${pkgname}.service;
+
"https://raw.githubusercontent.com/pimutils/${pkgname}/${pkgver}/contrib/${pkgname}.timer;)
+sha512sums=('b96467da4aeedbf6c582dfcc31cc6fbb88f8031e0e3c7c2fffc2e921cb927c6fcc937ac0da5ab74861bef34959dc05bd15208ec0380d83e727b3f55a5872404a'
+
'f0d1f9755b21358b0371d94cb0d2f1fc12b8dc095d2536c7fc9025906d666ec33b85b3a3924b16a3311dc81e136e0790d50f84c7c8f9f65aaed80613fa69d066'
+
'ac2656edc5ad39dbdc31a71117d98bfdc4ab5001729fc6a76f54e1e34ff81192f29e6162b2f8e429a5e02b8842fe1f2f51b00e84637eda53ba1448b8f08c6b80')
+
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # disabling failing test: https://github.com/pimutils/vdirsyncer/issues/754
+  sed -e 's/test_open_graphical_browser/disable_&/g' \
+  -i tests/system/utils/test_main.py
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make DETERMINISTIC_TESTS=true test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  # license
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+  # systemd
+  install -t "${pkgdir}/usr/lib/systemd/user/" \
+-vDm 644 "${srcdir}/${pkgname}."{service,timer}
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm 644 {AUTHORS,CHANGELOG,README}.rst
+}
+

Copied: vdirsyncer/repos/community-staging-any/vdirsyncer.service (from rev 
360310, vdirsyncer/trunk/vdirsyncer.service)
===
--- community-staging-any/vdirsyncer.service(rev 0)
+++ community-staging-any/vdirsyncer.service2018-07-16 23:23:19 UTC (rev 
360311)
@@ -0,0 +1,7 @@
+[Unit]
+Description=Synchronize calendars and contacts
+Documentation=https://vdirsyncer.readthedocs.org/
+
+[Service]
+ExecStart=/usr/bin/vdirsyncer sync
+Type=oneshot

Copied: vdirsyncer/repos/community-staging-any/vdirsyncer.timer (from rev 
360310, vdirsyncer/trunk/vdirsyncer.timer)
===
--- community-staging-any/vdirsyncer.timer  (rev 0)
+++ community-staging-any/vdirsyncer.timer  2018-07-16 23:23:19 UTC (rev 
360311)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Synchronize vdirs
+
+[Timer]
+OnBootSec=5m
+OnUnitActiveSec=15m
+AccuracySec=5m
+
+[Install]
+WantedBy=timers.target


[arch-commits] Commit in vdirsyncer/repos (4 files)

2018-07-16 Thread David Runge via arch-commits
Date: Monday, July 16, 2018 @ 23:22:04
  Author: dvzrv
Revision: 360310

archrelease: copy trunk to staging-any

Added:
  vdirsyncer/repos/staging-any/
  vdirsyncer/repos/staging-any/PKGBUILD
(from rev 360309, vdirsyncer/trunk/PKGBUILD)
  vdirsyncer/repos/staging-any/vdirsyncer.service
(from rev 360309, vdirsyncer/trunk/vdirsyncer.service)
  vdirsyncer/repos/staging-any/vdirsyncer.timer
(from rev 360309, vdirsyncer/trunk/vdirsyncer.timer)

+
 PKGBUILD   |   60 +++
 vdirsyncer.service |7 +
 vdirsyncer.timer   |   10 
 3 files changed, 77 insertions(+)

Copied: vdirsyncer/repos/staging-any/PKGBUILD (from rev 360309, 
vdirsyncer/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2018-07-16 23:22:04 UTC (rev 360310)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: Hugo Osvaldo Barrera 
+
+pkgname=vdirsyncer
+pkgver=0.16.6
+pkgrel=2
+pkgdesc="Synchronize CalDAV and CardDAV."
+arch=('any')
+url="https://vdirsyncer.pimutils.org/en/stable/;
+license=('BSD')
+depends=('python-click' 'python-setuptools' 'python-requests-toolbelt'
+'python-atomicwrites' 'python-click-threading' 'python-click-log')
+makedepends=('python-setuptools-scm')
+optdepends=('python-requests-oauthlib: Google support'
+'python-etesync: Etesync support')
+checkdepends=('python-pytest' 'python-wsgi-intercept' 'radicale'
+'python-pytest-xprocess' 'python-pytest-localserver' 'python-hypothesis'
+'python-pytest-subtesthack')
+source=("${pkgname}-${pkgver}.tar.gz::https://pypi.io/packages/source/v/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+
"https://raw.githubusercontent.com/pimutils/${pkgname}/${pkgver}/contrib/${pkgname}.service;
+
"https://raw.githubusercontent.com/pimutils/${pkgname}/${pkgver}/contrib/${pkgname}.timer;)
+sha512sums=('b96467da4aeedbf6c582dfcc31cc6fbb88f8031e0e3c7c2fffc2e921cb927c6fcc937ac0da5ab74861bef34959dc05bd15208ec0380d83e727b3f55a5872404a'
+
'f0d1f9755b21358b0371d94cb0d2f1fc12b8dc095d2536c7fc9025906d666ec33b85b3a3924b16a3311dc81e136e0790d50f84c7c8f9f65aaed80613fa69d066'
+
'ac2656edc5ad39dbdc31a71117d98bfdc4ab5001729fc6a76f54e1e34ff81192f29e6162b2f8e429a5e02b8842fe1f2f51b00e84637eda53ba1448b8f08c6b80')
+
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # disabling failing test: https://github.com/pimutils/vdirsyncer/issues/754
+  sed -e 's/test_open_graphical_browser/disable_&/g' \
+  -i tests/system/utils/test_main.py
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make DETERMINISTIC_TESTS=true test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  # license
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+  # systemd
+  install -t "${pkgdir}/usr/lib/systemd/user/" \
+-vDm 644 "${srcdir}/${pkgname}."{service,timer}
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm 644 {AUTHORS,CHANGELOG,README}.rst
+}
+

Copied: vdirsyncer/repos/staging-any/vdirsyncer.service (from rev 360309, 
vdirsyncer/trunk/vdirsyncer.service)
===
--- staging-any/vdirsyncer.service  (rev 0)
+++ staging-any/vdirsyncer.service  2018-07-16 23:22:04 UTC (rev 360310)
@@ -0,0 +1,7 @@
+[Unit]
+Description=Synchronize calendars and contacts
+Documentation=https://vdirsyncer.readthedocs.org/
+
+[Service]
+ExecStart=/usr/bin/vdirsyncer sync
+Type=oneshot

Copied: vdirsyncer/repos/staging-any/vdirsyncer.timer (from rev 360309, 
vdirsyncer/trunk/vdirsyncer.timer)
===
--- staging-any/vdirsyncer.timer(rev 0)
+++ staging-any/vdirsyncer.timer2018-07-16 23:22:04 UTC (rev 360310)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Synchronize vdirs
+
+[Timer]
+OnBootSec=5m
+OnUnitActiveSec=15m
+AccuracySec=5m
+
+[Install]
+WantedBy=timers.target


[arch-commits] Commit in vdirsyncer/repos (4 files)

2018-02-17 Thread David Runge via arch-commits
Date: Saturday, February 17, 2018 @ 14:08:51
  Author: dvzrv
Revision: 296078

archrelease: copy trunk to community-any

Added:
  vdirsyncer/repos/community-any/
  vdirsyncer/repos/community-any/PKGBUILD
(from rev 296077, vdirsyncer/trunk/PKGBUILD)
  vdirsyncer/repos/community-any/vdirsyncer.service
(from rev 296077, vdirsyncer/trunk/vdirsyncer.service)
  vdirsyncer/repos/community-any/vdirsyncer.timer
(from rev 296077, vdirsyncer/trunk/vdirsyncer.timer)

+
 PKGBUILD   |   56 +++
 vdirsyncer.service |7 ++
 vdirsyncer.timer   |   10 +
 3 files changed, 73 insertions(+)

Copied: vdirsyncer/repos/community-any/PKGBUILD (from rev 296077, 
vdirsyncer/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-02-17 14:08:51 UTC (rev 296078)
@@ -0,0 +1,56 @@
+# Maintainer: David Runge 
+# Contributor: Hugo Osvaldo Barrera 
+
+pkgname=vdirsyncer
+pkgver=0.16.4
+pkgrel=2
+pkgdesc="Synchronize CalDAV and CardDAV."
+arch=('any')
+url="https://vdirsyncer.readthedocs.org/;
+license=('BSD')
+depends=('python-click' 'python-setuptools' 'python-requests-toolbelt'
+'python-atomicwrites' 'python-click-threading' 'python-click-log')
+makedepends=('python-setuptools-scm')
+optdepends=('python-requests-oauthlib: Google support'
+'python-etesync: Etesync support')
+checkdepends=('python-pytest' 'python-wsgi-intercept' 'radicale'
+'python-pytest-xprocess' 'python-pytest-localserver' 'python-hypothesis'
+'python-pytest-subtesthack')
+source=("${pkgname}-${pkgver}.tar.gz::https://pypi.io/packages/source/v/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+
"https://raw.githubusercontent.com/pimutils/${pkgname}/${pkgver}/contrib/${pkgname}.service;
+
"https://raw.githubusercontent.com/pimutils/${pkgname}/${pkgver}/contrib/${pkgname}.timer;)
+sha512sums=('c01bf6bc5144629b82a3a60934fa6b89b0c24c55b09b98c54cba0a85d1e97f1c2ea157e159221ddfe4f11309cd5944eb2696ebc40b9d3ee95ea0801aa1eb9709'
+
'f0d1f9755b21358b0371d94cb0d2f1fc12b8dc095d2536c7fc9025906d666ec33b85b3a3924b16a3311dc81e136e0790d50f84c7c8f9f65aaed80613fa69d066'
+
'ac2656edc5ad39dbdc31a71117d98bfdc4ab5001729fc6a76f54e1e34ff81192f29e6162b2f8e429a5e02b8842fe1f2f51b00e84637eda53ba1448b8f08c6b80')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make DETERMINISTIC_TESTS=true test
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  # license
+  install -vDm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  # systemd
+  install -t "${pkgdir}/usr/lib/systemd/user/" \
+-vDm644 "${srcdir}/${pkgname}."{service,timer}
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm644 {AUTHORS,CHANGELOG,README}.rst
+}
+

Copied: vdirsyncer/repos/community-any/vdirsyncer.service (from rev 296077, 
vdirsyncer/trunk/vdirsyncer.service)
===
--- community-any/vdirsyncer.service(rev 0)
+++ community-any/vdirsyncer.service2018-02-17 14:08:51 UTC (rev 296078)
@@ -0,0 +1,7 @@
+[Unit]
+Description=Synchronize calendars and contacts
+Documentation=https://vdirsyncer.readthedocs.org/
+
+[Service]
+ExecStart=/usr/bin/vdirsyncer sync
+Type=oneshot

Copied: vdirsyncer/repos/community-any/vdirsyncer.timer (from rev 296077, 
vdirsyncer/trunk/vdirsyncer.timer)
===
--- community-any/vdirsyncer.timer  (rev 0)
+++ community-any/vdirsyncer.timer  2018-02-17 14:08:51 UTC (rev 296078)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Synchronize vdirs
+
+[Timer]
+OnBootSec=5m
+OnUnitActiveSec=15m
+AccuracySec=5m
+
+[Install]
+WantedBy=timers.target