commit:     a966de053fad39b1c641edf690afd2441980f692
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 29 06:47:58 2023 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri Sep 29 06:47:58 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a966de05

www-apps/mediawiki: bump to 1.40.1

Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 www-apps/mediawiki/Manifest                |  1 +
 www-apps/mediawiki/mediawiki-1.40.1.ebuild | 92 ++++++++++++++++++++++++++++++
 2 files changed, 93 insertions(+)

diff --git a/www-apps/mediawiki/Manifest b/www-apps/mediawiki/Manifest
index a68d6873bcb0..57bb8d3cae16 100644
--- a/www-apps/mediawiki/Manifest
+++ b/www-apps/mediawiki/Manifest
@@ -1,2 +1,3 @@
 DIST mediawiki-1.39.4.tar.gz 56392316 BLAKE2B 
3355bcf7cddb5571b6c9c04f43d1a2e3e4d5f19b02890926194462ec0b98637351cf6707629666971c37790110508e7f3e33d1dc33e6fe3b077a820166818b8b
 SHA512 
869b8bcf7bc94202c409ddb0e4ba52ca9611b287609c1afe5078c8b6dbdd414786461d7eea87008e48c1739199aec84de399d040119a42b4dd075d3d54839940
 DIST mediawiki-1.40.0.tar.gz 65441100 BLAKE2B 
810f5bf83347e5d67a59edaeb6eee9684827504272af510783f58da8aa07050c623225acab591fe7195529068773bfa4df5db960e9e60f30bd9bc0161b1fbb85
 SHA512 
7db5ba96de0b1be99c36b44551816df877d2926ca90042f26d216dcd7ba2d30d45bb7b034c20ee80e8752b9e5b69755c78b2aa5e7feb4e2d3f9d3b60aa1b61b0
+DIST mediawiki-1.40.1.tar.gz 66494248 BLAKE2B 
05ba52700019170cc3419263e0cded6f0693aacc8704823c8fb3389307aca1ca523244f16a1263a58df566866f173371d76ea95d06aa6a4ba128ae5f1ebc0200
 SHA512 
0efec336827612217b7e6451dc06a60799dae56765b8ace2ac540280cc58ede899e22948e9ca20d085943e9c3919664058fadd6b2278b0c64d89e4445a7ccf0d

diff --git a/www-apps/mediawiki/mediawiki-1.40.1.ebuild 
b/www-apps/mediawiki/mediawiki-1.40.1.ebuild
new file mode 100644
index 000000000000..409d05722e9c
--- /dev/null
+++ b/www-apps/mediawiki/mediawiki-1.40.1.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit webapp
+
+MY_BRANCH=$(ver_cut 1-2)
+
+DESCRIPTION="The MediaWiki wiki web application (as used on wikipedia.org)"
+HOMEPAGE="http://www.mediawiki.org";
+SRC_URI="http://releases.wikimedia.org/${PN}/${MY_BRANCH}/${P}.tar.gz";
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~x86"
+IUSE="imagemagick mysql postgres +sqlite"
+REQUIRED_USE="|| ( mysql postgres sqlite )"
+
+RDEPEND="dev-lang/php[calendar,ctype,fileinfo,iconv,intl,json(+),postgres?,session,ssl,unicode,xml,xmlreader]
+       imagemagick? ( virtual/imagemagick-tools )
+       !imagemagick? ( dev-lang/php[gd] )
+       mysql? ( dev-lang/php[mysql,mysqli] )
+       sqlite? (
+               dev-db/sqlite[fts3(+)]
+               dev-lang/php[pdo,sqlite]
+       )
+       virtual/httpd-php"
+
+need_httpd_cgi
+
+RESTRICT="test"
+
+src_unpack() {
+       default
+
+       # remove lua binaries (bug #631554)
+       rm -r 
"${S}"/extensions/Scribunto/includes/Engines/LuaStandalone/binaries || die 
"Failed to remove Lua binaries"
+}
+
+src_install() {
+       webapp_src_preinst
+
+       # First we install docs and then copy everything left into htdocs dir
+       # to avoid bugs like #236411.
+
+       # We ensure the directories are prepared for writing.  The post-
+       # install instructions guide the user to enable the feature.
+       local DOCS="FAQ HISTORY INSTALL README.md RELEASE-NOTES-${PV:0:4} 
UPGRADE"
+       dodoc ${DOCS} docs/*.txt
+       docinto databases
+       dodoc docs/databases/*
+
+       # Clean everything not used at the site...
+       rm -r ${DOCS} COPYING tests docs || die
+       find . -name Makefile -delete || die
+
+       # and install
+       insinto "${MY_HTDOCSDIR}"
+       doins -r .
+
+       # If imagemagick is enabled then setup for image upload.
+       # We ensure the directory is prepared for writing.
+       if use imagemagick ; then
+               webapp_serverowned "${MY_HTDOCSDIR}"/images
+       fi
+
+       webapp_postinst_txt en "${FILESDIR}/postinstall-1.18-en.txt"
+       webapp_postupgrade_txt en "${FILESDIR}/postupgrade-1.16-en.txt"
+       webapp_src_install
+}
+
+pkg_postinst() {
+       webapp_pkg_postinst
+
+       if [[ -n ${REPLACING_VERSIONS} ]]; then
+               echo
+               elog "=== Consult the release notes ==="
+               elog "Before doing anything, stop and consult the release notes"
+               elog "/usr/share/doc/${PF}/RELEASE-NOTES-${PV:0:4}.bz2"
+               echo
+               elog "These detail bug fixes, new features and functionality, 
and any"
+               elog "particular points that may need to be noted during the 
upgrade procedure."
+               echo
+               elog "If you plan to use the Scribunto extension with Lua, make 
sure to configure"
+               elog "path to Lua executable using this documentation:"
+               elog 
"https://www.mediawiki.org/wiki/Extension:Scribunto#Lua_binary";
+               echo
+               ewarn "Back up existing files and the database before upgrade."
+               ewarn "http://www.mediawiki.org/wiki/Manual:Backing_up_a_wiki";
+               ewarn "provides an overview of the backup process."
+               echo
+       fi
+}

Reply via email to