summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2013-02-09 00:18:17 +0000
committerAnthony G. Basile <blueness@gentoo.org>2013-02-09 00:18:17 +0000
commit41509ec98a65427f2bd0ba8618d81153512fb57c (patch)
tree502f63d219c68ab387f85d09189e63f3b08cb707 /app-admin
parentFix build with latest ffmpeg / libav. Bug #439606. (diff)
downloadgentoo-2-41509ec98a65427f2bd0ba8618d81153512fb57c.tar.gz
gentoo-2-41509ec98a65427f2bd0ba8618d81153512fb57c.tar.bz2
gentoo-2-41509ec98a65427f2bd0ba8618d81153512fb57c.zip
Remove non-baselayout2 compat version, bug #455594
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/webapp-config/ChangeLog8
-rw-r--r--app-admin/webapp-config/webapp-config-1.50.16-r1.ebuild67
2 files changed, 6 insertions, 69 deletions
diff --git a/app-admin/webapp-config/ChangeLog b/app-admin/webapp-config/ChangeLog
index 40f0afd00c90..3e69824ad103 100644
--- a/app-admin/webapp-config/ChangeLog
+++ b/app-admin/webapp-config/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-admin/webapp-config
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.84 2012/07/15 17:17:09 armin76 Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.85 2013/02/09 00:18:17 blueness Exp $
+
+ 09 Feb 2013; Anthony G. Basile <blueness@gentoo.org>
+ -webapp-config-1.50.16-r1.ebuild:
+ Remove non-baselayout2 compat version, bug #455594
15 Jul 2012; Raúl Porcel <armin76@gentoo.org>
webapp-config-1.50.16-r4.ebuild:
diff --git a/app-admin/webapp-config/webapp-config-1.50.16-r1.ebuild b/app-admin/webapp-config/webapp-config-1.50.16-r1.ebuild
deleted file mode 100644
index e6b665ca74ce..000000000000
--- a/app-admin/webapp-config/webapp-config-1.50.16-r1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-1.50.16-r1.ebuild,v 1.17 2012/04/27 19:43:57 blueness Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils eutils
-
-DESCRIPTION="Gentoo's installer for web-based applications"
-HOMEPAGE="http://sourceforge.net/projects/webapp-config/"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-RESTRICT_PYTHON_ABIS="3.*"
-
-PYTHON_MODNAME="WebappConfig"
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-apache-move.patch"
- # Do not build nor install eclass manual, bug 322759
- rm -f doc/webapp.eclass.5*
- sed -e '/MAN_PAGES/s/webapp.eclass.5//' \
- -e '/HTML_PAGES/s/webapp.eclass.5.html//' \
- -i doc/Makefile || die
-}
-
-src_install() {
- # According to this discussion:
- # http://mail.python.org/pipermail/distutils-sig/2004-February/003713.html
- # distutils does not provide for specifying two different script install
- # locations. Since we only install one script here the following should
- # be ok
- distutils_src_install --install-scripts="/usr/sbin"
-
- insinto /etc/vhosts
- doins config/webapp-config
-
- keepdir /usr/share/webapps
- keepdir /var/db/webapps
-
- dodoc examples/phpmyadmin-2.5.4-r1.ebuild AUTHORS.txt CHANGES.txt examples/postinstall-en.txt
- doman doc/*.[58]
- dohtml doc/*.[58].html
-}
-
-src_test() {
- testing() {
- PYTHONPATH="." "$(PYTHON)" WebappConfig/tests/dtest.py
- }
- python_execute_function testing
-}
-
-pkg_postinst() {
- distutils_pkg_postinst
-
- elog "Now that you have upgraded webapp-config, you **must** update your"
- elog "config files in /etc/vhosts/webapp-config before you emerge any"
- elog "packages that use webapp-config."
-}