From 02ceacddddac2b3b708b06e25ac30c2da893fa5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sun, 28 Jan 2018 01:27:54 +0100 Subject: Try to update radicale --- www-apps/radicale/Manifest | 1 + www-apps/radicale/files/radicale.init.d | 26 ++++++++++++++++++++++++ www-apps/radicale/radicale-2.1.8.ebuild | 36 +++++++++++++++++++++++++++++++++ 3 files changed, 63 insertions(+) create mode 100644 www-apps/radicale/Manifest create mode 100644 www-apps/radicale/files/radicale.init.d create mode 100644 www-apps/radicale/radicale-2.1.8.ebuild (limited to 'www-apps/radicale') diff --git a/www-apps/radicale/Manifest b/www-apps/radicale/Manifest new file mode 100644 index 0000000..f41297e --- /dev/null +++ b/www-apps/radicale/Manifest @@ -0,0 +1 @@ +DIST 2.1.8.tar.gz 89769 SHA256 fdf3942973e6778430cf1abbb8c8cb113ff104dd12b47a894642a2ebf6cf5e88 SHA512 70d7c890a733fb27d007fa593d0140bfd3bde1ff46235252a2cdd3ceaf3bc9f998acb62e131f9bc71aa1c55f51c297e4f494cb22f8cba3c5d8d90069e4957c87 WHIRLPOOL 1424f29241f0fff93c697cea1ff171f0c992d93fb4af41b435a2ac46ac052a07756d0fb8d005edcf73f2d2722c7daf71fb6f7fd990d21e47c1c75dab1c9fb56a diff --git a/www-apps/radicale/files/radicale.init.d b/www-apps/radicale/files/radicale.init.d new file mode 100644 index 0000000..a59e8d3 --- /dev/null +++ b/www-apps/radicale/files/radicale.init.d @@ -0,0 +1,26 @@ +#!/sbin/openrc-run +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +PIDFILE=/var/run/radicale.pid + +depend() { + use net + need localmount +} + +start() { + ebegin "Starting radicale" + start-stop-daemon --start --quiet --background \ + --user radicale \ + --pidfile ${PIDFILE} --make-pidfile \ + --exec /usr/bin/radicale -- --foreground + eend $? +} + +stop() { + ebegin "Stopping radicale" + start-stop-daemon --stop --quiet \ + --pidfile ${PIDFILE} + eend $? +} diff --git a/www-apps/radicale/radicale-2.1.8.ebuild b/www-apps/radicale/radicale-2.1.8.ebuild new file mode 100644 index 0000000..19e37d0 --- /dev/null +++ b/www-apps/radicale/radicale-2.1.8.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) + +inherit eutils distutils-r1 user + +DESCRIPTION="A simple CalDAV calendar server" +HOMEPAGE="http://www.radicale.org/" +SRC_URI="https://github.com/Kozea/Radicale/archive/${PV}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 ~arm ~x86" +IUSE="" + +UDIR=/var/lib/radicale + +pkg_setup() { + enewgroup radicale + enewuser radicale -1 -1 ${UDIR} radicale +} + +python_install_all() { + # init file + newinitd "${FILESDIR}"/radicale.init.d radicale + + # directories + diropts -m0750 + dodir ${UDIR} + fowners radicale:radicale ${UDIR} + + distutils-r1_python_install_all +} -- cgit v1.2.3