Gentoo Archives: gentoo-commits

From: "Samuel Damashek (sdamashek)" <sdamashek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apps/drupal: drupal-7.26.ebuild drupal-6.30.ebuild ChangeLog drupal-6.28.ebuild drupal-7.24.ebuild drupal-6.29.ebuild
Date: Wed, 22 Jan 2014 16:47:52
Message-Id: 20140122164748.69D882004C@flycatcher.gentoo.org
1 sdamashek 14/01/22 16:47:48
2
3 Modified: ChangeLog
4 Added: drupal-7.26.ebuild drupal-6.30.ebuild
5 Removed: drupal-6.28.ebuild drupal-7.24.ebuild
6 drupal-6.29.ebuild
7 Log:
8 Version bump and cleanup wrt bug 498464
9
10 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 3C472B56)
11
12 Revision Changes Path
13 1.102 www-apps/drupal/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/ChangeLog?rev=1.102&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/ChangeLog?rev=1.102&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/ChangeLog?r1=1.101&r2=1.102
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/www-apps/drupal/ChangeLog,v
22 retrieving revision 1.101
23 retrieving revision 1.102
24 diff -u -r1.101 -r1.102
25 --- ChangeLog 1 Dec 2013 23:03:05 -0000 1.101
26 +++ ChangeLog 22 Jan 2014 16:47:48 -0000 1.102
27 @@ -1,6 +1,14 @@
28 # ChangeLog for www-apps/drupal
29 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/ChangeLog,v 1.101 2013/12/01 23:03:05 jmbsvicetto Exp $
31 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
32 +# $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/ChangeLog,v 1.102 2014/01/22 16:47:48 sdamashek Exp $
33 +
34 +*drupal-7.26 (22 Jan 2014)
35 +*drupal-6.30 (22 Jan 2014)
36 +
37 + 22 Jan 2014; Samuel Damashek <sdamashek@g.o> +drupal-6.30.ebuild,
38 + +drupal-7.26.ebuild, -drupal-6.28.ebuild, -drupal-6.29.ebuild,
39 + -drupal-7.24.ebuild:
40 + Version bump and cleanup wrt bug 498464
41
42 01 Dec 2013; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
43 -drupal-7.22.ebuild, -drupal-7.23.ebuild:
44
45
46
47 1.1 www-apps/drupal/drupal-7.26.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/drupal-7.26.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/drupal-7.26.ebuild?rev=1.1&content-type=text/plain
51
52 Index: drupal-7.26.ebuild
53 ===================================================================
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/drupal-7.26.ebuild,v 1.1 2014/01/22 16:47:48 sdamashek Exp $
57
58 EAPI=5
59
60 inherit webapp
61
62 MY_PV=${PV:0:3}.0
63
64 DESCRIPTION="PHP-based open-source platform and content management system"
65 HOMEPAGE="http://drupal.org/"
66 SRC_URI="http://drupal.org/files/projects/${P}.tar.gz"
67
68 LICENSE="GPL-2"
69 KEYWORDS="~alpha ~amd64 ~ppc ~x86"
70 IUSE="+accelerator +mysql postgres sqlite +uploadprogress"
71
72 RDEPEND="
73 dev-lang/php[gd,hash,pdo,postgres?,simplexml,xml]
74 virtual/httpd-php
75 accelerator? ( ||
76 (
77 (
78 <dev-lang/php-5.5
79 dev-php/pecl-apc
80 )
81 dev-php/xcache
82 dev-php/eaccelerator
83 (
84 >=dev-lang/php-5.5[opcache]
85 dev-php/pecl-apcu
86 )
87 )
88 )
89 uploadprogress? ( dev-php/pecl-uploadprogress )
90 mysql? (
91 || (
92 dev-lang/php[mysql]
93 dev-lang/php[mysqli]
94 )
95 )
96 sqlite? (
97 || (
98 dev-lang/php[sqlite]
99 dev-lang/php[sqlite3]
100 )
101 )
102 "
103
104 need_httpd_cgi
105
106 REQUIRED_USE="|| ( mysql postgres sqlite )"
107
108 src_install() {
109 webapp_src_preinst
110
111 local docs="MAINTAINERS.txt LICENSE.txt INSTALL.txt CHANGELOG.txt INSTALL.mysql.txt INSTALL.pgsql.txt INSTALL.sqlite.txt UPGRADE.txt "
112 dodoc ${docs}
113 rm -f ${docs} INSTALL COPYRIGHT.txt
114
115 cp sites/default/{default.settings.php,settings.php}
116 insinto "${MY_HTDOCSDIR}"
117 doins -r .
118
119 dodir "${MY_HTDOCSDIR}"/files
120 webapp_serverowned "${MY_HTDOCSDIR}"/files
121 webapp_serverowned "${MY_HTDOCSDIR}"/sites/default
122 webapp_serverowned "${MY_HTDOCSDIR}"/sites/default/settings.php
123
124 webapp_configfile "${MY_HTDOCSDIR}"/sites/default/settings.php
125 webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
126
127 webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
128
129 webapp_src_install
130 }
131
132 pkg_postinst() {
133 ewarn
134 ewarn "SECURITY NOTICE"
135 ewarn "If you plan on using SSL on your Drupal site, please consult the postinstall information:"
136 ewarn "\t# webapp-config --show-postinst ${PN} ${PV}"
137 ewarn
138 }
139
140
141
142 1.1 www-apps/drupal/drupal-6.30.ebuild
143
144 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/drupal-6.30.ebuild?rev=1.1&view=markup
145 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/drupal-6.30.ebuild?rev=1.1&content-type=text/plain
146
147 Index: drupal-6.30.ebuild
148 ===================================================================
149 # Copyright 1999-2014 Gentoo Foundation
150 # Distributed under the terms of the GNU General Public License v2
151 # $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/drupal-6.30.ebuild,v 1.1 2014/01/22 16:47:48 sdamashek Exp $
152
153 EAPI=5
154
155 inherit webapp
156
157 MY_PV=${PV:0:3}.0
158
159 DESCRIPTION="PHP-based open-source platform and content management system"
160 HOMEPAGE="http://drupal.org/"
161 SRC_URI="http://drupal.org/files/projects/${P}.tar.gz"
162
163 LICENSE="GPL-2"
164 KEYWORDS="~alpha ~amd64 ~ppc ~x86"
165 IUSE="+mysql postgres"
166
167 RDEPEND="virtual/httpd-php
168 dev-lang/php[gd,pdo,postgres?,xml]
169 mysql? ( || ( dev-lang/php[mysql] dev-lang/php[mysqli] ) )"
170
171 need_httpd_cgi
172
173 REQUIRED_USE="|| ( mysql postgres )"
174
175 src_install() {
176 webapp_src_preinst
177
178 local docs="MAINTAINERS.txt LICENSE.txt INSTALL.txt CHANGELOG.txt INSTALL.mysql.txt INSTALL.pgsql.txt UPGRADE.txt "
179 dodoc ${docs}
180 rm -f ${docs} INSTALL COPYRIGHT.txt
181
182 cp sites/default/{default.settings.php,settings.php}
183 insinto "${MY_HTDOCSDIR}"
184 doins -r .
185
186 dodir "${MY_HTDOCSDIR}"/files
187 webapp_serverowned "${MY_HTDOCSDIR}"/files
188 webapp_serverowned "${MY_HTDOCSDIR}"/sites/default
189 webapp_serverowned "${MY_HTDOCSDIR}"/sites/default/settings.php
190
191 webapp_configfile "${MY_HTDOCSDIR}"/sites/default/settings.php
192 webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
193
194 webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
195
196 webapp_src_install
197 }
198
199 pkg_postinst() {
200 ewarn
201 ewarn "SECURITY NOTICE"
202 ewarn "If you plan on using SSL on your Drupal site, please consult the postinstall information:"
203 ewarn "\t# webapp-config --show-postinst ${PN} ${PV}"
204 ewarn
205 }