Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in mail-client/roundcube: ChangeLog roundcube-0.9_rc2.ebuild roundcube-0.8.6.ebuild
Date: Thu, 28 Mar 2013 02:40:30
Message-Id: 20130328024025.4EA412171E@flycatcher.gentoo.org
1 radhermit 13/03/28 02:40:25
2
3 Modified: ChangeLog
4 Added: roundcube-0.9_rc2.ebuild roundcube-0.8.6.ebuild
5 Log:
6 Security bumps (bug #463554).
7
8 (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.106 mail-client/roundcube/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?rev=1.106&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?rev=1.106&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?r1=1.105&r2=1.106
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v
20 retrieving revision 1.105
21 retrieving revision 1.106
22 diff -u -r1.105 -r1.106
23 --- ChangeLog 17 Mar 2013 14:45:46 -0000 1.105
24 +++ ChangeLog 28 Mar 2013 02:40:25 -0000 1.106
25 @@ -1,6 +1,13 @@
26 # ChangeLog for mail-client/roundcube
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v 1.105 2013/03/17 14:45:46 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v 1.106 2013/03/28 02:40:25 radhermit Exp $
30 +
31 +*roundcube-0.9_rc2 (28 Mar 2013)
32 +*roundcube-0.8.6 (28 Mar 2013)
33 +
34 + 28 Mar 2013; Tim Harder <radhermit@g.o> +roundcube-0.8.6.ebuild,
35 + +roundcube-0.9_rc2.ebuild:
36 + Security bumps (bug #463554).
37
38 17 Mar 2013; Agostino Sarubbo <ago@g.o> roundcube-0.8.5.ebuild:
39 Stable for x86, wrt bug #456664
40
41
42
43 1.1 mail-client/roundcube/roundcube-0.9_rc2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/roundcube-0.9_rc2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/roundcube-0.9_rc2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: roundcube-0.9_rc2.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/roundcube-0.9_rc2.ebuild,v 1.1 2013/03/28 02:40:25 radhermit Exp $
53
54 EAPI=5
55
56 inherit webapp
57
58 MY_PN=${PN}mail
59 MY_P=${MY_PN}-${PV/_/-}
60
61 DESCRIPTION="A browser-based multilingual IMAP client with an application-like user interface"
62 HOMEPAGE="http://roundcube.net"
63 SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.gz"
64
65 # roundcube is GPL-licensed, the rest of the licenses here are
66 # for bundled PEAR components, googiespell and utf8.class.php
67 LICENSE="GPL-3 BSD PHP-2.02 PHP-3 MIT public-domain"
68 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
69 IUSE="ldap +mysql postgres sqlite ssl spell"
70
71 RDEPEND="virtual/httpd-php
72 >=dev-lang/php-5.3[crypt,gd,iconv,json,ldap?,pdo,postgres?,session,sockets,ssl?,xml,unicode]
73 mysql? ( || ( dev-lang/php[mysql] dev-lang/php[mysqli] ) )
74 spell? ( dev-lang/php[curl,spell] )
75 sqlite? ( || ( dev-lang/php[sqlite] dev-lang/php[sqlite3] ) )
76 >=dev-php/PEAR-Mail_Mime-1.8.1
77 >=dev-php/PEAR-Net_SMTP-1.4.2
78 >=dev-php/PEAR-Net_IDNA2-0.1.1
79 >=dev-php/PEAR-Auth_SASL-1.0.3"
80
81 need_httpd_cgi
82
83 S=${WORKDIR}/${MY_P}
84
85 src_prepare() {
86 cp config/db.inc.php{.dist,} || die
87 cp config/main.inc.php{.dist,} || die
88
89 # Remove bundled PEAR packages
90 rm -r program/lib/{Auth,Mail,Net,PEAR*} || die
91 }
92
93 src_install() {
94 webapp_src_preinst
95 dodoc CHANGELOG INSTALL README.md UPGRADING
96
97 insinto "${MY_HTDOCSDIR}"
98 doins -r [[:lower:]]* SQL
99 doins .htaccess
100
101 webapp_serverowned "${MY_HTDOCSDIR}"/logs
102 webapp_serverowned "${MY_HTDOCSDIR}"/temp
103
104 webapp_configfile "${MY_HTDOCSDIR}"/config/{db,main}.inc.php
105 webapp_postinst_txt en "${FILESDIR}"/postinstall-en-0.6.txt
106 webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en-0.6.txt
107 webapp_postupgrade_txt en UPGRADING
108 webapp_src_install
109 }
110
111
112
113 1.1 mail-client/roundcube/roundcube-0.8.6.ebuild
114
115 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/roundcube-0.8.6.ebuild?rev=1.1&view=markup
116 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/roundcube-0.8.6.ebuild?rev=1.1&content-type=text/plain
117
118 Index: roundcube-0.8.6.ebuild
119 ===================================================================
120 # Copyright 1999-2013 Gentoo Foundation
121 # Distributed under the terms of the GNU General Public License v2
122 # $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/roundcube-0.8.6.ebuild,v 1.1 2013/03/28 02:40:25 radhermit Exp $
123
124 EAPI=5
125
126 inherit webapp
127
128 MY_PN=${PN}mail
129 MY_P=${MY_PN}-${PV/_/-}
130
131 DESCRIPTION="A browser-based multilingual IMAP client with an application-like user interface"
132 HOMEPAGE="http://roundcube.net"
133 SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.gz"
134
135 # roundcube is GPL-licensed, the rest of the licenses here are
136 # for bundled PEAR components, googiespell and utf8.class.php
137 LICENSE="GPL-3 BSD PHP-2.02 PHP-3 MIT public-domain"
138 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
139 IUSE="ldap +mysql postgres ssl spell"
140
141 RDEPEND="virtual/httpd-php
142 >=dev-lang/php-5.3[crypt,gd,iconv,json,ldap?,postgres?,session,sockets,ssl?,xml,unicode]
143 mysql? (
144 || ( dev-lang/php[mysql] dev-lang/php[mysqli] )
145 || ( dev-php/PEAR-MDB2_Driver_mysql dev-php/PEAR-MDB2_Driver_mysqli )
146 )
147 postgres? ( dev-php/PEAR-MDB2_Driver_pgsql )
148 spell? ( dev-lang/php[curl,spell] )
149 >=dev-php/PEAR-MDB2-2.5.0_beta3
150 >=dev-php/PEAR-Mail_Mime-1.8.1
151 >=dev-php/PEAR-Net_SMTP-1.4.2
152 >=dev-php/PEAR-Net_IDNA2-0.1.1
153 >=dev-php/PEAR-Auth_SASL-1.0.3"
154
155 need_httpd_cgi
156
157 S=${WORKDIR}/${MY_P}
158
159 src_prepare() {
160 cp config/db.inc.php{.dist,} || die
161 cp config/main.inc.php{.dist,} || die
162
163 # Remove bundled PEAR packages
164 rm -r program/lib/{Auth,Mail,MDB2*,Net,PEAR*} || die
165 }
166
167 src_install() {
168 webapp_src_preinst
169 dodoc CHANGELOG INSTALL README.md UPGRADING
170
171 insinto "${MY_HTDOCSDIR}"
172 doins -r [[:lower:]]* SQL
173 doins .htaccess
174
175 webapp_serverowned "${MY_HTDOCSDIR}"/logs
176 webapp_serverowned "${MY_HTDOCSDIR}"/temp
177
178 webapp_configfile "${MY_HTDOCSDIR}"/config/{db,main}.inc.php
179 webapp_postinst_txt en "${FILESDIR}"/postinstall-en-0.6.txt
180 webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en-0.6.txt
181 webapp_postupgrade_txt en UPGRADING
182 webapp_src_install
183 }