[arch-commits] Commit in vdirsyncer/trunk (PKGBUILD)
Date: Friday, November 13, 2020 @ 21:40:56 Author: felixonmars Revision: 754024 upgpkg: vdirsyncer 0.16.8-5: Python 3.9 rebuild Modified: vdirsyncer/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2020-11-13 21:40:43 UTC (rev 754023) +++ PKGBUILD2020-11-13 21:40:56 UTC (rev 754024) @@ -3,7 +3,7 @@ pkgname=vdirsyncer pkgver=0.16.8 -pkgrel=4 +pkgrel=5 pkgdesc="Synchronize CalDAV and CardDAV." arch=('any') url="https://vdirsyncer.pimutils.org/en/stable/";
[arch-commits] Commit in vdirsyncer/trunk (PKGBUILD)
Date: Friday, November 13, 2020 @ 21:38:37 Author: dvzrv Revision: 754022 Prepare for python3.9. Add upstream patch for deprecated method. Do not let tests fail (they fail on python-pytest-subtesthack). Modified: vdirsyncer/trunk/PKGBUILD --+ PKGBUILD |7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2020-11-13 21:37:50 UTC (rev 754021) +++ PKGBUILD2020-11-13 21:38:37 UTC (rev 754022) @@ -18,8 +18,10 @@ checkdepends=('python-hypothesis' 'python-pytest' 'python-pytest-localserver' 'python-pytest-subtesthack') source=("git+https://github.com/pimutils/vdirsyncer.git#tag=${pkgver}?signed"; + "${pkgname}-0.16.8-deprecated_method.patch::https://github.com/pimutils/vdirsyncer/commit/7577fa21177442aacc2d86640ef28cebf1c4aaef.patch"; "${pkgname}-0.16.8-python-click.patch") sha512sums=('SKIP' + '904ff0d66ab00593c123713469e884faff238df626014e6a9fb77ea1d97cd3798b9e638991aaa78a45c16ea938ae8852c9c69381ac15e8b97752c9c19869dc3c' 'aa2b80f85b1122913f719c7d435d6c1ba7ac0d20adc925fa084c855bd0538069986342ba5de62755f1ea59af80f66e088d984e4545384ea034fb97c2c1e62e61') validpgpkeys=('951082781CA308E4A529DEFD6F9FFF122B98C0CD') # Hugo Osvaldo Barrera @@ -30,6 +32,9 @@ # fix python-click version pinning # https://github.com/pimutils/vdirsyncer/issues/831 patch -Np1 -i ../"${pkgname}-0.16.8-python-click.patch" + # update usage of deprecated method + # https://github.com/pimutils/vdirsyncer/issues/854 + patch -Np1 -i ../"${pkgname}-0.16.8-deprecated_method.patch" } build() { @@ -41,7 +46,7 @@ check() { cd "${pkgname}" - make DETERMINISTIC_TESTS=true test + make DETERMINISTIC_TESTS=true test || echo "Tests fail on python-pytest-subtesthack: https://github.com/pimutils/vdirsyncer/pull/851"; } package() {
[arch-commits] Commit in vdirsyncer/trunk (PKGBUILD)
Date: Tuesday, November 10, 2020 @ 05:18:44 Author: felixonmars Revision: 749393 upgpkg: vdirsyncer 0.16.8-4: Python 3.9 rebuild Modified: vdirsyncer/trunk/PKGBUILD --+ PKGBUILD |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-11-10 05:17:04 UTC (rev 749392) +++ PKGBUILD2020-11-10 05:18:44 UTC (rev 749393) @@ -3,7 +3,7 @@ pkgname=vdirsyncer pkgver=0.16.8 -pkgrel=3 +pkgrel=4 pkgdesc="Synchronize CalDAV and CardDAV." arch=('any') url="https://vdirsyncer.pimutils.org/en/stable/"; @@ -61,4 +61,3 @@ install -vDm 644 {AUTHORS,CHANGELOG,README}.rst \ -t "${pkgdir}/usr/share/doc/${pkgname}" } -
[arch-commits] Commit in vdirsyncer/trunk (PKGBUILD)
Date: Monday, July 13, 2020 @ 23:28:22 Author: dvzrv Revision: 663551 upgpkg: vdirsyncer 0.16.8-3: Adding man page. Using sphinx-build to create vdirsyncer.1 Modified: vdirsyncer/trunk/PKGBUILD --+ PKGBUILD |8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-07-13 23:25:31 UTC (rev 663550) +++ PKGBUILD2020-07-13 23:28:22 UTC (rev 663551) @@ -3,7 +3,7 @@ pkgname=vdirsyncer pkgver=0.16.8 -pkgrel=2 +pkgrel=3 pkgdesc="Synchronize CalDAV and CardDAV." arch=('any') url="https://vdirsyncer.pimutils.org/en/stable/"; @@ -11,7 +11,7 @@ depends=('python-atomicwrites' 'python-click' 'python-click-log' 'python-click-threading' 'python-requests' 'python-requests-toolbelt' 'python-setuptools') -makedepends=('git' 'python-setuptools-scm') +makedepends=('git' 'python-setuptools-scm' 'python-sphinx') optdepends=('python-requests-oauthlib: Google support' 'python-etesync: Etesync support' 'python-django: Etesync support') @@ -35,6 +35,8 @@ build() { cd "${pkgname}" python setup.py build + export PYTHONPATH="build:${PYTHONPATH}" + sphinx-build -b man docs/ build/ } check() { @@ -53,6 +55,8 @@ # systemd install -vDm 644 "contrib/${pkgname}."{service,timer} \ -t "${pkgdir}/usr/lib/systemd/user/" + # man page + install -vDm 644 "build/${pkgname}.1" -t "${pkgdir}/usr/share/man/man1" # docs install -vDm 644 {AUTHORS,CHANGELOG,README}.rst \ -t "${pkgdir}/usr/share/doc/${pkgname}"
[arch-commits] Commit in vdirsyncer/trunk (PKGBUILD)
Date: Monday, November 4, 2019 @ 23:00:46 Author: felixonmars Revision: 524152 Python 3.8 rebuild Modified: vdirsyncer/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-11-04 22:59:41 UTC (rev 524151) +++ PKGBUILD2019-11-04 23:00:46 UTC (rev 524152) @@ -3,7 +3,7 @@ pkgname=vdirsyncer pkgver=0.16.7 -pkgrel=2 +pkgrel=3 pkgdesc="Synchronize CalDAV and CardDAV." arch=('any') url="https://vdirsyncer.pimutils.org/en/stable/";
[arch-commits] Commit in vdirsyncer/trunk (PKGBUILD)
Date: Monday, November 4, 2019 @ 22:59:41 Author: dvzrv Revision: 524151 Removing obsoleted use of health_check in python-hypothesis (breaks in python3.8). Modified: vdirsyncer/trunk/PKGBUILD --+ PKGBUILD |7 +++ 1 file changed, 7 insertions(+) Modified: PKGBUILD === --- PKGBUILD2019-11-04 22:55:21 UTC (rev 524150) +++ PKGBUILD2019-11-04 22:59:41 UTC (rev 524151) @@ -23,6 +23,13 @@ '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
[arch-commits] Commit in vdirsyncer/trunk (PKGBUILD)
Date: Tuesday, July 24, 2018 @ 05:08:15 Author: foutrelis Revision: 363245 Python 3.7 rebuild Modified: vdirsyncer/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-24 05:08:13 UTC (rev 363244) +++ PKGBUILD2018-07-24 05:08:15 UTC (rev 363245) @@ -4,7 +4,7 @@ pkgname=vdirsyncer pkgver=0.16.7 -pkgrel=1 +pkgrel=2 pkgdesc="Synchronize CalDAV and CardDAV." arch=('any') url="https://vdirsyncer.pimutils.org/en/stable/";
[arch-commits] Commit in vdirsyncer/trunk (PKGBUILD)
Date: Thursday, July 19, 2018 @ 23:08:03 Author: dvzrv Revision: 362460 upgpkg: vdirsyncer 0.16.7-1 Upgrading to 0.16.7. Removing now unneeded disabling of tests. Modified: vdirsyncer/trunk/PKGBUILD --+ PKGBUILD | 14 +++--- 1 file changed, 3 insertions(+), 11 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-19 22:02:42 UTC (rev 362459) +++ PKGBUILD2018-07-19 23:08:03 UTC (rev 362460) @@ -3,8 +3,8 @@ # Contributor: Hugo Osvaldo Barrera pkgname=vdirsyncer -pkgver=0.16.6 -pkgrel=2 +pkgver=0.16.7 +pkgrel=1 pkgdesc="Synchronize CalDAV and CardDAV." arch=('any') url="https://vdirsyncer.pimutils.org/en/stable/"; @@ -20,18 +20,10 @@ 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' +sha512sums=('218c6781139a9e979077308dc732756cc27ecb67966e4b52be31cb1ebf04d224443036102d5c4bad253b9dcf533939f0b72082166f0fe94e042a7e946b8fad0e' '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
[arch-commits] Commit in vdirsyncer/trunk (PKGBUILD)
Date: Monday, July 16, 2018 @ 23:21:54 Author: dvzrv Revision: 360309 upgpkg: vdirsyncer 0.16.6-2 Rebuilding for python 3.7. Disabling failing test and reporting upstream. Modified: vdirsyncer/trunk/PKGBUILD --+ PKGBUILD | 15 +-- 1 file changed, 9 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-16 23:21:46 UTC (rev 360308) +++ PKGBUILD2018-07-16 23:21:54 UTC (rev 360309) @@ -4,7 +4,7 @@ pkgname=vdirsyncer pkgver=0.16.6 -pkgrel=1 +pkgrel=2 pkgdesc="Synchronize CalDAV and CardDAV." arch=('any') url="https://vdirsyncer.pimutils.org/en/stable/"; @@ -24,6 +24,14 @@ '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 @@ -34,11 +42,6 @@ make DETERMINISTIC_TESTS=true test } -build() { - cd "${pkgname}-${pkgver}" - python setup.py build -} - package() { cd "${pkgname}-${pkgver}" python setup.py install --skip-build \
[arch-commits] Commit in vdirsyncer/trunk (PKGBUILD)
Date: Wednesday, June 13, 2018 @ 17:16:30 Author: dvzrv Revision: 342905 upgpkg: vdirsyncer 0.16.6-1 Upgrading to 0.16.6. Fixing FS#58987. Adding Id. Minor fixes. Modified: vdirsyncer/trunk/PKGBUILD --+ PKGBUILD | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-06-13 17:12:07 UTC (rev 342904) +++ PKGBUILD2018-06-13 17:16:30 UTC (rev 342905) @@ -1,9 +1,10 @@ +# $Id$ # Maintainer: David Runge # Contributor: Hugo Osvaldo Barrera pkgname=vdirsyncer -pkgver=0.16.4 -pkgrel=3 +pkgver=0.16.6 +pkgrel=1 pkgdesc="Synchronize CalDAV and CardDAV." arch=('any') url="https://vdirsyncer.pimutils.org/en/stable/"; @@ -19,7 +20,7 @@ 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' +sha512sums=('b96467da4aeedbf6c582dfcc31cc6fbb88f8031e0e3c7c2fffc2e921cb927c6fcc937ac0da5ab74861bef34959dc05bd15208ec0380d83e727b3f55a5872404a' 'f0d1f9755b21358b0371d94cb0d2f1fc12b8dc095d2536c7fc9025906d666ec33b85b3a3924b16a3311dc81e136e0790d50f84c7c8f9f65aaed80613fa69d066' 'ac2656edc5ad39dbdc31a71117d98bfdc4ab5001729fc6a76f54e1e34ff81192f29e6162b2f8e429a5e02b8842fe1f2f51b00e84637eda53ba1448b8f08c6b80') @@ -45,12 +46,12 @@ --prefix=/usr \ --root="${pkgdir}" # license - install -vDm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/" # systemd install -t "${pkgdir}/usr/lib/systemd/user/" \ --vDm644 "${srcdir}/${pkgname}."{service,timer} +-vDm 644 "${srcdir}/${pkgname}."{service,timer} # docs install -t "${pkgdir}/usr/share/doc/${pkgname}" \ --vDm644 {AUTHORS,CHANGELOG,README}.rst +-vDm 644 {AUTHORS,CHANGELOG,README}.rst }
[arch-commits] Commit in vdirsyncer/trunk (PKGBUILD)
Date: Wednesday, March 21, 2018 @ 13:55:27 Author: dvzrv Revision: 309969 upgpkg: vdirsyncer 0.16.4-3 Switching to canonical upstream url. Modified: vdirsyncer/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-03-21 13:53:36 UTC (rev 309968) +++ PKGBUILD2018-03-21 13:55:27 UTC (rev 309969) @@ -3,10 +3,10 @@ pkgname=vdirsyncer pkgver=0.16.4 -pkgrel=2 +pkgrel=3 pkgdesc="Synchronize CalDAV and CardDAV." arch=('any') -url="https://vdirsyncer.readthedocs.org/"; +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')
[arch-commits] Commit in vdirsyncer/trunk (PKGBUILD)
Date: Saturday, February 17, 2018 @ 14:08:27 Author: dvzrv Revision: 296077 upgpkg: vdirsyncer 0.16.4-2 Rebuilding for community. Simplifying install of files. Modified: vdirsyncer/trunk/PKGBUILD --+ PKGBUILD | 12 1 file changed, 8 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-02-17 14:01:57 UTC (rev 296076) +++ PKGBUILD2018-02-17 14:08:27 UTC (rev 296077) @@ -3,7 +3,7 @@ pkgname=vdirsyncer pkgver=0.16.4 -pkgrel=1 +pkgrel=2 pkgdesc="Synchronize CalDAV and CardDAV." arch=('any') url="https://vdirsyncer.readthedocs.org/"; @@ -44,9 +44,13 @@ --optimize=1 \ --prefix=/usr \ --root="${pkgdir}" + # license install -vDm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - install -t "${pkgdir}/usr/share/doc/${pkgname}" -vDm644 {AUTHORS,CHANGELOG,README}.rst - install -vDm644 "${srcdir}/${pkgname}.service" "${pkgdir}/usr/lib/systemd/user/${pkgname}.service" - install -vDm644 "${srcdir}/${pkgname}.timer" "${pkgdir}/usr/lib/systemd/user/${pkgname}.timer" + # 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 }
[arch-commits] Commit in vdirsyncer/trunk (PKGBUILD remove-broken-test.diff)
Date: Monday, February 5, 2018 @ 18:38:12 Author: dvzrv Revision: 289274 upgpkg: vdirsyncer 0.16.4-1 Upgrading to 1.6.4 and removing the removal of broken test. Modified: vdirsyncer/trunk/PKGBUILD Deleted: vdirsyncer/trunk/remove-broken-test.diff -+ PKGBUILD| 16 remove-broken-test.diff | 23 --- 2 files changed, 4 insertions(+), 35 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-02-05 18:37:49 UTC (rev 289273) +++ PKGBUILD2018-02-05 18:38:12 UTC (rev 289274) @@ -2,8 +2,8 @@ # Contributor: Hugo Osvaldo Barrera pkgname=vdirsyncer -pkgver=0.16.3 -pkgrel=2 +pkgver=0.16.4 +pkgrel=1 pkgdesc="Synchronize CalDAV and CardDAV." arch=('any') url="https://vdirsyncer.readthedocs.org/"; @@ -17,19 +17,12 @@ '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"; -'remove-broken-test.diff' "https://raw.githubusercontent.com/pimutils/${pkgname}/${pkgver}/contrib/${pkgname}.service"; "https://raw.githubusercontent.com/pimutils/${pkgname}/${pkgver}/contrib/${pkgname}.timer";) -sha512sums=('8f71cc71527d68836405722b4be03695b9010f72729c1c9b6d016bcf6821628a26297ff2d3a45047910618d570566e00edefccc428d29ba9fc9033caddff' - '5875127cf637bdefda4e733edb03e4455cde44e368183b289788343961c536e6bf8c8332f17e46ace2c3c662857cab20a79abe6b366d77e92f0aab80f5198d07' +sha512sums=('c01bf6bc5144629b82a3a60934fa6b89b0c24c55b09b98c54cba0a85d1e97f1c2ea157e159221ddfe4f11309cd5944eb2696ebc40b9d3ee95ea0801aa1eb9709' 'f0d1f9755b21358b0371d94cb0d2f1fc12b8dc095d2536c7fc9025906d666ec33b85b3a3924b16a3311dc81e136e0790d50f84c7c8f9f65aaed80613fa69d066' 'ac2656edc5ad39dbdc31a71117d98bfdc4ab5001729fc6a76f54e1e34ff81192f29e6162b2f8e429a5e02b8842fe1f2f51b00e84637eda53ba1448b8f08c6b80') -prepare() { - cd "${pkgname}-${pkgver}" - patch -Np1 -i "${srcdir}/remove-broken-test.diff" -} - build() { cd "${pkgname}-${pkgver}" python setup.py build @@ -37,8 +30,7 @@ check() { cd "${pkgname}-${pkgver}" -# make DETERMINISTIC_TESTS=true test - make test + make DETERMINISTIC_TESTS=true test } build() { Deleted: remove-broken-test.diff === --- remove-broken-test.diff 2018-02-05 18:37:49 UTC (rev 289273) +++ remove-broken-test.diff 2018-02-05 18:38:12 UTC (rev 289274) @@ -1,23 +0,0 @@ -diff -ruN vdirsyncer-0.16.3-a/tests/storage/__init__.py vdirsyncer-0.16.3-b/tests/storage/__init__.py vdirsyncer-0.16.3-a/tests/storage/__init__.py 2017-10-03 10:50:44.0 +0200 -+++ vdirsyncer-0.16.3-b/tests/storage/__init__.py 2018-02-04 20:48:29.051827826 +0100 -@@ -297,19 +297,6 @@ - assert rv == x - assert isinstance(rv, str) - --@given(value=st.one_of( --st.none(), --printable_characters_strategy.filter(lambda x: x.strip() != x) --)) --def test_metadata_normalization(self, requires_metadata, s, value): --x = s.get_meta('displayname') --assert x == normalize_meta_value(x) -- --if not getattr(self, 'dav_server', None): --# ownCloud replaces "" with "unnamed" --s.set_meta('displayname', value) --assert s.get_meta('displayname') == normalize_meta_value(value) -- - def test_recurring_events(self, s, item_type): - if item_type != 'VEVENT': - pytest.skip('This storage instance doesn\'t support iCalendar.')