summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Legler <a3li@gentoo.org>2009-06-26 08:59:49 +0000
committerAlex Legler <a3li@gentoo.org>2009-06-26 08:59:49 +0000
commitaa9ba4743f88f87e9aec26c013acb228f770a048 (patch)
tree6a0a844cb070e7c3e19e9dc6da8bce0820932f79 /www-apps
parentVersion bump, remove old ebuilds (diff)
downloadgentoo-2-aa9ba4743f88f87e9aec26c013acb228f770a048.tar.gz
gentoo-2-aa9ba4743f88f87e9aec26c013acb228f770a048.tar.bz2
gentoo-2-aa9ba4743f88f87e9aec26c013acb228f770a048.zip
Removing vulnerable version, bug 268565.
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'www-apps')
-rw-r--r--www-apps/moinmoin/ChangeLog5
-rw-r--r--www-apps/moinmoin/moinmoin-1.8.1.ebuild75
2 files changed, 4 insertions, 76 deletions
diff --git a/www-apps/moinmoin/ChangeLog b/www-apps/moinmoin/ChangeLog
index c5e56ee653d2..b15f7a554a8f 100644
--- a/www-apps/moinmoin/ChangeLog
+++ b/www-apps/moinmoin/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for www-apps/moinmoin
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/moinmoin/ChangeLog,v 1.63 2009/06/21 14:06:38 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/moinmoin/ChangeLog,v 1.64 2009/06/26 08:59:49 a3li Exp $
+
+ 26 Jun 2009; Alex Legler <a3li@gentoo.org> -moinmoin-1.8.1.ebuild:
+ Removing vulnerable version, security bug 268565.
21 Jun 2009; Brent Baude <ranger@gentoo.org> moinmoin-1.8.4.ebuild:
Marking moinmoin-1.8.4 ppc for bug 268565
diff --git a/www-apps/moinmoin/moinmoin-1.8.1.ebuild b/www-apps/moinmoin/moinmoin-1.8.1.ebuild
deleted file mode 100644
index 89abf7318129..000000000000
--- a/www-apps/moinmoin/moinmoin-1.8.1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/moinmoin/moinmoin-1.8.1.ebuild,v 1.5 2009/02/01 21:05:58 dertobi123 Exp $
-
-MY_PN="moin"
-PYTHON_MODNAME="MoinMoin"
-
-inherit webapp distutils
-
-WEBAPP_MANUAL_SLOT="yes"
-
-DESCRIPTION="Python WikiClone"
-SRC_URI="http://static.moinmo.in/files/${MY_PN}-${PV}.tar.gz"
-HOMEPAGE="http://moinmo.in/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86"
-IUSE="rss"
-
-DEPEND=">=dev-lang/python-2.3"
-RDEPEND="${DEPEND}
- >=dev-python/docutils-0.4
- rss? ( >=dev-python/pyxml-0.8.4 )"
-
-need_httpd_cgi
-
-S="${WORKDIR}"/${MY_PN}-${PV}
-
-src_install() {
- webapp_src_preinst
- distutils_src_install
-
- dodoc README docs/CHANGES* docs/README.migration
- dohtml docs/INSTALL.html
- rm -rf README docs/
-
- cd "${D}"/usr/share/moin
-
- insinto "${MY_HTDOCSDIR}"
- doins -r htdocs/* server/moin.cgi
- fperms +x "${MY_HTDOCSDIR}/moin.cgi"
-
- insinto "${MY_HOSTROOTDIR}"/${PF}
- doins -r data underlay config/wikiconfig.py
-
- insinto "${MY_HOSTROOTDIR}"/${PF}/altconfigs
- doins -r config
-
- insinto "${MY_HOSTROOTDIR}"/${PF}/altserver
- doins -r server
-
- # data needs to be serverowned per moin devs
- cd "${D}/${MY_HOSTROOTDIR}"/${PF}
- for file in $(find data underlay); do
- webapp_serverowned "${MY_HOSTROOTDIR}/${PF}/${file}"
- done
-
- webapp_configfile "${MY_HOSTROOTDIR}"/${PF}/wikiconfig.py
- webapp_hook_script "${FILESDIR}"/reconfig-3
- webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
-
- webapp_src_install
-}
-
-pkg_postinst() {
- ewarn
- ewarn "If you are upgrading from 1.3.x, please read"
- ewarn "README.migration in /usr/share/doc/${PF}"
- ewarn "and http://moinmoin.wikiwikiweb.de/HelpOnUpdating"
- ewarn
-
- distutils_pkg_postinst
- webapp_pkg_postinst
-}