Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/roundcube/
Date: Fri, 31 Dec 2021 17:07:22
Message-Id: 1640970367.12e02c8559167e1241afc0763eb41742f782ed8d.candrews@gentoo
1 commit: 12e02c8559167e1241afc0763eb41742f782ed8d
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 31 17:06:07 2021 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 31 17:06:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12e02c85
7
8 mail-client/roundcube: 1.5.2 version bump
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 mail-client/roundcube/Manifest | 1 +
14 mail-client/roundcube/roundcube-1.5.2.ebuild | 97 ++++++++++++++++++++++++++++
15 2 files changed, 98 insertions(+)
16
17 diff --git a/mail-client/roundcube/Manifest b/mail-client/roundcube/Manifest
18 index a6bb39f7c49c..2e63fdceae55 100644
19 --- a/mail-client/roundcube/Manifest
20 +++ b/mail-client/roundcube/Manifest
21 @@ -1,3 +1,4 @@
22 DIST roundcubemail-1.4.11-complete.tar.gz 7048262 BLAKE2B aaf5e6ce5b07577f687788730bc9181334402bb2ff5e78fb306425913b62b4a8f72505547bdcc8673806b48b9ba8252b8059b59399efc95a51877d5c672a4760 SHA512 2bfe0ff3716f76bf9eb5bf5f7b62c738b233c57e67d6ac767c044d1a3a694ae003642d9cc68a18d6f6ba94135aa7ee1692db920e9127128669faee9ddf78fe80
23 DIST roundcubemail-1.5.0-complete.tar.gz 7802014 BLAKE2B d81a521c264b47b55b7f868caf4fd8f0d7fdb2f0d04bf560bf1774c39aa4d0b4143ba1edb977941a4596848921671ec47a0dfd21f20f7e28778a021d58bec402 SHA512 cba32ee2b86864af9d9163d83fa49763267e3420bee59b86d47b889e1bc53871ed2ff5b2c1444778324f4b259e99752faa3b72f909a8f9c26c7af9c96ba08a54
24 DIST roundcubemail-1.5.1-complete.tar.gz 7827081 BLAKE2B 1547ba369ef8e5f2b99ed72d562de3f76ff973d9617f4394bb89e281917264c9304aeb2b44cffd16952c2295111707215fe0426ce0f3f1d4a5c94df5f0811235 SHA512 bcea37859fbbee2f474cda024e5648b823a2da44ae69e5036a5b7e6add1d73dbfc1cd1cc32a3e01e59b0a3ba2ea03d1b028eec8e8f139fc4fb3eea8b52e28203
25 +DIST roundcubemail-1.5.2-complete.tar.gz 7852981 BLAKE2B 36920aa30301b96e1157a586508f3d460c26cfd692919b803bc8cecb31d99ebec5f93a62c725dd5d1dbd1ff68d59c97278b07eaabec42c5fb02c320c72fac8bf SHA512 96faa8c95c23b538ebfa91f58fb918b37185dbd1c09f2d128c9f8c800a0e3d6a2abbfa52753fb6a7ee47b633f35e2b31c92623107116dc760dfa9a22a4b2a23c
26
27 diff --git a/mail-client/roundcube/roundcube-1.5.2.ebuild b/mail-client/roundcube/roundcube-1.5.2.ebuild
28 new file mode 100644
29 index 000000000000..e63578dfa2c6
30 --- /dev/null
31 +++ b/mail-client/roundcube/roundcube-1.5.2.ebuild
32 @@ -0,0 +1,97 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit webapp
39 +
40 +MY_PN=${PN}mail
41 +MY_PV=${PV/_/-}
42 +MY_P=${MY_PN}-${MY_PV}
43 +
44 +DESCRIPTION="A browser-based multilingual IMAP client with an application-like user interface"
45 +HOMEPAGE="https://roundcube.net"
46 +
47 +# roundcube is GPL-licensed, the rest of the licenses here are
48 +# for bundled PEAR components, googiespell and utf8.class.php
49 +LICENSE="GPL-3 BSD PHP-2.02 PHP-3 MIT public-domain"
50 +
51 +IUSE="change-password enigma exif fileinfo ldap mysql postgres sqlite ssl spell zip"
52 +REQUIRED_USE="|| ( mysql postgres sqlite )"
53 +
54 +# this function only sets DEPEND so we need to include that in RDEPEND
55 +need_httpd_cgi
56 +
57 +RDEPEND="
58 + ${DEPEND}
59 + >=dev-lang/php-5.5.0[exif?,fileinfo?,filter,gd,iconv,intl,json(+),ldap?,pdo,postgres?,session,sqlite?,ssl?,unicode,xml,zip?]
60 + virtual/httpd-php
61 + change-password? (
62 + dev-lang/php[sockets]
63 + )
64 + enigma? (
65 + app-crypt/gnupg
66 + )
67 + mysql? (
68 + || (
69 + dev-lang/php[mysql]
70 + dev-lang/php[mysqli]
71 + )
72 + )
73 + spell? ( dev-lang/php[curl,spell] )
74 +"
75 +
76 +if [[ ${PV} == *9999 ]] ; then
77 + inherit git-r3
78 + EGIT_REPO_URI="https://github.com/roundcube/roundcubemail"
79 + EGIT_BRANCH="master"
80 + BDEPEND="${BDEPEND}
81 + app-arch/unzip
82 + dev-php/composer
83 + net-misc/curl"
84 +else
85 + SRC_URI="https://github.com/${PN}/${MY_PN}/releases/download/${MY_PV}/${MY_P}-complete.tar.gz"
86 + S="${WORKDIR}/${MY_P}"
87 + KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
88 +fi
89 +
90 +src_unpack() {
91 + if [[ "${PV}" == *9999* ]]; then
92 + git-r3_src_unpack
93 + pushd "${S}" > /dev/null || die
94 + rm Makefile || die
95 + mv composer.json-dist composer.json || die
96 + composer install --no-dev || die
97 + ./bin/install-jsdeps.sh || die
98 + popd > /dev/null || die
99 + else
100 + default
101 + fi
102 +}
103 +
104 +src_install() {
105 + webapp_src_preinst
106 +
107 + dodoc CHANGELOG.md INSTALL README.md UPGRADING SECURITY.md
108 +
109 + insinto "${MY_HTDOCSDIR}"
110 + doins -r [[:lower:]]* SQL
111 + doins .htaccess
112 +
113 + webapp_serverowned "${MY_HTDOCSDIR}"/logs
114 + webapp_serverowned "${MY_HTDOCSDIR}"/temp
115 +
116 + webapp_configfile "${MY_HTDOCSDIR}"/config/defaults.inc.php
117 + webapp_postupgrade_txt en "${FILESDIR}/POST-UPGRADE_complete.txt"
118 +
119 + webapp_src_install
120 +}
121 +
122 +pkg_postinst() {
123 + webapp_pkg_postinst
124 +
125 + if [[ -n ${REPLACING_VERSIONS} ]]; then
126 + elog "You can review the post-upgrade instructions at:"
127 + elog "${EROOT}/usr/share/webapps/${PN}/${PV}/postupgrade-en.txt"
128 + fi
129 +}