www-apps/radicale: remove old

Closes: https://github.com/gentoo/gentoo/pull/45071
Signed-off-by: Henning Schild <henning@hennsch.de>
Signed-off-by: Yixun Lan <dlan@gentoo.org>
This commit is contained in:
Henning Schild 2025-12-18 17:15:24 +01:00 committed by Yixun Lan
parent dabd93c448
commit 3504cfe0af
No known key found for this signature in database
GPG Key ID: 31AAEA47594DBBED
2 changed files with 0 additions and 97 deletions

View File

@ -1,3 +1,2 @@
DIST Radicale-3.5.10.gh.tar.gz 235636 BLAKE2B 86c89271172206f5ec9bb10b666f229667ce3515016e90728c6dfe71992a77dd20fced46b35ebb8b38f880a4fd272756cbfbb9ce6ce708e0df2e8746df27ea9b SHA512 d7906d300fa68b81fd84520862581c565caa9b000202674827eb8a4954a8375f94857fc6c2c85e710285fca859e378a4bab50404b6fd31f398a397edfaab4aaf
DIST Radicale-3.5.8.gh.tar.gz 229736 BLAKE2B 42fdc1b7861cb8a6c9ac5935dc607db6cac30185baf34f1ccf03bf70a4f36e4eb4ca16685f8fb76e97e8b71b71990423caf09ad13c64206ebdb2071bc46da212 SHA512 6789bfd2bcc777cd0b193b58c84a0f6d917e971fa0d444381ec462eb93a638fe09a76ff86891d6f19b5492818c7df1b5c098539596eca3a71996b4f188eb93a4
DIST Radicale-3.5.9.gh.tar.gz 230390 BLAKE2B 2cd633ec39777a62314a088d4e7dbd44fb8a58bfe52b0595b7112172b69f876207e47486b7f341a594b10a7ff49d9de33ea91a9570ee6e20cdb7bcf6fa725b94 SHA512 dd51608b78860cb368b6a126dcd3556b5be38b9c60121b553065b54ca9593719e89d3e49c796f859fa9965ea675880062ed4b53d66f452d6fc2e90a2d23e8770

View File

@ -1,96 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1 optfeature systemd
MY_P=${P^}
DESCRIPTION="A simple CalDAV calendar server"
HOMEPAGE="https://radicale.org/"
SRC_URI="
https://github.com/Kozea/Radicale/archive/refs/tags/v${PV}.tar.gz
-> ${MY_P}.gh.tar.gz
"
S=${WORKDIR}/${MY_P}
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
RDEPEND="
>=acct-user/radicale-0-r2
acct-group/radicale
dev-python/defusedxml[${PYTHON_USEDEP}]
dev-python/passlib[${PYTHON_USEDEP}]
dev-python/vobject[${PYTHON_USEDEP}]
sys-apps/util-linux
"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/waitress[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
RDIR=/var/lib/"${PN}"
DOCS=( DOCUMENTATION.md CHANGELOG.md )
python_test() {
epytest -o addopts= radicale/tests/
}
python_install_all() {
rm README* || die
# init file
newinitd "${FILESDIR}"/radicale-r4.init.d radicale
systemd_dounit "${FILESDIR}/${PN}.service"
# directories
keepdir "${RDIR}"
fperms 0750 "${RDIR}"
fowners "${PN}:${PN}" "${RDIR}"
# config file
insinto /etc/"${PN}"
doins config
# fcgi and wsgi files
exeinto /usr/share/"${PN}"
doexe radicale.wsgi
distutils-r1_python_install_all
}
pkg_postinst() {
local _erdir="${EROOT}${RDIR}"
ewarn ""
ewarn "Since 3.5.0 the default [auth] type is \"denyall\". You need to"
ewarn "change your config if you used the deafult type so far!"
ewarn ""
einfo "A sample WSGI script has been put into ${EROOT}/usr/share/${PN}."
einfo "You will also find there an example FastCGI script."
if [[ $(stat --format="%U:%G:%a" "${_erdir}") != "${PN}:${PN}:750" ]]
then
ewarn ""
ewarn "Unsafe file permissions detected on ${_erdir}."
ewarn "This probably comes from an earlier version of this ebuild."
ewarn "To fix run:"
ewarn "# \`chown -R ${PN}:${PN} ${_erdir}\`"
ewarn "# \`chmod 0750 ${_erdir}\`"
ewarn "# \`chmod -R o= ${_erdir}\`"
fi
optfeature "Publish changes to rabbitmq" dev-python/pika
optfeature "LDAP/LDAPS authentication" dev-python/ldap3 dev-python/python-ldap
optfeature "bcrypt password hashing" dev-python/bcrypt
optfeature "argon2 password hashing" dev-python/argon2-cffi
}