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
Date: Thu, 23 Jan 2014 03:35:53
Message-Id: 20140123033549.1A2012004B@flycatcher.gentoo.org
1 sdamashek 14/01/23 03:35:49
2
3 Modified: drupal-7.26.ebuild drupal-6.30.ebuild ChangeLog
4 Log:
5 Fix up ebuild syntax and add die to external commands
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 3C472B56)
8
9 Revision Changes Path
10 1.2 www-apps/drupal/drupal-7.26.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/drupal-7.26.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/drupal-7.26.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/drupal-7.26.ebuild?r1=1.1&r2=1.2
15
16 Index: drupal-7.26.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-apps/drupal/drupal-7.26.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- drupal-7.26.ebuild 22 Jan 2014 16:47:48 -0000 1.1
23 +++ drupal-7.26.ebuild 23 Jan 2014 03:35:48 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/drupal-7.26.ebuild,v 1.1 2014/01/22 16:47:48 sdamashek Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/drupal-7.26.ebuild,v 1.2 2014/01/23 03:35:48 sdamashek Exp $
29
30 EAPI=5
31
32 @@ -57,9 +57,9 @@
33
34 local docs="MAINTAINERS.txt LICENSE.txt INSTALL.txt CHANGELOG.txt INSTALL.mysql.txt INSTALL.pgsql.txt INSTALL.sqlite.txt UPGRADE.txt "
35 dodoc ${docs}
36 - rm -f ${docs} INSTALL COPYRIGHT.txt
37 + rm -f ${docs} INSTALL COPYRIGHT.txt || die
38
39 - cp sites/default/{default.settings.php,settings.php}
40 + cp sites/default/{default.settings.php,settings.php} || die
41 insinto "${MY_HTDOCSDIR}"
42 doins -r .
43
44 @@ -77,9 +77,9 @@
45 }
46
47 pkg_postinst() {
48 - ewarn
49 + echo
50 ewarn "SECURITY NOTICE"
51 ewarn "If you plan on using SSL on your Drupal site, please consult the postinstall information:"
52 ewarn "\t# webapp-config --show-postinst ${PN} ${PV}"
53 - ewarn
54 + echo
55 }
56
57
58
59 1.2 www-apps/drupal/drupal-6.30.ebuild
60
61 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/drupal-6.30.ebuild?rev=1.2&view=markup
62 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/drupal-6.30.ebuild?rev=1.2&content-type=text/plain
63 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/drupal-6.30.ebuild?r1=1.1&r2=1.2
64
65 Index: drupal-6.30.ebuild
66 ===================================================================
67 RCS file: /var/cvsroot/gentoo-x86/www-apps/drupal/drupal-6.30.ebuild,v
68 retrieving revision 1.1
69 retrieving revision 1.2
70 diff -u -r1.1 -r1.2
71 --- drupal-6.30.ebuild 22 Jan 2014 16:47:48 -0000 1.1
72 +++ drupal-6.30.ebuild 23 Jan 2014 03:35:48 -0000 1.2
73 @@ -1,6 +1,6 @@
74 # Copyright 1999-2014 Gentoo Foundation
75 # Distributed under the terms of the GNU General Public License v2
76 -# $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/drupal-6.30.ebuild,v 1.1 2014/01/22 16:47:48 sdamashek Exp $
77 +# $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/drupal-6.30.ebuild,v 1.2 2014/01/23 03:35:48 sdamashek Exp $
78
79 EAPI=5
80
81 @@ -29,9 +29,9 @@
82
83 local docs="MAINTAINERS.txt LICENSE.txt INSTALL.txt CHANGELOG.txt INSTALL.mysql.txt INSTALL.pgsql.txt UPGRADE.txt "
84 dodoc ${docs}
85 - rm -f ${docs} INSTALL COPYRIGHT.txt
86 + rm -f ${docs} INSTALL COPYRIGHT.txt || die
87
88 - cp sites/default/{default.settings.php,settings.php}
89 + cp sites/default/{default.settings.php,settings.php} || die
90 insinto "${MY_HTDOCSDIR}"
91 doins -r .
92
93 @@ -49,9 +49,9 @@
94 }
95
96 pkg_postinst() {
97 - ewarn
98 + echo
99 ewarn "SECURITY NOTICE"
100 ewarn "If you plan on using SSL on your Drupal site, please consult the postinstall information:"
101 ewarn "\t# webapp-config --show-postinst ${PN} ${PV}"
102 - ewarn
103 + echo
104 }
105
106
107
108 1.103 www-apps/drupal/ChangeLog
109
110 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/ChangeLog?rev=1.103&view=markup
111 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/ChangeLog?rev=1.103&content-type=text/plain
112 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/drupal/ChangeLog?r1=1.102&r2=1.103
113
114 Index: ChangeLog
115 ===================================================================
116 RCS file: /var/cvsroot/gentoo-x86/www-apps/drupal/ChangeLog,v
117 retrieving revision 1.102
118 retrieving revision 1.103
119 diff -u -r1.102 -r1.103
120 --- ChangeLog 22 Jan 2014 16:47:48 -0000 1.102
121 +++ ChangeLog 23 Jan 2014 03:35:48 -0000 1.103
122 @@ -1,6 +1,10 @@
123 # ChangeLog for www-apps/drupal
124 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
125 -# $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/ChangeLog,v 1.102 2014/01/22 16:47:48 sdamashek Exp $
126 +# $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/ChangeLog,v 1.103 2014/01/23 03:35:48 sdamashek Exp $
127 +
128 + 23 Jan 2014; Samuel Damashek <sdamashek@g.o> drupal-6.30.ebuild,
129 + drupal-7.26.ebuild:
130 + Fix up ebuild syntax and add die to external commands
131
132 *drupal-7.26 (22 Jan 2014)
133 *drupal-6.30 (22 Jan 2014)