From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AE7BE158041 for ; Sat, 13 Apr 2024 13:22:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2508E2A17; Sat, 13 Apr 2024 13:22:46 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8B2E3E2A17 for ; Sat, 13 Apr 2024 13:22:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D2F0034330E for ; Sat, 13 Apr 2024 13:22:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7227D16B4 for ; Sat, 13 Apr 2024 13:22:44 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1713014200.6b229e4640714ac8c6b174e27203082a2d9ed63a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/radicale/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/radicale/radicale-3.1.8.ebuild X-VCS-Directories: www-apps/radicale/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6b229e4640714ac8c6b174e27203082a2d9ed63a X-VCS-Branch: master Date: Sat, 13 Apr 2024 13:22:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6225ef3e-091b-46a1-afb0-eb7b6279122e X-Archives-Hash: a80426ffe45d8c9b64fa380ec064ddd5 commit: 6b229e4640714ac8c6b174e27203082a2d9ed63a Author: Henning Schild hennsch de> AuthorDate: Sat Mar 16 07:40:48 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Apr 13 13:16:40 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b229e46 www-apps/radicale: remove old Signed-off-by: Henning Schild hennsch.de> Closes: https://github.com/gentoo/gentoo/pull/35778 Signed-off-by: Michał Górny gentoo.org> www-apps/radicale/radicale-3.1.8.ebuild | 93 --------------------------------- 1 file changed, 93 deletions(-) diff --git a/www-apps/radicale/radicale-3.1.8.ebuild b/www-apps/radicale/radicale-3.1.8.ebuild deleted file mode 100644 index 123b60f22bd1..000000000000 --- a/www-apps/radicale/radicale-3.1.8.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 systemd - -DESCRIPTION="A simple CalDAV calendar server" -HOMEPAGE="https://radicale.org/" -SRC_URI="https://github.com/Kozea/Radicale/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" - -MY_P="Radicale-${PV}" - -RDEPEND=" - >=acct-user/radicale-0-r2 - acct-group/radicale - dev-python/bcrypt[${PYTHON_USEDEP}] - dev-python/defusedxml[${PYTHON_USEDEP}] - dev-python/passlib[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - dev-python/vobject[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - sys-apps/util-linux -" - -BDEPEND=" - ${RDEPEND} - test? ( - dev-python/waitress[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests --install pytest - -S="${WORKDIR}/${MY_P}" - -RDIR=/var/lib/"${PN}" - -DOCS=( DOCUMENTATION.md CHANGELOG.md ) - -src_prepare() { - sed -i '/^addopts =/d' setup.cfg || die - distutils-r1_src_prepare -} - -python_test() { - epytest radicale/tests/ -} - -python_install_all() { - rm README* || die - # init file - newinitd "${FILESDIR}"/radicale-r3.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}" - - 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 -}