diff options
author | Devan Franchini <twitch153@gentoo.org> | 2014-12-28 02:14:16 +0000 |
---|---|---|
committer | Devan Franchini <twitch153@gentoo.org> | 2014-12-28 02:14:16 +0000 |
commit | 820a723b269d5cdc4672809b99757e9c9b06eed4 (patch) | |
tree | b6ae5e26937410c37c7168da05454787303ed4da /app-admin | |
parent | Adds patch to source functions.sh from /lib/gentoo, bug #504132 (diff) | |
download | gentoo-2-820a723b269d5cdc4672809b99757e9c9b06eed4.tar.gz gentoo-2-820a723b269d5cdc4672809b99757e9c9b06eed4.tar.bz2 gentoo-2-820a723b269d5cdc4672809b99757e9c9b06eed4.zip |
Removes webapp-config-1.52-r1 from the tree
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A8C8FBCF)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/webapp-config/ChangeLog | 6 | ||||
-rw-r--r-- | app-admin/webapp-config/webapp-config-1.52-r1.ebuild | 65 |
2 files changed, 5 insertions, 66 deletions
diff --git a/app-admin/webapp-config/ChangeLog b/app-admin/webapp-config/ChangeLog index e4f5d8284e3f..2dbe49785c52 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-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.117 2014/12/28 01:55:44 twitch153 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.118 2014/12/28 02:14:16 twitch153 Exp $ + + 28 Dec 2014; Devan Franchini <twitch153@gentoo.org> + -webapp-config-1.52-r1.ebuild: + Removes webapp-config-1.52-r1 from the tree *webapp-config-1.53-r1 (28 Dec 2014) diff --git a/app-admin/webapp-config/webapp-config-1.52-r1.ebuild b/app-admin/webapp-config/webapp-config-1.52-r1.ebuild deleted file mode 100644 index 7dde6d709ed5..000000000000 --- a/app-admin/webapp-config/webapp-config-1.52-r1.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2014 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.52-r1.ebuild,v 1.10 2014/11/10 23:54:20 blueness Exp $ - -EAPI="5" - -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 ) - -inherit distutils-r1 - -SRC_URI="http://dev.gentoo.org/~twitch153/${PN}/${P}.tar.bz2" -KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd" - -DESCRIPTION="Gentoo's installer for web-based applications" -HOMEPAGE="http://sourceforge.net/projects/webapp-config/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="+portage" - -DEPEND="app-text/xmlto - !dev-python/configparser" -RDEPEND="portage? ( sys-apps/portage[${PYTHON_USEDEP}] )" - -python_prepare() { - epatch "${FILESDIR}/${P}-nulls-doctest.patch" -} - -python_compile_all() { - emake -C doc/ -} - -python_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-r1_python_install --install-scripts="/usr/sbin" -} - -python_install_all() { - distutils-r1_python_install_all - - insinto /etc/vhosts - doins config/webapp-config - - keepdir /usr/share/webapps - keepdir /var/db/webapps - - dodoc AUTHORS - doman doc/*.[58] - dohtml doc/*.[58].html -} - -python_test() { - PYTHONPATH="." "${PYTHON}" WebappConfig/tests/dtest.py \ - || die "Testing failed with ${EPYTHON}" -} - -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." -} |