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: Tue, 19 Oct 2021 13:39:46
Message-Id: 1634650776.b8ae9a98388f884fe8951d4a32ec1704cad31556.candrews@gentoo
1 commit: b8ae9a98388f884fe8951d4a32ec1704cad31556
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 19 13:36:11 2021 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 19 13:39:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8ae9a98
7
8 mail-client/roundcube: 1.5.0 version bump
9
10 Closes: https://bugs.gentoo.org/818853
11 Package-Manager: Portage-3.0.28, Repoman-3.0.3
12 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
13
14 mail-client/roundcube/Manifest | 1 +
15 mail-client/roundcube/roundcube-1.5.0.ebuild | 97 ++++++++++++++++++++++++++++
16 2 files changed, 98 insertions(+)
17
18 diff --git a/mail-client/roundcube/Manifest b/mail-client/roundcube/Manifest
19 index 4f519aef7c5..de79960d1af 100644
20 --- a/mail-client/roundcube/Manifest
21 +++ b/mail-client/roundcube/Manifest
22 @@ -1,2 +1,3 @@
23 DIST roundcubemail-1.4.11-complete.tar.gz 7048262 BLAKE2B aaf5e6ce5b07577f687788730bc9181334402bb2ff5e78fb306425913b62b4a8f72505547bdcc8673806b48b9ba8252b8059b59399efc95a51877d5c672a4760 SHA512 2bfe0ff3716f76bf9eb5bf5f7b62c738b233c57e67d6ac767c044d1a3a694ae003642d9cc68a18d6f6ba94135aa7ee1692db920e9127128669faee9ddf78fe80
24 DIST roundcubemail-1.5-rc-complete.tar.gz 7683911 BLAKE2B e67bbb8ad3d5ffa69091c18b519f78a3dc6d4cc1783921aab9de3c86351d2946cbf784267f5db69434da25413ad1f961161289b47408f14d9e6fa26d8b1e0999 SHA512 4e49e91bb53546e6ac348e33e64019afeee2ce6b78caa4375148fc6fac5abbe8e5db42670c5527e3678abe838ddf349275353e7919584d751bf4c321a62fe795
25 +DIST roundcubemail-1.5.0-complete.tar.gz 7802014 BLAKE2B d81a521c264b47b55b7f868caf4fd8f0d7fdb2f0d04bf560bf1774c39aa4d0b4143ba1edb977941a4596848921671ec47a0dfd21f20f7e28778a021d58bec402 SHA512 cba32ee2b86864af9d9163d83fa49763267e3420bee59b86d47b889e1bc53871ed2ff5b2c1444778324f4b259e99752faa3b72f909a8f9c26c7af9c96ba08a54
26
27 diff --git a/mail-client/roundcube/roundcube-1.5.0.ebuild b/mail-client/roundcube/roundcube-1.5.0.ebuild
28 new file mode 100644
29 index 00000000000..e63578dfa2c
30 --- /dev/null
31 +++ b/mail-client/roundcube/roundcube-1.5.0.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 +}