testing/radicale: upgrade 0.10

This commit is contained in:
Francesco Colista 2015-08-14 12:46:33 +00:00
parent 7f8bb69034
commit 2104d8f8a4
3 changed files with 39 additions and 34 deletions

View File

@ -1,6 +1,6 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=radicale
pkgver=0.9
pkgver=0.10
pkgrel=0
pkgdesc="A simple CalDAV (calendar) and CardDAV (contact) server"
url="http://radicale.org"
@ -14,7 +14,7 @@ pkggroups="radicale"
install="$pkgname.pre-install"
subpackages=""
source="http://pypi.python.org/packages/source/R/Radicale/Radicale-$pkgver.tar.gz
radicale-0.9-systemwide.patch
radicale-0.10-systemwide.patch
radicale.initd
"
@ -49,12 +49,12 @@ package() {
}
md5sums="38295981c8e595fe774c6a5e6908c844 Radicale-0.9.tar.gz
79f3ceab466ae0529e418182a8a90acb radicale-0.9-systemwide.patch
c29bfd3a2927ddf777e8e289e0f8da26 radicale.initd"
sha256sums="77bf813fd26f0d359c1a7b7bcce9b842b4503c5516989a4a0a4f648e299e41f7 Radicale-0.9.tar.gz
389c0fa882e18c8e95e445be964464c8f9ba62cf5c6659d637473d95bad2fb5c radicale-0.9-systemwide.patch
fec7084565e99d17bea72fc809f03250ef0bcdc40eacb25ace77faf0c2fbd489 radicale.initd"
sha512sums="d030332a281c938859177ec6e7bf111622e47d1efc6c5d72e520051e8923a97e8e0b457488a88636ef86816bba1a72a867e8ef7a8c96e7414a87bb10c958aca2 Radicale-0.9.tar.gz
8cf1d4a377d75df479d8d8d601c2b11e429a798b14e4544a7e183a8c1dc0fe1ec948771710d6c31f8262dfa02d070204762f0594e5e054e20e8a2e76b5a8d29f radicale-0.9-systemwide.patch
7d786530b917585044ce3f301b8b307676f8ef965fe512a308812d0c7ef1abeea144c4f84f52b45d3657a4c44e9d36b0e3c0601e08c4cec27ae9ce9a812bec0e radicale.initd"
md5sums="32655d8893962956ead0ad690cca6044 Radicale-0.10.tar.gz
1175007391c9a27c06f5830543710402 radicale-0.10-systemwide.patch
8f017c52eef88c16a8cde11265f482fc radicale.initd"
sha256sums="0c6522f5751685fc159524ed7acee811ccb9a582db2adb6bbb4da99ce0103d64 Radicale-0.10.tar.gz
68fd1b42ebd3c347012be28268cac26b63d6a9391fbd6df6f52fb5955b55ed79 radicale-0.10-systemwide.patch
05026eb64495b272f08692ea51d44722a5f109e35506d5aaaf3293c511d734a8 radicale.initd"
sha512sums="d223df0277e43081c9d5a95f30fb5ad5f852b24fc9493b089e36d82ee45ce1549b68e28bf8bdd12352bc3f087babc8f3b6d4e3fce87980e6ca5e3e75f4ace820 Radicale-0.10.tar.gz
4b8327147ae7b620a76eb3070d10b79aa823b5ab2aa53f6ef73adde83a4b2c78afc929d265f54fe747acbc0e524cdbfbb84b72c576f8ab029a3a410236ebd966 radicale-0.10-systemwide.patch
dd0e7641687592f5b6b053c6f7170bd81747467db690827906826684b8cafd3de9a065d5389d6f3beb5e02fa6ba6daf2bcd77022ec1505dc88abc2e8f6b17a57 radicale.initd"

View File

@ -1,47 +1,52 @@
--- Radicale-0.9.orig/config
+++ Radicale-0.9/config
@@ -15,7 +15,7 @@
diff --git a/config b/config
index a2e36ec..6243fa2 100644
--- a/config
+++ b/config
@@ -16,7 +16,7 @@
# IPv6 syntax: [address]:port
# For example: 0.0.0.0:9999, [::]:9999
# IPv6 adresses are configured to only allow IPv6 connections
-hosts = 0.0.0.0:5232
-#hosts = 0.0.0.0:5232
+hosts = 127.0.0.1:5232
# Daemon flag
daemon = False
# File storing the PID in daemon mode
@@ -23,9 +23,9 @@
# SSL flag, enable HTTPS protocol
ssl = False
#daemon = False
@@ -28,10 +28,10 @@
#ssl = False
# SSL certificate path
-certificate = /etc/apache2/ssl/server.crt
-#certificate = /etc/apache2/ssl/server.crt
+certificate = /etc/ssl/radicale/server.crt
# SSL private key
-key = /etc/apache2/ssl/server.key
-#key = /etc/apache2/ssl/server.key
+key = /etc/ssl/radicale/server.key
# SSL Protocol used. See python's ssl module for available values
protocol = PROTOCOL_SSLv23
# Ciphers available. See python's ssl module for available ciphers
@@ -113,7 +113,7 @@
custom_handler =
#protocol = PROTOCOL_SSLv23
@@ -146,7 +146,7 @@
#custom_handler =
# File for rights management from_file
-file = ~/.config/radicale/rights
-#file = ~/.config/radicale/rights
+file = /var/lib/radicale/rights
[storage]
@@ -125,7 +125,7 @@
custom_handler =
@@ -163,7 +163,7 @@
#custom_handler =
# Folder for storing local collections, created if not present
-filesystem_folder = ~/.config/radicale/collections
-#filesystem_folder = ~/.config/radicale/collections
+filesystem_folder = /var/lib/radicale/collections
# Database URL for SQLAlchemy
# dialect+driver://user:password@host/dbname[?key=value..]
--- Radicale-0.9.orig/logging
+++ Radicale-0.9/logging
@@ -45,7 +45,7 @@
diff --git a/logging b/logging
index f4efb88..b10f88c 100644
--- a/logging
+++ b/logging
@@ -45,7 +45,7 @@ formatter = simple
[handler_file]
# File handler
class = FileHandler

View File

@ -1,4 +1,4 @@
#!/sbin/runscript
#!/sbin/openrc-run
pidfile=/var/run/radicale.pid
start_stop_daemon_args="--user radicale"