update to 0.5, from Mark Peoples, maintainer timeout

* Calendar depth
* iPhone support
* MacOS and Windows support
* HEAD requests management
* htpasswd user from calendar path

ok ian@
This commit is contained in:
sthen 2011-05-06 15:35:47 +00:00
parent e5840bb128
commit 8329226a50
3 changed files with 12 additions and 13 deletions

View File

@ -1,11 +1,10 @@
# $OpenBSD: Makefile,v 1.3 2011/04/17 14:54:47 sthen Exp $
# $OpenBSD: Makefile,v 1.4 2011/05/06 15:35:47 sthen Exp $
COMMENT = simple CalDAV calendar server
MODPY_EGG_VERSION = 0.4
MODPY_EGG_VERSION = 0.5
DISTNAME = Radicale-${MODPY_EGG_VERSION}
PKGNAME = ${DISTNAME:L}
REVISION = 1
CATEGORIES = productivity net
HOMEPAGE = http://www.radicale.org/

View File

@ -1,5 +1,5 @@
MD5 (Radicale-0.4.tar.gz) = EIO2b45w+1sH+H9X9ykcuQ==
RMD160 (Radicale-0.4.tar.gz) = 70d+Iml2+XCUn+eBhPGBzSREQrg=
SHA1 (Radicale-0.4.tar.gz) = cK9sl4QMX4kJdKfgi9NPAWMVe9E=
SHA256 (Radicale-0.4.tar.gz) = CiA4DlxpsH7gLkOcmiFkTaAkyQFqmz+0gMIbnPuNIDU=
SIZE (Radicale-0.4.tar.gz) = 22907
MD5 (Radicale-0.5.tar.gz) = z5NbtIS8ZomboU4MFYJU9Q==
RMD160 (Radicale-0.5.tar.gz) = zX+P64tnoERDhmS60cRkii+qFrU=
SHA1 (Radicale-0.5.tar.gz) = IKGZhzC1WfbFT0uDWSGUhPO5SW0=
SHA256 (Radicale-0.5.tar.gz) = Fff+buKsvG4JHn+JZ15Pn/KAA8DdyffNk/jnNm+apNE=
SIZE (Radicale-0.5.tar.gz) = 23615

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-radicale_config_py,v 1.2 2011/04/17 14:54:47 sthen Exp $
--- radicale/config.py.orig Fri Apr 1 22:44:18 2011
+++ radicale/config.py Fri Apr 1 22:45:40 2011
@@ -45,18 +45,18 @@ INITIAL_CONFIG = {
$OpenBSD: patch-radicale_config_py,v 1.3 2011/05/06 15:35:47 sthen Exp $
--- radicale/config.py.orig Sun Jan 9 16:45:29 2011
+++ radicale/config.py Fri May 6 16:24:23 2011
@@ -43,18 +43,18 @@ INITIAL_CONFIG = {
"port": "5232",
"daemon": "False",
"ssl": "False",
@ -24,7 +24,7 @@ $OpenBSD: patch-radicale_config_py,v 1.2 2011/04/17 14:54:47 sthen Exp $
# Create a ConfigParser and configure it
_CONFIG_PARSER = ConfigParser()
@@ -66,7 +66,7 @@ for section, values in INITIAL_CONFIG.items():
@@ -64,7 +64,7 @@ for section, values in INITIAL_CONFIG.items():
for key, value in values.items():
_CONFIG_PARSER.set(section, key, value)