diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2006-01-28 07:20:24 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2006-01-28 07:20:24 +0000 |
commit | b3a86abbb6f3b7c002a4561773469d030eb18e83 (patch) | |
tree | 0a5f4abebf288c5189acc70b0a2beb0cd5804292 | |
parent | Initial ebuild, closes bug 120579. (diff) | |
download | gentoo-2-b3a86abbb6f3b7c002a4561773469d030eb18e83.tar.gz gentoo-2-b3a86abbb6f3b7c002a4561773469d030eb18e83.tar.bz2 gentoo-2-b3a86abbb6f3b7c002a4561773469d030eb18e83.zip |
Fixed stray digest
(Portage version: 2.0.54)
-rw-r--r-- | app-admin/webapp-config/ChangeLog | 5 | ||||
-rw-r--r-- | app-admin/webapp-config/Manifest | 1 | ||||
-rw-r--r-- | app-admin/webapp-config/files/digest-webapp-config-1.50.7 | 1 | ||||
-rw-r--r-- | app-admin/webapp-config/webapp-config-1.50.7.ebuild | 52 |
4 files changed, 4 insertions, 55 deletions
diff --git a/app-admin/webapp-config/ChangeLog b/app-admin/webapp-config/ChangeLog index 1c13674c2455..920e5963457a 100644 --- a/app-admin/webapp-config/ChangeLog +++ b/app-admin/webapp-config/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-admin/webapp-config # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.15 2006/01/27 23:13:47 wrobel Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.16 2006/01/28 07:20:24 wrobel Exp $ + + 28 Jan 2006; <wrobel@gentoo.org> -webapp-config-1.50.7.ebuild: + Fixed stray digest *webapp-config-1.50.9 (27 Jan 2006) diff --git a/app-admin/webapp-config/Manifest b/app-admin/webapp-config/Manifest index 9be1783c669e..77e02c2ea883 100644 --- a/app-admin/webapp-config/Manifest +++ b/app-admin/webapp-config/Manifest @@ -3,5 +3,4 @@ MD5 6aad9c4cd4548cb948cd4035286d6ac7 files/digest-webapp-config-1.11 70 MD5 745177b975cd2bf3bf1da32b84315934 files/digest-webapp-config-1.50.9 71 MD5 4defd726d2b03decc5b7ff21b0aac1a3 metadata.xml 225 MD5 90bba75c31e392fd21e084681aeca6ae webapp-config-1.11.ebuild 1408 -MD5 b1b3b0a28341f5bd2a35b175461a0399 webapp-config-1.50.7.ebuild 1674 MD5 5d885361d688cf6292f4a10624e8a865 webapp-config-1.50.9.ebuild 1675 diff --git a/app-admin/webapp-config/files/digest-webapp-config-1.50.7 b/app-admin/webapp-config/files/digest-webapp-config-1.50.7 deleted file mode 100644 index 6bbaf9ccdedf..000000000000 --- a/app-admin/webapp-config/files/digest-webapp-config-1.50.7 +++ /dev/null @@ -1 +0,0 @@ -MD5 fbb588dc3077c1e0c3aeea9ef22eb45e webapp-config-1.50.7.tar.gz 88203 diff --git a/app-admin/webapp-config/webapp-config-1.50.7.ebuild b/app-admin/webapp-config/webapp-config-1.50.7.ebuild deleted file mode 100644 index 4f8730d34978..000000000000 --- a/app-admin/webapp-config/webapp-config-1.50.7.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2006 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.7.ebuild,v 1.7 2006/01/15 02:04:28 cryos Exp $ - -inherit eutils distutils - -DESCRIPTION="Gentoo's installer for web-based applications" -HOMEPAGE="http://www.gentoo.org/" -SRC_URI="http://dev.gentoo.org/~wrobel/webapp-config/${PF}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" -IUSE="" -S=${WORKDIR}/${PF} - -DEPEND="" - -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" - - dodir /etc/vhosts - cp config/webapp-config ${D}/etc/vhosts/ - keepdir /usr/share/webapps - dodoc examples/phpmyadmin-2.5.4-r1.ebuild AUTHORS.txt TODO.txt CHANGES.txt examples/postinstall-en.txt - doman doc/webapp-config.5 doc/webapp-config.8 doc/webapp.eclass.5 - dohtml doc/webapp-config.5.html doc/webapp-config.8.html doc/webapp.eclass.5.html -} - -src_test() { - cd ${S} - einfo "Running webapp-config doctests..." - if ! PYTHONPATH="." ${python} WebappConfig/tests/dtest.py; then - eerror "DocTests failed - please submit a bug report" - die "DocTesting failed!" - fi -} - -pkg_postinst() { - echo - einfo "Now that you have upgraded webapp-config, you **must** update your" - einfo "config files in /etc/vhosts/webapp-config before you emerge any" - einfo "packages that use webapp-config." - echo - epause 5 -} |