Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/phpmyadmin/
Date: Sun, 01 Dec 2019 18:37:27
Message-Id: 1575225424.b393a9bdd8e49c2a75c1760190fd864362b8532f.fordfrog@gentoo
1 commit: b393a9bdd8e49c2a75c1760190fd864362b8532f
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 1 18:37:04 2019 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 1 18:37:04 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b393a9bd
7
8 dev-db/phpmyadmin-4.9.2: bump
9
10 Closes: https://bugs.gentoo.org/701672
11 Package-Manager: Portage-2.3.80, Repoman-2.3.19
12 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
13
14 dev-db/phpmyadmin/Manifest | 1 +
15 dev-db/phpmyadmin/phpmyadmin-4.9.2.ebuild | 61 +++++++++++++++++++++++++++++++
16 2 files changed, 62 insertions(+)
17
18 diff --git a/dev-db/phpmyadmin/Manifest b/dev-db/phpmyadmin/Manifest
19 index feec1b000af..d32cb2704a6 100644
20 --- a/dev-db/phpmyadmin/Manifest
21 +++ b/dev-db/phpmyadmin/Manifest
22 @@ -1 +1,2 @@
23 DIST phpMyAdmin-4.9.1-all-languages.tar.xz 6146368 BLAKE2B d0a4fdb9bd995f807a0f88c3572f67ddd1df090817b4d32606025b6e7d08c6e05fbcbbc9b3b7edbe5492345c45c454797c9ba0f59498fe5e01d0979148c070ad SHA512 c2804bdb9d8501309e46d66fe4c27c3618de9cbd440928bf6335b3623a7e71608bb02fda17c5f1715b0cb32ecd68e2bbca86565f240b138c3630084225c56f83
24 +DIST phpMyAdmin-4.9.2-all-languages.tar.xz 6118472 BLAKE2B 07093982aebf83017a1773a1cd1acac8b7a4cc9bf666f7c62fdef4b3b46441f5ee1da37746610b0ed6b92a67296d908dbf24ba1ea546c1b573c3593a02b90088 SHA512 426689c31f963a9cbe34b2116888aa0264801aa5ef18fb0e4b89811b032d4018c770538e823bccb684fb066ed27fcf6dc6e0fb4198d1e082e7eea15595b67727
25
26 diff --git a/dev-db/phpmyadmin/phpmyadmin-4.9.2.ebuild b/dev-db/phpmyadmin/phpmyadmin-4.9.2.ebuild
27 new file mode 100644
28 index 00000000000..e7314712644
29 --- /dev/null
30 +++ b/dev-db/phpmyadmin/phpmyadmin-4.9.2.ebuild
31 @@ -0,0 +1,61 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit eutils webapp
38 +
39 +MY_PV=${PV/_/-}
40 +MY_PN="phpMyAdmin"
41 +MY_P="${MY_PN}-${MY_PV}-all-languages"
42 +
43 +DESCRIPTION="Web-based administration for MySQL database in PHP"
44 +HOMEPAGE="https://www.phpmyadmin.net/"
45 +SRC_URI="https://files.phpmyadmin.net/${MY_PN}/${MY_PV}/${MY_P}.tar.xz"
46 +
47 +LICENSE="GPL-2"
48 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-macos ~x86-macos"
49 +IUSE="setup"
50 +
51 +RDEPEND="
52 + dev-lang/php[ctype,filter,json,session,unicode]
53 + || (
54 + dev-lang/php[mysqli]
55 + dev-lang/php[mysql]
56 + )
57 + virtual/httpd-php:*
58 +"
59 +
60 +need_httpd_cgi
61 +
62 +S="${WORKDIR}"/${MY_P}
63 +
64 +pkg_setup() {
65 + webapp_pkg_setup
66 +}
67 +
68 +src_install() {
69 + webapp_src_preinst
70 +
71 + dodoc README RELEASE-DATE-${MY_PV} ChangeLog || die
72 + rm -f LICENSE README* RELEASE-DATE-${MY_PV}
73 +
74 + if ! use setup; then
75 + rm -rf setup || die "Cannot remove setup utility"
76 + elog "The phpMyAdmin setup utility has been removed."
77 + elog "It is a regular target of various exploits. If you need it, set USE=setup."
78 + else
79 + elog "You should consider disabling the setup USE flag"
80 + elog "to exclude the setup utility if you don't use it."
81 + elog "It regularly is the target of various exploits."
82 + fi
83 +
84 + insinto "${MY_HTDOCSDIR#${EPREFIX}}"
85 + doins -r .
86 +
87 + webapp_configfile "${MY_HTDOCSDIR#${EPREFIX}}"/libraries/config.default.php
88 + webapp_serverowned "${MY_HTDOCSDIR#${EPREFIX}}"/libraries/config.default.php
89 +
90 + webapp_postinst_txt en "${FILESDIR}"/postinstall-en-3.1.txt
91 + webapp_src_install
92 +}