summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2013-09-30 21:48:02 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2013-09-30 21:48:02 +0200
commitdec20bad9945aebca1db139158647ec7eb7e9c1a (patch)
tree0769e45576c617ecc4f17e13f6a35c472ff32efb
parenta0d53976faf1afd8128e5edc02928abf63cba944 (diff)
downloadoverlay-dec20bad9945aebca1db139158647ec7eb7e9c1a.tar.gz
overlay-dec20bad9945aebca1db139158647ec7eb7e9c1a.tar.bz2
overlay-dec20bad9945aebca1db139158647ec7eb7e9c1a.zip
Remove old radicale version
-rw-r--r--app-office/radicale/Manifest1
-rw-r--r--app-office/radicale/radicale-0.7.1-r1.ebuild84
2 files changed, 0 insertions, 85 deletions
diff --git a/app-office/radicale/Manifest b/app-office/radicale/Manifest
index fdb9d3b..996da46 100644
--- a/app-office/radicale/Manifest
+++ b/app-office/radicale/Manifest
@@ -1,2 +1 @@
-DIST Radicale-0.7.1.tar.gz 35355 SHA256 36e076b8c54be9df61a8434e9670d852429dcae557fadb77de23e762258bb8e4 SHA512 00ad9788b39a33f94e656e9104e1a81a9052b182021ea486d865a826c8e8711d58476beb35b89fd46371166886d9a312f417db49d81293d0434af0261c1636e1 WHIRLPOOL a353dad90c3391e104b113479b975e4a29049e7c4301122c6ed064233cc757661ea56ee92fbfe21c97e2702787bd8f639ae93418d68ac3abacb744848d909fa1
DIST Radicale-0.8.tar.gz 39813 SHA256 e8c0df5239c22f2687a09eca7d53c318706648aff72b620849ed3f7540bc1941 SHA512 8b4db28b1fedc78e6d638a8e00dbbe0f37ada39686aae4afdf427461bbd7189d8222adf417fa5e546d9f6a6c7ff0c08eb3aa8609e9fb57c17a9e30161eabba85 WHIRLPOOL c705914db79503215f86e40545950e0fb07d439bc89372849865fece597eb863c28bd13255206a6e298308ba0a819b2e065ca05b592fc7bbb0c2c44896322138
diff --git a/app-office/radicale/radicale-0.7.1-r1.ebuild b/app-office/radicale/radicale-0.7.1-r1.ebuild
deleted file mode 100644
index c85f5f9..0000000
--- a/app-office/radicale/radicale-0.7.1-r1.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-PYTHON_DEPEND="*:2.6"
-SUPPORT_PYTHON_ABIS=1
-
-inherit distutils user
-
-MY_PN="Radicale"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="A simple CalDAV calendar server"
-HOMEPAGE="http://www.radicale.org/"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="fastcgi ldap ssl"
-
-# the '>=' goes ok, as radicale supports _all_ other python version
-# this includes all 3.* versions
-RDEPEND="ssl? ( >=dev-lang/python-2.6.6[ssl] )
- ldap? ( dev-python/python-ldap )
- fastcgi? ( dev-python/flup )"
-
-# radicale's authentication against PAM is not possible here:
-# Gentoo has not included the package
-# also it seems old, which is bad with respect to
-# http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2012-1502
-
-S=${WORKDIR}/${MY_P}
-
-RDIR=/var/lib/radicale
-LDIR=/var/log/radicale
-
-pkg_setup() {
- python_pkg_setup
- enewgroup radicale
- enewuser radicale -1 -1 ${RDIR} radicale
-}
-
-src_prepare() {
- # fix pathes
- sed -i -e "s:^\(filesystem_folder = \).*$:\1${RDIR}:g" \
- config || die
- sed -i -e "s;^\(args = ('/var/log/radicale\);\1/radicale.log;" \
- logging || die
- distutils_src_prepare
-}
-
-src_install() {
- # delete the useless .rst, so that it is not installed
- rm README.rst
-
- distutils_src_install
-
- # init file
- newinitd "${FILESDIR}"/radicale.init.d radicale || die
-
- # directories
- diropts -m0750
- dodir ${RDIR}; fowners radicale:radicale ${RDIR}
- dodir ${LDIR}; fowners radicale:radicale ${LDIR}
-
- # config file
- insinto /etc/${PN}
- doins config logging || die
-
- # fcgi and wsgi files
- insinto /usr/share/${PN}
- doins radicale.wsgi
- use fastcgi && doins radicale.fcgi
-}
-
-pkg_postinst() {
- einfo "Radicale now supports WSGI."
- einfo "A sample wsgi-script has been put into ${ROOT}usr/share/${PN}."
- use fastcgi && einfo "You will also find there an example fcgi-script."
-
- distutils_pkg_postinst
-}