Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/davical/
Date: Sun, 06 Feb 2022 19:47:53
Message-Id: 1644176026.5b546f2ea92035bfc43b61aa42d9f463b29ac865.ionen@gentoo
1 commit: 5b546f2ea92035bfc43b61aa42d9f463b29ac865
2 Author: Till Schäfer <till2.schaefer <AT> uni-dortmund <DOT> de>
3 AuthorDate: Mon Jan 17 09:38:50 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 6 19:33:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b546f2e
7
8 www-apps/davical: version bump to 1.1.10
9
10 + update to EAPI 8
11
12 Package-Manager: Portage-3.0.28, Repoman-3.0.3
13 Signed-off-by: Till Schäfer <till2.schaefer <AT> uni-dortmund.de>
14 Closes: https://github.com/gentoo/gentoo/pull/23836
15 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
16
17 www-apps/davical/Manifest | 1 +
18 www-apps/davical/davical-1.1.10.ebuild | 72 ++++++++++++++++++++++++++++++++++
19 2 files changed, 73 insertions(+)
20
21 diff --git a/www-apps/davical/Manifest b/www-apps/davical/Manifest
22 index 7bb5a282f73d..fd9d7aa033e9 100644
23 --- a/www-apps/davical/Manifest
24 +++ b/www-apps/davical/Manifest
25 @@ -1 +1,2 @@
26 +DIST davical-1.1.10.tar.xz 1367356 BLAKE2B e93be0e4ce2768e13635247d006792a40865bcbe95698fa5bc7a7a20503acae0c1adbc1a2573f84043e4606342a468c5a606dab4c025edc9e68dae9a5d9aa10e SHA512 d307fc600c50bd294497ff9ab8fdc7a2d966e5360acb8babe3549a754204bbc73a44b89a1c4347f9527cf4f99e0091afc9bf92bbdd46e6843b5830489ad911aa
27 DIST davical-1.1.9.3.tar.xz 1359608 BLAKE2B d936fa5809413eac92e996262074972a04e1ac2d50d06c921e0f70468dde2b67175c6463d73ead09d5b2bce4ab1c2a02ccb45b64ee43066f6a9609c5ccdd01ee SHA512 cad28a991900d4cd9b1f86aeda7861482eef8707a02a371af53bd9cd17f9b5417ae81ccf1129d01fa5786f7bc9edc7478eb5a7274147039ce3ef603874c093a6
28
29 diff --git a/www-apps/davical/davical-1.1.10.ebuild b/www-apps/davical/davical-1.1.10.ebuild
30 new file mode 100644
31 index 000000000000..55191dde88dd
32 --- /dev/null
33 +++ b/www-apps/davical/davical-1.1.10.ebuild
34 @@ -0,0 +1,72 @@
35 +# Copyright 1999-2022 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=8
39 +
40 +inherit optfeature webapp
41 +
42 +DESCRIPTION="A CalDAV and CardDAV Server"
43 +HOMEPAGE="https://www.davical.org/"
44 +SRC_URI="https://www.davical.org/downloads/${PN}_${PV}.orig.tar.xz -> ${P}.tar.xz"
45 +
46 +LICENSE="GPL-2 GPL-2+ GPL-3+ LGPL-2.1+ LGPL-3+"
47 +KEYWORDS="~amd64 ~x86"
48 +
49 +BDEPEND="sys-devel/gettext"
50 +
51 +RDEPEND="app-admin/pwgen
52 + dev-lang/php[calendar,curl,iconv,imap,nls,pdo,postgres,xml]
53 + dev-perl/DBD-Pg
54 + dev-perl/DBI
55 + dev-perl/YAML
56 + >=dev-php/awl-0.62
57 + virtual/httpd-php"
58 +
59 +need_httpd
60 +
61 +S="${WORKDIR}"
62 +
63 +src_compile() {
64 + emake built-locale
65 +}
66 +
67 +src_install() {
68 + webapp_src_preinst
69 +
70 + einstalldocs
71 +
72 + einfo "Installing web files"
73 + insinto "${MY_HTDOCSDIR}"
74 + doins -r htdocs/. htdocs/.htaccess
75 +
76 + einfo "Installing main files and i18n"
77 + insinto "${MY_HOSTROOTDIR}/${PN}"
78 + doins -r inc locale
79 + rm "${ED}/${MY_HOSTROOTDIR}/${PN}/inc/always.php.in" || die
80 +
81 + einfo "Installing sql files"
82 + insinto "${MY_SQLSCRIPTSDIR}"
83 + doins -r dba/.
84 +
85 + insinto /etc/${PN}
86 + doins -r config/. "${FILESDIR}/vhost-example"
87 +
88 + webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt"
89 + webapp_postupgrade_txt en "${FILESDIR}/postupgrade-en.txt"
90 + webapp_src_install
91 +
92 + fperms +x "${MY_SQLSCRIPTSDIR}/create-database.sh"
93 + fperms +x "${MY_SQLSCRIPTSDIR}/update-davical-database"
94 +}
95 +
96 +pkg_postinst() {
97 + elog "If you are upgrading from a previous version of davical, don't forget to"
98 + elog "upgrade the database structure with"
99 + elog " cd /usr/share/webapps/davical/${PVR}/sqlscripts/"
100 + elog " ./update-davical-database -dbuser xxxxxxx -appuser xxxxxx"
101 +
102 + webapp_pkg_postinst
103 +
104 + elog ""
105 + optfeature "LDAP authentication" dev-lang/php[ldap]
106 +}