pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/net/Radicale2 Add DEPENDS on py-vdirsyncer.
details: https://anonhg.NetBSD.org/pkgsrc/rev/986e2534a6d8
branches: trunk
changeset: 364852:986e2534a6d8
user: darcy <darcy%pkgsrc.org@localhost>
date: Thu Jul 06 03:12:48 2017 +0000
description:
Add DEPENDS on py-vdirsyncer.
Load vobject from vdirsyncer module.
Take maintainership.
diffstat:
net/Radicale2/Makefile | 10 +++++++---
net/Radicale2/distinfo | 4 +++-
net/Radicale2/patches/patch-radicale___init__.py | 14 ++++++++++++++
net/Radicale2/patches/patch-radicale_storage.py | 15 +++++++++++++++
4 files changed, 39 insertions(+), 4 deletions(-)
diffs (86 lines):
diff -r 45757c11cc47 -r 986e2534a6d8 net/Radicale2/Makefile
--- a/net/Radicale2/Makefile Thu Jul 06 02:41:46 2017 +0000
+++ b/net/Radicale2/Makefile Thu Jul 06 03:12:48 2017 +0000
@@ -1,10 +1,11 @@
-# $NetBSD: Makefile,v 1.1 2017/07/01 05:57:07 darcy Exp $
+# $NetBSD: Makefile,v 1.2 2017/07/06 03:12:48 darcy Exp $
DISTNAME= Radicale-2.1.1
+PKGREVISION= 1
CATEGORIES= net time www
MASTER_SITES= ${MASTER_SITE_PYPI:=R/Radicale/}
-MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+MAINTAINER= darcy%NetBSD.org@localhost
HOMEPAGE= http://radicale.org/
COMMENT= CalDAV (calendar) and CardDAV (contact) server
LICENSE= gnu-gpl-v3
@@ -15,7 +16,7 @@
RADICALE_GROUP?= www
PKG_GROUPS= ${RADICALE_GROUP}
PKG_USERS= ${RADICALE_USER}:${RADICALE_GROUP}
-CONFLICTS+= Radicale-1*
+CONFLICTS+= Radicale-1.*
PYTHON_VERSIONS_INCOMPATIBLE= 27
INSTALLATION_DIRS= ${EGDIR}
@@ -44,6 +45,9 @@
# for md5 htpasswd_encryption method
DEPENDS+= ${PYPKGPREFIX}-passlib-[0-9]*:../../security/py-passlib
+# to synchronize calendars
+DEPENDS+= ${PYPKGPREFIX}-vdirsyncer-[0-9]*:../../time/py-vdirsyncer
+
post-install:
${INSTALL_DATA} ${WRKSRC}/config ${DESTDIR}${PREFIX}/${EGDIR}/config
diff -r 45757c11cc47 -r 986e2534a6d8 net/Radicale2/distinfo
--- a/net/Radicale2/distinfo Thu Jul 06 02:41:46 2017 +0000
+++ b/net/Radicale2/distinfo Thu Jul 06 03:12:48 2017 +0000
@@ -1,6 +1,8 @@
-$NetBSD: distinfo,v 1.1 2017/07/01 05:57:07 darcy Exp $
+$NetBSD: distinfo,v 1.2 2017/07/06 03:12:48 darcy Exp $
SHA1 (Radicale-2.1.1.tar.gz) = e250986f11a946da7e48de189b10da61c93d2427
RMD160 (Radicale-2.1.1.tar.gz) = c950be03fd5b2edf37f4977bf4e060e544acfe8f
SHA512 (Radicale-2.1.1.tar.gz) = 3aa5aa6d6d3abfa256ab0f02a932d68daeb91ea857b68376a2bda3dae9dd8951e78a54a0657e4e827186ebb6c0d90165cb876d22ebc988cb66ba2f4617761830
Size (Radicale-2.1.1.tar.gz) = 70878 bytes
+SHA1 (patch-radicale___init__.py) = e075b25dee1ff3502df2412cc6ff79fa381516e4
+SHA1 (patch-radicale_storage.py) = 2a460ceb916cca15fe46489e61057b587147917b
diff -r 45757c11cc47 -r 986e2534a6d8 net/Radicale2/patches/patch-radicale___init__.py
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/Radicale2/patches/patch-radicale___init__.py Thu Jul 06 03:12:48 2017 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-radicale___init__.py,v 1.1 2017/07/06 03:12:48 darcy Exp $
+
+Load vobject from vdirsyncer module
+
+--- radicale/__init__.py.orig 2017-07-01 03:05:13.000000000 +0000
++++ radicale/__init__.py
+@@ -48,7 +48,7 @@ from http import client
+ from urllib.parse import unquote, urlparse
+ from xml.etree import ElementTree as ET
+
+-import vobject
++import vdirsyncer.vobject
+
+ from . import auth, rights, storage, web, xmlutils
diff -r 45757c11cc47 -r 986e2534a6d8 net/Radicale2/patches/patch-radicale_storage.py
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/Radicale2/patches/patch-radicale_storage.py Thu Jul 06 03:12:48 2017 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-radicale_storage.py,v 1.1 2017/07/06 03:12:48 darcy Exp $
+
+Load vobject from vdirsyncer module
+
+--- radicale/storage.py.orig 2017-07-01 03:05:13.000000000 +0000
++++ radicale/storage.py
+@@ -44,7 +44,7 @@ from random import getrandbits
+ from tempfile import NamedTemporaryFile, TemporaryDirectory
+
+ import pkg_resources
+-import vobject
++import vdirsyncer.vobject
+
+ if sys.version_info >= (3, 5):
+ # HACK: Avoid import cycle for Python < 3.5
Home |
Main Index |
Thread Index |
Old Index