pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/time/py-vdirsyncer
Module Name: pkgsrc
Committed By: adam
Date: Mon Aug 7 13:37:17 UTC 2023
Modified Files:
pkgsrc/time/py-vdirsyncer: Makefile PLIST distinfo
Log Message:
py-vdirsyncer: updated to 0.19.2
Version 0.19.2
==============
- Improve the performance of ``SingleFileStorage``. :gh:`818`
- Properly document some caveats of the Google Contacts storage.
- Fix crash when using auth certs. :gh:`1033`
- The ``filesystem`` storage can be specified with ``type =
"filesystem/icalendar"`` or ``type = "filesystem/vcard"``. This has not
functional impact, and is merely for forward compatibility with the Rust
implementation of vdirsyncer.
- Python 3.10 and 3.11 are officially supported.
- Instructions for integrating with Google CalDav/CardDav have changed.
Applications now need to be registered as "Desktop applications". Using "Web
application" no longer works due to changes on Google's side. :gh:`1078`
Version 0.19.1
==============
- Fixed crash when operating on Google Contacts. :gh:`994`
- The ``HTTP_PROXY`` and ``HTTPS_PROXY`` are now respected. :gh:`1031`
- Instructions for integrating with Google CalDav/CardDav have changed.
Applications now need to be registered as "Web Application". :gh:`975`
- Various documentation updates.
Version 0.19.0
==============
- Add "shell" password fetch strategy to pass command string to a shell.
- Add "description" and "order" as metadata. These fetch the CalDAV:
calendar-description, ``CardDAV:addressbook-description`` and
``apple-ns:calendar-order`` properties respectively.
- Add a new ``showconfig`` status. This prints *some* configuration values as
JSON. This is intended to be used by external tools and helpers that interact
with ``vdirsyncer``, and considered experimental.
- Update TLS-related tests that were failing due to weak MDs. :gh:`903`
- ``pytest-httpserver`` and ``trustme`` are now required for tests.
- ``pytest-localserver`` is no longer required for tests.
- Multithreaded support has been dropped. The ``"--max-workers`` has been removed.
- A new ``asyncio`` backend is now used. So far, this shows substantial speed
improvements in ``discovery`` and ``metasync``, but little change in `sync`.
This will likely continue improving over time. :gh:`906`
- The ``google`` storage types no longer require ``requests-oauthlib``, but
require ``python-aiohttp-oauthlib`` instead.
- Vdirsyncer no longer includes experimental support for `EteSync
<https://www.etesync.com/>`_. The existing integration had not been supported
for a long time and no longer worked. Support for external storages may be
added if anyone is interested in maintaining an EteSync plugin. EteSync
users should consider using `etesync-dav`_.
- The ``plist`` for macOS has been dropped. It was broken and homebrew
generates their own based on package metadata. macOS users are encouraged to
use that as a reference.
To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 pkgsrc/time/py-vdirsyncer/Makefile
cvs rdiff -u -r1.18 -r1.19 pkgsrc/time/py-vdirsyncer/PLIST
cvs rdiff -u -r1.48 -r1.49 pkgsrc/time/py-vdirsyncer/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/time/py-vdirsyncer/Makefile
diff -u pkgsrc/time/py-vdirsyncer/Makefile:1.64 pkgsrc/time/py-vdirsyncer/Makefile:1.65
--- pkgsrc/time/py-vdirsyncer/Makefile:1.64 Tue Jun 6 12:42:38 2023
+++ pkgsrc/time/py-vdirsyncer/Makefile Mon Aug 7 13:37:17 2023
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.64 2023/06/06 12:42:38 riastradh Exp $
+# $NetBSD: Makefile,v 1.65 2023/08/07 13:37:17 adam Exp $
-DISTNAME= vdirsyncer-0.18.0
+DISTNAME= vdirsyncer-0.19.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION= 2
CATEGORIES= time python
MASTER_SITES= ${MASTER_SITE_PYPI:=v/vdirsyncer/}
@@ -15,6 +14,8 @@ EXTRACT_USING= bsdtar # gtar cannot hand
TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm
TOOL_DEPENDS+= ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx
+DEPENDS+= ${PYPKGPREFIX}-aiohttp>=3.8.0:../../www/py-aiohttp
+DEPENDS+= ${PYPKGPREFIX}-aiostream>=0.4.3:../../devel/py-aiostream
DEPENDS+= ${PYPKGPREFIX}-atomicwrites>=0.1.7:../../devel/py-atomicwrites
DEPENDS+= ${PYPKGPREFIX}-click>=5.0:../../devel/py-click
DEPENDS+= ${PYPKGPREFIX}-click-log>=0.3.0:../../devel/py-click-log
@@ -23,10 +24,13 @@ DEPENDS+= ${PYPKGPREFIX}-requests>=2.20.
DEPENDS+= ${PYPKGPREFIX}-requests-oauthlib-[0-9]*:../../security/py-requests-oauthlib
DEPENDS+= ${PYPKGPREFIX}-requests-toolbelt>=0.4.0:../../devel/py-requests-toolbelt
DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
+TEST_DEPENDS+= ${PYPKGPREFIX}-aioresponses-[0-9]*:../../net/py-aioresponses
TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis>=5.0.0:../../devel/py-hypothesis
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-asyncio-[0-9]*:../../devel/py-test-asyncio
TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-localserver-[0-9]*:../../devel/py-test-localserver
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
+TEST_DEPENDS+= ${PYPKGPREFIX}-trustme-[0-9]*:../../security/py-trustme
USE_LANGUAGES= # none
INSTALLATION_DIRS= share/examples/${PKGBASE} ${PKGMANDIR}/man1
Index: pkgsrc/time/py-vdirsyncer/PLIST
diff -u pkgsrc/time/py-vdirsyncer/PLIST:1.18 pkgsrc/time/py-vdirsyncer/PLIST:1.19
--- pkgsrc/time/py-vdirsyncer/PLIST:1.18 Sun Dec 11 08:58:11 2022
+++ pkgsrc/time/py-vdirsyncer/PLIST Mon Aug 7 13:37:17 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.18 2022/12/11 08:58:11 wiz Exp $
+@comment $NetBSD: PLIST,v 1.19 2023/08/07 13:37:17 adam Exp $
bin/vdirsyncer
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -51,15 +51,15 @@ ${PYSITELIB}/vdirsyncer/storage/base.pyo
${PYSITELIB}/vdirsyncer/storage/dav.py
${PYSITELIB}/vdirsyncer/storage/dav.pyc
${PYSITELIB}/vdirsyncer/storage/dav.pyo
-${PYSITELIB}/vdirsyncer/storage/etesync.py
-${PYSITELIB}/vdirsyncer/storage/etesync.pyc
-${PYSITELIB}/vdirsyncer/storage/etesync.pyo
${PYSITELIB}/vdirsyncer/storage/filesystem.py
${PYSITELIB}/vdirsyncer/storage/filesystem.pyc
${PYSITELIB}/vdirsyncer/storage/filesystem.pyo
${PYSITELIB}/vdirsyncer/storage/google.py
${PYSITELIB}/vdirsyncer/storage/google.pyc
${PYSITELIB}/vdirsyncer/storage/google.pyo
+${PYSITELIB}/vdirsyncer/storage/google_helpers.py
+${PYSITELIB}/vdirsyncer/storage/google_helpers.pyc
+${PYSITELIB}/vdirsyncer/storage/google_helpers.pyo
${PYSITELIB}/vdirsyncer/storage/http.py
${PYSITELIB}/vdirsyncer/storage/http.pyc
${PYSITELIB}/vdirsyncer/storage/http.pyo
Index: pkgsrc/time/py-vdirsyncer/distinfo
diff -u pkgsrc/time/py-vdirsyncer/distinfo:1.48 pkgsrc/time/py-vdirsyncer/distinfo:1.49
--- pkgsrc/time/py-vdirsyncer/distinfo:1.48 Sun Dec 11 08:58:11 2022
+++ pkgsrc/time/py-vdirsyncer/distinfo Mon Aug 7 13:37:17 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.48 2022/12/11 08:58:11 wiz Exp $
+$NetBSD: distinfo,v 1.49 2023/08/07 13:37:17 adam Exp $
-BLAKE2s (vdirsyncer-0.18.0.tar.gz) = 75ef21cdefe1b91319bdcef6e783ad2ab26d21d6cb4c0db7e1300f2c0237e0a5
-SHA512 (vdirsyncer-0.18.0.tar.gz) = 7fb3d0f7d982d8390d278de1a620231e6ead1ec64057c5dbac98dcff491fa3e6b9ed8ba953995458e393aab73b0b9ab8ba14010e06f90a04d8ee2c28c7c7fbfd
-Size (vdirsyncer-0.18.0.tar.gz) = 115125 bytes
+BLAKE2s (vdirsyncer-0.19.2.tar.gz) = 8e5a7231523dbe2e1c0404111112d9c4b1444bf91e9ec899875bc2ac35c475d4
+SHA512 (vdirsyncer-0.19.2.tar.gz) = 056c58011d0a054a8cc215e9eabc706dfffb7d38deab5ae47311565b3bdb6de7a4772e97a0a50cdce33c82b09d559f1ec9cf9c84746553badf1d25791c7e08ce
+Size (vdirsyncer-0.19.2.tar.gz) = 123389 bytes
Home |
Main Index |
Thread Index |
Old Index