commit: f1cb98b5d79546354251a56b1889ff63250d4a19 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org> AuthorDate: Sat May 3 11:51:36 2025 +0000 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org> CommitDate: Sat May 3 11:51:36 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1cb98b5
www-apps/baikal: cleanup old Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org> www-apps/baikal/Manifest | 2 -- www-apps/baikal/baikal-0.9.3.ebuild | 62 ------------------------------------- www-apps/baikal/baikal-0.9.5.ebuild | 55 -------------------------------- 3 files changed, 119 deletions(-) diff --git a/www-apps/baikal/Manifest b/www-apps/baikal/Manifest index 335f9e2b7671..058bd8949bac 100644 --- a/www-apps/baikal/Manifest +++ b/www-apps/baikal/Manifest @@ -1,3 +1 @@ DIST baikal-0.10.1.zip 2857336 BLAKE2B fe3177f031105d0367169e4673bb68f473b1797227fb1912077fc7fd97e364a439a4cfa14cab10a7632ca72227e8519bcb4e8294ce7da4beb6599c17472db9e3 SHA512 372027dc424ab3efa0c0f6f597cee15627dbfbb5709d1f9ddf18a721d31c4fa29c7a800c05e57efdf5d2b25cfdb4f1fa110661e19a85c2b2b4bf03eea15981f9 -DIST baikal-0.9.3.zip 2978666 BLAKE2B f2726560916979766c95af0ff63cb1cbd5bb677f377ea20e41064c0a88725742193341e6a3246f64930c445f425a7026499ed55f1949ee221da553bfec538755 SHA512 bdcd3848ba7c99f94a1f20c9fee48f24bb9e004a325f482d6b5324eff1f0aa2fddd284ff5f9ae6dd0b67455852aa82e434174358c58d76b6009945bc3395768c -DIST baikal-0.9.5.zip 2828793 BLAKE2B bd4c2e5887a78da6e1bd94c73452a1df22a68d626572aca728758bd95553c5f79a99d47418909b339a837efff25a12ef8b3e1c041ba32b888224b04e93201206 SHA512 e544ed39047788bf001c81a44eb69a3db30a871253cb6bf12b54d5d476eaadc63d723192d41b67f2cf908a72d4c722def03d853df68b7fd464a4093e08ed0f19 diff --git a/www-apps/baikal/baikal-0.9.3.ebuild b/www-apps/baikal/baikal-0.9.3.ebuild deleted file mode 100644 index 7d0172732149..000000000000 --- a/www-apps/baikal/baikal-0.9.3.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit webapp - -DESCRIPTION="Lightweight CalDAV+CardDAV server" -HOMEPAGE="https://sabre.io/baikal/" -SRC_URI="https://github.com/sabre-io/Baikal/releases/download/${PV}/${P}.zip" - -LICENSE="GPL-3" -KEYWORDS="~amd64 ~arm ~ppc64 ~riscv" -IUSE="+mysql sqlite" -REQUIRED_USE="|| ( mysql sqlite )" - -DEPEND="app-arch/unzip" -RDEPEND=">=dev-lang/php-6[ctype,filter,json(+),pdo,session,xml,xmlreader,xmlwriter,mysql?,sqlite?] - mysql? ( virtual/mysql ) - sqlite? ( dev-db/sqlite ) - virtual/httpd-php" - -S=${WORKDIR}/${PN} - -src_install() { - webapp_src_preinst - - dodoc *.md - - einfo "Installing web files" - insinto "${MY_HTDOCSDIR}" - doins -r html/* html/.htaccess Core vendor - - einfo "Setting up container for configuration" - dodir /etc/${PN} - - # setup config in /etc - # we are not allowed to use straight-forward absolute symlink :( - local root path htdocsdir=${MY_HTDOCSDIR%/} - while [[ -n ${htdocsdir} ]] ; do - root+="../" - htdocsdir=${htdocsdir%/*} - # trim duplicate slashes - while [[ ${htdocsdir} == */ ]] ; do - htdocsdir=${htdocsdir%/} - done - done - dosym ${root%/}/etc/${PN} "${MY_HTDOCSDIR}"/Specific - dosym ${root%/}/etc/${PN} "${MY_HTDOCSDIR}"/config - dosym . "${MY_HTDOCSDIR}"/html - - webapp_postinst_txt en "${FILESDIR}/postinstall-v0.7-en.txt" - webapp_src_install - - if has_version www-servers/apache ; then - fowners -R apache:apache /etc/${PN} - elif has_version www-servers/nginx ; then - fowners -R nginx:nginx /etc/${PN} - else - einfo "/etc/${PN} must be owned by the webserver user for baikal" - fi -} diff --git a/www-apps/baikal/baikal-0.9.5.ebuild b/www-apps/baikal/baikal-0.9.5.ebuild deleted file mode 100644 index 7def5f0dd436..000000000000 --- a/www-apps/baikal/baikal-0.9.5.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit webapp - -DESCRIPTION="Lightweight CalDAV+CardDAV server" -HOMEPAGE="https://sabre.io/baikal/" -SRC_URI="https://github.com/sabre-io/Baikal/releases/download/${PV}/${P}.zip" - -LICENSE="GPL-3" -KEYWORDS="~amd64 ~arm ~ppc64 ~riscv" -IUSE="+mysql sqlite" -REQUIRED_USE="|| ( mysql sqlite )" - -DEPEND="app-arch/unzip" -RDEPEND=">=dev-lang/php-6[ctype,filter,json(+),pdo,session,xml,xmlreader,xmlwriter,mysql?,sqlite?] - mysql? ( virtual/mysql ) - sqlite? ( dev-db/sqlite ) - virtual/httpd-php" - -S=${WORKDIR}/${PN} - -src_install() { - webapp_src_preinst - - dodoc *.md - - einfo "Installing web files" - insinto "${MY_HTDOCSDIR}" - doins -r html/* html/.htaccess Core vendor - - einfo "Setting up container for configuration" - dodir /etc/${PN} - fperms o+x /etc/${PN} # allow webserver to read config - - # setup config in /etc - # we are not allowed to use straight-forward absolute symlink :( - local root path htdocsdir=${MY_HTDOCSDIR%/} - while [[ -n ${htdocsdir} ]] ; do - root+="../" - htdocsdir=${htdocsdir%/*} - # trim duplicate slashes - while [[ ${htdocsdir} == */ ]] ; do - htdocsdir=${htdocsdir%/} - done - done - dosym ${root%/}/etc/${PN} "${MY_HTDOCSDIR}"/Specific - dosym ${root%/}/etc/${PN} "${MY_HTDOCSDIR}"/config - dosym . "${MY_HTDOCSDIR}"/html - - webapp_postinst_txt en "${FILESDIR}/postinstall-v0.7-en.txt" - webapp_src_install -}
