diff options
author | Fabian Groffen <grobian@gentoo.org> | 2021-01-07 15:46:06 +0100 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2021-01-07 16:31:28 +0100 |
commit | 9c4d0cc83518582c5d33a412f5fef5c3cfbdb1a4 (patch) | |
tree | 6abbb562978f58c71d052e666c63c2b417a7433c /www-apps/baikal | |
parent | net-proxy/privoxy: enable mbedtls by default (diff) | |
download | gentoo-9c4d0cc83518582c5d33a412f5fef5c3cfbdb1a4.tar.gz gentoo-9c4d0cc83518582c5d33a412f5fef5c3cfbdb1a4.tar.bz2 gentoo-9c4d0cc83518582c5d33a412f5fef5c3cfbdb1a4.zip |
www-apps/baikal: cleanup old
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'www-apps/baikal')
-rw-r--r-- | www-apps/baikal/Manifest | 2 | ||||
-rw-r--r-- | www-apps/baikal/baikal-0.6.1.ebuild | 57 | ||||
-rw-r--r-- | www-apps/baikal/baikal-0.7.1.ebuild | 58 | ||||
-rw-r--r-- | www-apps/baikal/files/postinstall-en.txt | 5 |
4 files changed, 0 insertions, 122 deletions
diff --git a/www-apps/baikal/Manifest b/www-apps/baikal/Manifest index fc5ed08bf4d8..de22ead2efac 100644 --- a/www-apps/baikal/Manifest +++ b/www-apps/baikal/Manifest @@ -1,3 +1 @@ -DIST baikal-0.6.1.zip 3437686 BLAKE2B f28d3a63166a73571116759df3662c2b19c2eeeebcd7070574dfc3ee8cb046f2d94fdbc4701669291c1bb2cb2b9b92665726127c852c5457cd285f6ffbcc9b00 SHA512 d88ed9fbe1f934d52fd798165675b90972c47c9e138de61e17a14777590ebad5006c1a414a4e0119eb8fa718e01f2aadb6e1d180e23a51fb33e1b5a3539c9e38 -DIST baikal-0.7.1.zip 3596673 BLAKE2B ab32dd922a4af0f3858db89c6349f258429d744341a2a362e8d42980e6fb6f5a5892cf4b47b4bd5d0427a7ecd599705a42d3c11a391c110f2757f6b78cee35b5 SHA512 4a04624ba3158d89d01536e01238b4ea36a40df0c95e93fa676f3e8ebe65eeaa99b241ef346fd4fc71a2f44fab9b6f2ed2bca8c69c780725e424602f4d7d6f54 DIST baikal-0.7.2.zip 3602276 BLAKE2B 160c1b45944c897e368450da935850749e4dc5c6fdb9607dc6da926a0a05d63b4921193a31fbd64be0c9ddad336ac49f5fc49c23fca5bbb251adca8793265ba9 SHA512 df1fd10c5fb63e6aa89ae4b733eacf102b11f6322c3fa6007d0308574395389c0c6bfd62b7a0d358c54baaa96a5ccdb40bd509258a59e417617bea8d0b3d42a3 diff --git a/www-apps/baikal/baikal-0.6.1.ebuild b/www-apps/baikal/baikal-0.6.1.ebuild deleted file mode 100644 index ba407dd2359c..000000000000 --- a/www-apps/baikal/baikal-0.6.1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -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" -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" - insinto /etc/${PN} - - einfo "Fixing symlinks" - local link target - find "${D}${MY_HTDOCSDIR}" -type l | while read link ; do - target=$(readlink "${link}") - target=${target/..\/Core/Core} - rm "${link}" && ln -s "${target}" "${link}" - done - dosym /etc/${PN} "${MY_HTDOCSDIR}"/Specific - dosym . "${MY_HTDOCSDIR}"/html - - webapp_postinst_txt en "${FILESDIR}/postinstall-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.7.1.ebuild b/www-apps/baikal/baikal-0.7.1.ebuild deleted file mode 100644 index 450d04422760..000000000000 --- a/www-apps/baikal/baikal-0.7.1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -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" -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} - - einfo "Fixing symlinks" - local link target - find "${D}${MY_HTDOCSDIR}" -type l | while read link ; do - target=$(readlink "${link}") - target=${target/..\/Core/Core} - rm "${link}" && ln -s "${target}" "${link}" - done - dosym /etc/${PN} "${MY_HTDOCSDIR}"/Specific - dosym /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/files/postinstall-en.txt b/www-apps/baikal/files/postinstall-en.txt deleted file mode 100644 index e6a11275dc85..000000000000 --- a/www-apps/baikal/files/postinstall-en.txt +++ /dev/null @@ -1,5 +0,0 @@ -In order to setup baikal: -- create /etc/${PN}/ENABLE_INSTALL owner apache:apache -- point your browser at the instal's URL and follow the setup -To upgrade baikal, you have to follow the setup instructions -If you're upgrading from 0.2.7, see http://sabre.io/baikal/upgrade/ |