Gentoo Archives: gentoo-commits

From: "Alex Legler (a3li)" <a3li@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/phpmyadmin: ChangeLog phpmyadmin-3.2.0.1.ebuild phpmyadmin-3.2.0.ebuild
Date: Sat, 01 Aug 2009 12:45:21
Message-Id: E1MXDxf-0000Yv-Sk@stork.gentoo.org
1 a3li 09/08/01 12:45:19
2
3 Modified: ChangeLog
4 Added: phpmyadmin-3.2.0.1.ebuild
5 Removed: phpmyadmin-3.2.0.ebuild
6 Log:
7 Non-maintainer commit: Version bump for security bug 276218. Removing vulnerable version.
8 (Portage version: 2.2_rc33/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.368 dev-db/phpmyadmin/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/ChangeLog?rev=1.368&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/ChangeLog?rev=1.368&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/ChangeLog?r1=1.367&r2=1.368
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v
20 retrieving revision 1.367
21 retrieving revision 1.368
22 diff -u -r1.367 -r1.368
23 --- ChangeLog 6 Jul 2009 17:55:09 -0000 1.367
24 +++ ChangeLog 1 Aug 2009 12:45:19 -0000 1.368
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-db/phpmyadmin
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v 1.367 2009/07/06 17:55:09 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v 1.368 2009/08/01 12:45:19 a3li Exp $
30 +
31 +*phpmyadmin-3.2.0.1 (01 Aug 2009)
32 +
33 + 01 Aug 2009; Alex Legler <a3li@g.o> -phpmyadmin-3.2.0.ebuild,
34 + +phpmyadmin-3.2.0.1.ebuild:
35 + Non-maintainer commit: Version bump for security bug 276218.
36 + Removing vulnerable version.
37
38 06 Jul 2009; Raúl Porcel <armin76@g.o> phpmyadmin-2.11.9.5.ebuild:
39 sparc stable wrt #263711
40
41
42
43 1.1 dev-db/phpmyadmin/phpmyadmin-3.2.0.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-3.2.0.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-3.2.0.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: phpmyadmin-3.2.0.1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-3.2.0.1.ebuild,v 1.1 2009/08/01 12:45:19 a3li Exp $
53
54 inherit eutils webapp depend.php
55
56 MY_PV=${PV/_/-}
57 MY_P="phpMyAdmin-${MY_PV}-all-languages"
58
59 DESCRIPTION="Web-based administration for MySQL database in PHP"
60 HOMEPAGE="http://www.phpmyadmin.net/"
61 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
62
63 LICENSE="GPL-2"
64 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
65 IUSE=""
66
67 RDEPEND=">=virtual/mysql-5.0"
68
69 need_httpd_cgi
70 need_php_httpd
71
72 S="${WORKDIR}"/${MY_P}
73
74 pkg_setup() {
75 webapp_pkg_setup
76
77 if ! PHPCHECKNODIE="yes" require_php_with_use crypt ctype filter pcre session spl unicode \
78 || ! PHPCHECKNODIE="yes" require_php_with_any_use mysql mysqli ; then
79 eerror
80 eerror "${PHP_PKG} needs to be re-installed with all of the following"
81 eerror "USE flags enabled:"
82 eerror
83 eerror "crypt ctype filter pcre session spl unicode"
84 eerror
85 eerror "as well as any of the following USE flags enabled:"
86 eerror
87 eerror "mysql or mysqli if using dev-lang/php-5"
88 eerror
89 die "Re-install ${PHP_PKG}"
90 fi
91 }
92
93 src_install() {
94 webapp_src_preinst
95
96 dodoc CREDITS Documentation.txt INSTALL README RELEASE-DATE-${MY_PV} TODO ChangeLog
97 rm -f LICENSE CREDITS INSTALL README RELEASE-DATE-${MY_PV} TODO
98
99 insinto "${MY_HTDOCSDIR}"
100 doins -r .
101
102 webapp_configfile "${MY_HTDOCSDIR}"/libraries/config.default.php
103 webapp_serverowned "${MY_HTDOCSDIR}"/libraries/config.default.php
104
105 webapp_postinst_txt en "${FILESDIR}"/postinstall-en-3.1.txt
106 webapp_hook_script "${FILESDIR}"/reconfig-2.8
107 webapp_src_install
108 }