Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/phpBB/
Date: Sun, 24 Nov 2019 23:22:58
Message-Id: 1574637745.b22d177a29c8a564b3cc33e7c04db9255c461531.chewi@gentoo
1 commit: b22d177a29c8a564b3cc33e7c04db9255c461531
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 24 23:22:25 2019 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 24 23:22:25 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b22d177a
7
8 www-apps/phpBB: Drop old 3.2.7
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.17
11 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
12
13 www-apps/phpBB/Manifest | 1 -
14 www-apps/phpBB/phpBB-3.2.7.ebuild | 50 ---------------------------------------
15 2 files changed, 51 deletions(-)
16
17 diff --git a/www-apps/phpBB/Manifest b/www-apps/phpBB/Manifest
18 index 19c367b0b6d..a3587a7253e 100644
19 --- a/www-apps/phpBB/Manifest
20 +++ b/www-apps/phpBB/Manifest
21 @@ -1,2 +1 @@
22 -DIST phpBB-3.2.7.tar.bz2 4384851 BLAKE2B 68af960efa04a30f81869b205d9c43ace86a4a4411a4cb969cdf5d52c8bf4f87f806fc3b2c71941f15be295afe5faa0d606af72a734356c3a7f0f97fb73d3f01 SHA512 f6cf728c022d803f2b39560037b987e832f4ee4583a377f63e01a1529b58e275db4f13386a0d70b50cfb40621d7573a26e349702f901a549cedda9db7f79d4d2
23 DIST phpBB-3.2.8.tar.bz2 4388929 BLAKE2B 8d7b7294a852450400f721cb05d258bb36b88c48133d340292bb2733c4a28da02e3c2038eb269e0549512cc3db286c4e31eb970070edda0493c304185bc303d0 SHA512 467a84917041889eaa7f2e68a0a81d9368f3ee36427883dec7ebd2af72fe21044dbdb08c5a068ab4e67490af2e4b30132db9d3a300382dd5ccc0a54f7ca20a31
24
25 diff --git a/www-apps/phpBB/phpBB-3.2.7.ebuild b/www-apps/phpBB/phpBB-3.2.7.ebuild
26 deleted file mode 100644
27 index 95dfe1c2276..00000000000
28 --- a/www-apps/phpBB/phpBB-3.2.7.ebuild
29 +++ /dev/null
30 @@ -1,50 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit webapp
37 -
38 -DESCRIPTION="An open-source PHP-based bulletin board package"
39 -HOMEPAGE="https://www.phpbb.com/"
40 -SRC_URI="https://www.phpbb.com/files/release/${P}.tar.bz2"
41 -LICENSE="GPL-2"
42 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~sparc ~x86"
43 -IUSE="ftp gd mssql mysqli postgres sqlite zlib"
44 -REQUIRED_USE="|| ( mssql mysqli postgres sqlite )"
45 -
46 -PHPV="5.4:*"
47 -RDEPEND=">=virtual/httpd-php-${PHPV}
48 - >=dev-lang/php-${PHPV}[ftp?,gd?,json,mssql?,mysqli?,postgres?,sqlite?,xml,zlib?]"
49 -
50 -need_httpd_cgi
51 -
52 -S="${WORKDIR}/${PN}${PV%%.*}"
53 -
54 -src_install() {
55 - webapp_src_preinst
56 -
57 - insinto "${MY_HTDOCSDIR}"
58 - doins -r .
59 -
60 - webapp_configfile "${MY_HTDOCSDIR}"/config.php
61 - webapp_hook_script "${FILESDIR}"/permissions
62 - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
63 - webapp_src_install
64 -
65 - # phpBB needs docs together with the other files.
66 - dosym ../webapps/${PN}/${SLOT}/htdocs/docs /usr/share/doc/${PF}
67 -}
68 -
69 -pkg_postinst() {
70 - einfo "phpBB needs a specific web server configuration. For Apache httpd, an"
71 - einfo "example configuration is provided via .htaccess files. For lighttpd and"
72 - einfo "NGINX, example configuration files can be found in the documentation."
73 -
74 - if use vhosts; then
75 - echo
76 - ewarn "When installing with webapp-config, specify a group that includes your"
77 - ewarn "PHP user with the -g option. It will default to the web server group"
78 - ewarn "when running webapp-config as root."
79 - fi
80 -}