[arch-commits] Commit in radicale/repos (5 files)
Evangelos Foutras
foutrelis at archlinux.org
Fri Jul 13 20:03:10 UTC 2018
Date: Friday, July 13, 2018 @ 20:03:09
Author: foutrelis
Revision: 358819
archrelease: copy trunk to community-staging-any
Added:
radicale/repos/community-staging-any/
radicale/repos/community-staging-any/PKGBUILD
(from rev 358818, radicale/trunk/PKGBUILD)
radicale/repos/community-staging-any/radicale-sysusers.conf
(from rev 358818, radicale/trunk/radicale-sysusers.conf)
radicale/repos/community-staging-any/radicale-tmpfiles.conf
(from rev 358818, radicale/trunk/radicale-tmpfiles.conf)
radicale/repos/community-staging-any/radicale.service
(from rev 358818, radicale/trunk/radicale.service)
------------------------+
PKGBUILD | 70 +++++++++++++++++++++++++++++++++++++++++++++++
radicale-sysusers.conf | 2 +
radicale-tmpfiles.conf | 3 ++
radicale.service | 25 ++++++++++++++++
4 files changed, 100 insertions(+)
Copied: radicale/repos/community-staging-any/PKGBUILD (from rev 358818, radicale/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2018-07-13 20:03:09 UTC (rev 358819)
@@ -0,0 +1,70 @@
+# Maintainer: Moritz Lipp <mlq at pwmt.org>
+# Co-Maintainer: fordprefect <fordprefect at dukun.de>
+# Contributor: Thor77 <thor77 at thor77.org>
+
+pkgname=radicale
+_name=Radicale
+pkgver=2.1.9
+pkgrel=3
+pkgdesc='Simple calendar (CalDAV) and contact (CardDAV) server'
+arch=('any')
+url="http://www.radicale.org/"
+license=('GPL3')
+depends=('python-bcrypt' 'python-passlib' 'python-setuptools' 'python-vobject')
+checkdepends=('python-bcrypt' 'python-pytest-cov' 'python-pytest-flake8' 'python-pytest-isort' 'python-pytest-runner')
+backup=('etc/radicale/config')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Kozea/${pkgname}/archive/${pkgver}.tar.gz"
+ "${pkgname}-sysusers.conf"
+ "${pkgname}-tmpfiles.conf"
+ "${pkgname}.service")
+sha512sums=('30df36772f4dd38c9c79ecd9669da8b40c7284afa9e2949c174c159838c33a66edec1a49adf7c110017dc83c592415be6fa43e2de6007d7e154b8707773c4a44'
+ '444489ba929680490884e338acc311fb61d81f9d9f0282c92c40a80317af9e61123e4764e803d1698876417170efd40bfe7f56408570891c4e426de3be17c302'
+ '4570ed393b73bc5a3fd571947acae78b96b5e17f659e3169f542b9c481635680c724d5c6c0952661fae063caf04c786afe7043c5052945e7a00bb66326dec016'
+ '6a3452009bebc0f8680ea8e64b9a398c04f3fb6b20752c377392e22641845a04dbfda78d586271c9a25bd7d5ba42b7a8f74774afed68732f19ddd764f53e11cc')
+
+prepare() {
+ mv -v ${_name}-${pkgver} ${pkgname}-${pkgver}
+ cd ${pkgname}-${pkgver}
+ # removing version pinning, as we are rolling release
+ # expect to hit bugs!
+ sed -e 's/vobject\=\=0\.9\.5/vobject/' \
+ -e 's/python-dateutil\=\=2\.6\.1/python-dateutil/' \
+ -i setup.py
+}
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ python setup.py build
+}
+
+# checks are disabled for now https://bugs.archlinux.org/task/58344
+#check() {
+# cd "${pkgname}-${pkgver}"
+# python setup.py test
+#}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ python setup.py install --skip-build \
+ --optimize=1 \
+ --prefix=/usr \
+ --root="${pkgdir}"
+ # config
+ install -vDm 644 config "${pkgdir}/etc/${pkgname}/config"
+ # fcgi/wsgi
+ install -t "${pkgdir}/usr/share/${pkgname}/" \
+ -vDm 644 "${pkgname}.fcgi" \
+ -vDm 644 "${pkgname}.wsgi"
+ # systemd service
+ install -vDm 644 "${srcdir}/${pkgname}.service" \
+ "${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
+ # sysusers.d
+ install -vDm 644 "${srcdir}/${pkgname}-sysusers.conf" \
+ "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+ # tmpfiles.d
+ install -vDm 644 "${srcdir}/${pkgname}-tmpfiles.conf" \
+ "${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+ # docs
+ install -t "${pkgdir}/usr/share/doc/${pkgname}/" -vDm 644 {NEWS,README}.md
+}
+
Copied: radicale/repos/community-staging-any/radicale-sysusers.conf (from rev 358818, radicale/trunk/radicale-sysusers.conf)
===================================================================
--- community-staging-any/radicale-sysusers.conf (rev 0)
+++ community-staging-any/radicale-sysusers.conf 2018-07-13 20:03:09 UTC (rev 358819)
@@ -0,0 +1,2 @@
+u radicale - "Radicale user"
+m radicale http
Copied: radicale/repos/community-staging-any/radicale-tmpfiles.conf (from rev 358818, radicale/trunk/radicale-tmpfiles.conf)
===================================================================
--- community-staging-any/radicale-tmpfiles.conf (rev 0)
+++ community-staging-any/radicale-tmpfiles.conf 2018-07-13 20:03:09 UTC (rev 358819)
@@ -0,0 +1,3 @@
+d /etc/radicale 0750 root radicale -
+z /etc/radicale/config 0644 root radicale -
+d /var/lib/radicale 0750 radicale radicale -
Copied: radicale/repos/community-staging-any/radicale.service (from rev 358818, radicale/trunk/radicale.service)
===================================================================
--- community-staging-any/radicale.service (rev 0)
+++ community-staging-any/radicale.service 2018-07-13 20:03:09 UTC (rev 358819)
@@ -0,0 +1,25 @@
+[Unit]
+Description=radicale - A simple CalDAV (calendar) and CardDAV (contact) server
+After=syslog.target network.target
+Requires=network.target
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/radicale -f
+User=radicale
+Group=radicale
+Restart=on-failure
+UMask=0027
+PrivateTmp=yes
+PrivateDevices=yes
+ProtectSystem=full
+ProtectHome=yes
+ProtectKernelTunables=yes
+ProtectKernelModules=yes
+ProtectControlGroups=yes
+NoNewPrivileges=yes
+ReadWriteDirectories=/var/lib/radicale
+
+[Install]
+WantedBy=multi-user.target
+
More information about the arch-commits
mailing list