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