diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-09-30 17:41:12 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-09-30 17:41:12 +0200 |
commit | 93da628fc25b770893bd00acf08a7b38adf1cceb (patch) | |
tree | d6629679e2a767f10b92f1a89962c8b35113e8e2 /www-apps | |
parent | www-apache/mod_pcgi2: Remove last-rited pkg (diff) | |
download | gentoo-93da628fc25b770893bd00acf08a7b38adf1cceb.tar.gz gentoo-93da628fc25b770893bd00acf08a7b38adf1cceb.tar.bz2 gentoo-93da628fc25b770893bd00acf08a7b38adf1cceb.zip |
www-apps/pcgi: Remove last-rited pkg
Closes: https://bugs.gentoo.org/693186
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/pcgi/Manifest | 2 | ||||
-rw-r--r-- | www-apps/pcgi/metadata.xml | 8 | ||||
-rw-r--r-- | www-apps/pcgi/pcgi-2.0_alpha5.ebuild | 49 |
3 files changed, 0 insertions, 59 deletions
diff --git a/www-apps/pcgi/Manifest b/www-apps/pcgi/Manifest deleted file mode 100644 index ace59010778b..000000000000 --- a/www-apps/pcgi/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST PCGI-HOWTO-1998-08-13.html.bz2 6483 BLAKE2B 1283503a0474ad4098a9371842b9db6db5d20cd78952d1ddf79cdd2e2f7e37fe17553bc12f635026b45ef36512fb0d2bd3dbaa2590be0796d00a0854d30b6335 SHA512 8b86e0c166055492564ee919d8f983f8f9df7927aac63f9f63068f5dd837a675c3b230801763d2623401095515fe138b5c9ab222d972bbbcedce36ad1b576d16 -DIST Zope-2.6.1-src.tgz 2318685 BLAKE2B 7be409216124479b0baa1c079bc5f41ed7c5f87318a9f814af9d63b0b87fe51756531dde8b4ba7cb4155f29aaf5c39fe82c4f1bb3a7f8586ab3f149798dae842 SHA512 b714c533f818cbc16bd6c5f899049a4f214d5aad06a98f822f886a33fd5636b416cf8e944757f4a50d39daaac482e2af24dcaf4bc0ab795b9e9d25c961525451 diff --git a/www-apps/pcgi/metadata.xml b/www-apps/pcgi/metadata.xml deleted file mode 100644 index f2f2ba9e2823..000000000000 --- a/www-apps/pcgi/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>web-apps@gentoo.org</email> - <name>Gentoo Webapps</name> -</maintainer> -</pkgmetadata> diff --git a/www-apps/pcgi/pcgi-2.0_alpha5.ebuild b/www-apps/pcgi/pcgi-2.0_alpha5.ebuild deleted file mode 100644 index 788a90272d6a..000000000000 --- a/www-apps/pcgi/pcgi-2.0_alpha5.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -# this package is ONLY available inside the Zope tarball!!! -ZOPE_PV=2.6.1 -ZOPE_P=Zope-${ZOPE_PV}-src -S="${WORKDIR}/${ZOPE_P}/pcgi" - -# the only real docs about it are on the author's homepage -# the html.bz2 file is a copy of http://starship.python.net/crew/jbauer/persistcgi/howto/index.html, renamed. -# this is specifically done as every link I have seen is to the old URL of the -# author -DOCDATE="1998-08-13" - -MY_PV="${PV/_alpha/a}" - -DESCRIPTION="Jeff Bauer's Persistent CGI" -HOMEPAGE="http://starship.python.net/crew/jbauer/persistcgi/" -SRC_URI="http://www.zope.org/Products/Zope/${ZOPE_PV}/${ZOPE_P}.tgz - mirror://gentoo/PCGI-HOWTO-${DOCDATE}.html.bz2" -LICENSE="ZPL" -SLOT="0" -KEYWORDS="~ppc ~x86" -IUSE="" -DEPEND="${DEPEND}" -RDEPEND="${RDEPEND} - dev-lang/python" - -src_compile() { - econf || die "econf failed" - emake all creosote || die "emake failed" -} - -src_install() { - into /usr - dodir /usr/bin - dodoc ${WORKDIR}/CGI-HOWTO-1998-08-13.html - newbin pcgi-wrapper pcgi-wrapper${MY_PV} - dosym /usr/bin/pcgi-wrapper${MY_PV} /usr/bin/pcgi-wrapper - dodoc MrCreosote/README.MrCreosote README Test/README.parseinfo - newdoc Util/README README.Util - dobin MrCreosote/pcgi-creosote MrCreosote/creosote.py - dobin Util/killpcgi.py Util/pcgifile.py - dobin pcgi_publisher.py - newbin Test/parseinfo pcgi-parseinfo - cp -pPR Example ${D}/usr/share/doc/${PF}/ -} |