[arch-commits] Commit in radicale/repos (6 files)
Evangelos Foutras
foutrelis at archlinux.org
Thu Nov 12 18:58:28 UTC 2020
Date: Thursday, November 12, 2020 @ 18:58:28
Author: foutrelis
Revision: 753287
archrelease: copy trunk to community-staging-any
Added:
radicale/repos/community-staging-any/
radicale/repos/community-staging-any/PKGBUILD
(from rev 753286, radicale/trunk/PKGBUILD)
radicale/repos/community-staging-any/radicale-sysusers.conf
(from rev 753286, radicale/trunk/radicale-sysusers.conf)
radicale/repos/community-staging-any/radicale-tmpfiles.conf
(from rev 753286, radicale/trunk/radicale-tmpfiles.conf)
radicale/repos/community-staging-any/radicale.install
(from rev 753286, radicale/trunk/radicale.install)
radicale/repos/community-staging-any/radicale.service
(from rev 753286, radicale/trunk/radicale.service)
------------------------+
PKGBUILD | 79 +++++++++++++++++++++++++++++++++++++++++++++++
radicale-sysusers.conf | 1
radicale-tmpfiles.conf | 2 +
radicale.install | 8 ++++
radicale.service | 38 ++++++++++++++++++++++
5 files changed, 128 insertions(+)
Copied: radicale/repos/community-staging-any/PKGBUILD (from rev 753286, radicale/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2020-11-12 18:58:28 UTC (rev 753287)
@@ -0,0 +1,79 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+# Contributor: Moritz Lipp <mlq at pwmt.org>
+# Contributor: fordprefect <fordprefect at dukun.de>
+# Contributor: Thor77 <thor77 at thor77.org>
+
+pkgname=radicale
+_name=Radicale
+pkgver=3.0.6
+pkgrel=2
+pkgdesc='Simple calendar (CalDAV) and contact (CardDAV) server'
+arch=('any')
+url="https://radicale.org/"
+license=('GPL3')
+depends=('python-bcrypt' 'python-dateutil' 'python-defusedxml' 'python-passlib'
+'python-setuptools' 'python-vobject')
+checkdepends=('python-pytest' 'python-pytest-runner' 'python-waitress')
+backup=('etc/radicale/config'
+ 'etc/radicale/rights'
+ 'etc/radicale/users')
+install="${pkgname}.install"
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Kozea/${pkgname}/archive/${pkgver}.tar.gz"
+ "${pkgname}-sysusers.conf"
+ "${pkgname}-tmpfiles.conf"
+ "${pkgname}.service")
+sha512sums=('e9741547395fae8886ad84b6807422ebb196f5293d484f5f6136498058576cff697e28c117216f151d56494af83593347ceee40a6efa21272b803d0f301a396d'
+ '56dffb66e018cfbf158dc5d8fe638b3cb31229945f659aae5623f219bcd1d68ddc375f1633fa8e857a9b2f50c9e05a06efce165370137d6e116a4f187466637f'
+ '9d0dd88e4a34e9f97abda1785698e4b2a5e8202063deeb91b84e13c05e00b07e45b8d4d9eca09b9241b1138bbbfdc999dba0135c18f5bc0c08d65b0cd83b367b'
+ '6f411daf18fbeeb7cc8626652f4b87ac6ec5e4ec1212821c426de711c907be41ab995d5b35be4ff0d663edb1028f99d6c07a53158acf519e7560e230c022c986')
+b2sums=('fa4b70c9920d518df6c939395eca857c237a75218b90ada45564f2d84266d65df12898e4efbb52905829948061e10e72b5442943fd5061a28447330ae8d491e8'
+ 'b3af60e144ef857e42ec672e806e9600265ab7d2ea4a75011de9ab56918a008437afdacb301df210b54424fb7ff1e9a332831c67b2e58fd6bc0a0aa1eebe8909'
+ '41916d62f5e3f1060bd21db0722abe837754a4cb915af218c904dafac4b06794f8fde2e34486fb7392777b4738502f3df4c1390b835050045337585b064e23bb'
+ '5ae0e87d4235a864ca482a6701e0631cdaccc3dceef71237d5bd708be08c3b7e1890793d01f8c51eaa108a097cfefbb31abb71cf69b195c0f50f95720965391f')
+
+prepare() {
+ mv -v ${_name}-${pkgver} ${pkgname}-${pkgver}
+ cd ${pkgname}-${pkgver}
+ # removing flake8, isort and coverage
+ sed -e '/addopts/d' -i setup.cfg
+ touch "users"
+}
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ python setup.py build
+}
+
+check() {
+ local python_version=$(python -c 'import sys; print(".".join(map(str, sys.version_info[:2])))')
+ cd "${pkgname}-${pkgver}"
+ mkdir -vp testdir
+ python setup.py install --skip-build \
+ --optimize=1 \
+ --root="testdir"
+ export PYTHONPATH="testdir/usr/lib/python${python_version}/site-packages:${PYTHONPATH}"
+ pytest -v
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ python setup.py install --skip-build \
+ --optimize=1 \
+ --root="${pkgdir}"
+ # config
+ install -vDm 644 {config,rights,users} -t "${pkgdir}/etc/${pkgname}/"
+ # wsgi
+ install -vDm 644 "${pkgname}.wsgi" \
+ -t "${pkgdir}/usr/share/${pkgname}/"
+ # 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 -vDm 644 {NEWS,README}.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
+}
Copied: radicale/repos/community-staging-any/radicale-sysusers.conf (from rev 753286, radicale/trunk/radicale-sysusers.conf)
===================================================================
--- community-staging-any/radicale-sysusers.conf (rev 0)
+++ community-staging-any/radicale-sysusers.conf 2020-11-12 18:58:28 UTC (rev 753287)
@@ -0,0 +1 @@
+u radicale - "Radicale user"
Copied: radicale/repos/community-staging-any/radicale-tmpfiles.conf (from rev 753286, radicale/trunk/radicale-tmpfiles.conf)
===================================================================
--- community-staging-any/radicale-tmpfiles.conf (rev 0)
+++ community-staging-any/radicale-tmpfiles.conf 2020-11-12 18:58:28 UTC (rev 753287)
@@ -0,0 +1,2 @@
+z /etc/radicale/users 0640 radicale radicale -
+d /var/lib/radicale 0750 radicale radicale -
Copied: radicale/repos/community-staging-any/radicale.install (from rev 753286, radicale/trunk/radicale.install)
===================================================================
--- community-staging-any/radicale.install (rev 0)
+++ community-staging-any/radicale.install 2020-11-12 18:58:28 UTC (rev 753287)
@@ -0,0 +1,8 @@
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+ # configuration and file system storage changes with >= 3.0.0
+ if [ "$(vercmp "$2" "3.0.0")" -le 0 ]; then
+ echo "WARNING: Major changes introduced to filesystem storage and configuration. Read /usr/share/doc/radicale/NEWS.md"
+ fi
+}
Copied: radicale/repos/community-staging-any/radicale.service (from rev 753286, radicale/trunk/radicale.service)
===================================================================
--- community-staging-any/radicale.service (rev 0)
+++ community-staging-any/radicale.service 2020-11-12 18:58:28 UTC (rev 753287)
@@ -0,0 +1,38 @@
+[Unit]
+Description=radicale - A simple CalDAV (calendar) and CardDAV (contact) server
+After=syslog.target network.target
+Requires=network.target
+
+[Service]
+CapabilityBoundingSet=CAP_NET_BIND_SERVICE
+ExecStart=/usr/bin/radicale
+Group=radicale
+IPAccounting=true
+LockPersonality=true
+MemoryDenyWriteExecute=true
+NoNewPrivileges=yes
+PrivateTmp=yes
+PrivateDevices=yes
+ProtectSystem=strict
+ProtectHome=yes
+ProtectHostname=true
+ProtectKernelLogs=true
+ProtectKernelModules=true
+ProtectKernelTunables=true
+ProtectControlGroups=true
+ReadWritePaths=/var/lib/radicale
+RemoveIPC=true
+Restart=on-failure
+RestrictAddressFamilies=~AF_PACKET AF_NETLINK AF_UNIX
+RestrictNamespaces=true
+RestrictRealtime=true
+RestrictSUIDSGID=true
+SystemCallArchitectures=native
+SystemCallFilter=@system-service
+SystemCallFilter=~@resources
+UMask=0027
+User=radicale
+
+[Install]
+WantedBy=multi-user.target
+
More information about the arch-commits
mailing list