www-apps/mediawiki: removed old 1.33*
authorMiroslav Šulc <fordfrog@gentoo.org>
Thu, 23 Jan 2020 15:22:42 +0000 (16:22 +0100)
committerMiroslav Šulc <fordfrog@gentoo.org>
Thu, 23 Jan 2020 15:22:42 +0000 (16:22 +0100)
Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
www-apps/mediawiki/Manifest
www-apps/mediawiki/mediawiki-1.33.1.ebuild [deleted file]
www-apps/mediawiki/mediawiki-1.33.2.ebuild [deleted file]

index c8d0c6b1dc8df484f9919a8f3487b56c003a924b..f1ec956bab25e7a1f52cdaa33ae53a80cf6322cb 100644 (file)
@@ -1,3 +1 @@
-DIST mediawiki-1.33.1.tar.gz 37863816 BLAKE2B 2f4ce62c3b46738d31af9fcfde61a9521a0bb838c035ef539f4263e61b7fe5db59597a3142a6f942fabaad1bb97c7058a21df654588e6a60023fa5fad5e4d88d SHA512 0cf786872714546fb13843bc5f8b851bfcc665f7459a0326a3fb77efb0d1976b618d4e2206d3fb0852a60b7fa375e98aa0b5600b03209ce9eabd9e3dc5db7d1a
-DIST mediawiki-1.33.2.tar.gz 37866372 BLAKE2B 1aac64cccf17bf8a890e40cdef85c209fc489e812ba8c8f158f9d9a7d50c5389c40f5ff251ea9a76620cf4d88e0e21942b5be52a60d0f3c682a365ea50078c01 SHA512 bdbdd508360ab84a611dc1c57b1504fa5591d08ac24c511430bdb802999f8c7f7e323f1a9a2dd7a405291889f4bff8ca7a8b8911bfed0bd460444bfae52b271c
 DIST mediawiki-1.34.0.tar.gz 40344724 BLAKE2B 899620db50337aeb6189dbf33ba54e06aae68923c43022f6590e46380907e884d9ab606b69cef5087e1b2f273a2fa962883f4e6524682db28b4be350f8d77410 SHA512 b6b1aeec26a1c114eeec0bdf18d4b3160fe02dac2920a39a045acb74e62aa8f8a28e6a81c01fedba7976e4dd0c96463e0f1badfddd3015eef9197b01586a236d
diff --git a/www-apps/mediawiki/mediawiki-1.33.1.ebuild b/www-apps/mediawiki/mediawiki-1.33.1.ebuild
deleted file mode 100644 (file)
index b64e691..0000000
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-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"
-
-RDEPEND=">=dev-lang/php-7.0.0[fileinfo,iconv,json,mysql?,postgres?,session,ssl,unicode,xml,xmlreader]
-       imagemagick? ( virtual/imagemagick-tools )
-       !imagemagick? ( dev-lang/php[gd] )
-       mysql? (
-               || ( >=dev-db/mariadb-5.5.8 >=dev-db/mysql-5.5.8 )
-               )
-       sqlite? (
-               >=dev-db/sqlite-3.3.7[fts3(+)]
-               >=dev-lang/php-7.0.0[pdo]
-               || ( dev-lang/php[sqlite] dev-lang/php[sqlite3] )
-       )
-       virtual/httpd-php"
-
-need_httpd_cgi
-
-RESTRICT="test"
-
-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 RELEASE-NOTES-${PV:0:4} UPGRADE"
-       dodoc ${DOCS} docs/*.txt
-       docinto php-memcached
-       dodoc docs/php-memcached/*
-
-       # Clean everything not used at the site...
-       rm -rf ${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
-               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
-}
diff --git a/www-apps/mediawiki/mediawiki-1.33.2.ebuild b/www-apps/mediawiki/mediawiki-1.33.2.ebuild
deleted file mode 100644 (file)
index bed5bd8..0000000
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-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"
-
-RDEPEND=">=dev-lang/php-7.0.0[fileinfo,iconv,json,mysql?,postgres?,session,ssl,unicode,xml,xmlreader]
-       imagemagick? ( virtual/imagemagick-tools )
-       !imagemagick? ( dev-lang/php[gd] )
-       mysql? (
-               || ( >=dev-db/mariadb-5.5.8 >=dev-db/mysql-5.5.8 )
-               )
-       sqlite? (
-               >=dev-db/sqlite-3.3.7[fts3(+)]
-               >=dev-lang/php-7.0.0[pdo]
-               || ( dev-lang/php[sqlite] dev-lang/php[sqlite3] )
-       )
-       virtual/httpd-php"
-
-need_httpd_cgi
-
-RESTRICT="test"
-
-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 RELEASE-NOTES-${PV:0:4} UPGRADE"
-       dodoc ${DOCS} docs/*.txt
-       docinto php-memcached
-       dodoc docs/php-memcached/*
-
-       # Clean everything not used at the site...
-       rm -rf ${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
-               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
-}