diff options
author | Thomas Raschbacher <lordvan@gentoo.org> | 2003-11-03 07:02:10 +0000 |
---|---|---|
committer | Thomas Raschbacher <lordvan@gentoo.org> | 2003-11-03 07:02:10 +0000 |
commit | 9a5610eb6b3c23e562edacbf5c8b5b8631a4e5ca (patch) | |
tree | ea2a51956821395ce136f462ad2a34ddfb84fc0c /dev-python | |
parent | moved to all-lowercase name (diff) | |
download | historical-9a5610eb6b3c23e562edacbf5c8b5b8631a4e5ca.tar.gz historical-9a5610eb6b3c23e562edacbf5c8b5b8631a4e5ca.tar.bz2 historical-9a5610eb6b3c23e562edacbf5c8b5b8631a4e5ca.zip |
moved to all-lowercase name
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/twisted-docs/Manifest | 4 | ||||
-rw-r--r-- | dev-python/twisted-docs/files/digest-twisted-docs-1.1.0 | 1 | ||||
-rw-r--r-- | dev-python/twisted-docs/metadata.xml | 6 | ||||
-rw-r--r-- | dev-python/twisted-docs/twisted-docs-1.1.0.ebuild | 38 |
4 files changed, 47 insertions, 2 deletions
diff --git a/dev-python/twisted-docs/Manifest b/dev-python/twisted-docs/Manifest index cfee214cedde..164e3ef29b1d 100644 --- a/dev-python/twisted-docs/Manifest +++ b/dev-python/twisted-docs/Manifest @@ -1,4 +1,4 @@ -MD5 63a54c989abd02dc48cb5071e5edda98 twisted-docs-1.1.0.ebuild 914 -MD5 02af2daa787b59adf499a2aa06c0d050 ChangeLog 397 +MD5 a15a7cdb4616853f97741b766fb983d0 twisted-docs-1.1.0.ebuild 916 +MD5 05d3a9a495fb0226bca1bb6f57c837c1 ChangeLog 405 MD5 19df39ef54fc4a8677998f19bb6046ac metadata.xml 218 MD5 7b7856512d8720cdff541fe47a782a29 files/digest-twisted-docs-1.1.0 71 diff --git a/dev-python/twisted-docs/files/digest-twisted-docs-1.1.0 b/dev-python/twisted-docs/files/digest-twisted-docs-1.1.0 new file mode 100644 index 000000000000..1a95a9a59523 --- /dev/null +++ b/dev-python/twisted-docs/files/digest-twisted-docs-1.1.0 @@ -0,0 +1 @@ +MD5 5355ef2a7e5d3ae68b2a917bd6fa91a3 TwistedDocs-1.1.0.tar.bz2 4114901 diff --git a/dev-python/twisted-docs/metadata.xml b/dev-python/twisted-docs/metadata.xml new file mode 100644 index 000000000000..37d1f8e02e49 --- /dev/null +++ b/dev-python/twisted-docs/metadata.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>python</herd> +<maintainer><email>lordvan@gentoo.org</email></maintainer> +</pkgmetadata> diff --git a/dev-python/twisted-docs/twisted-docs-1.1.0.ebuild b/dev-python/twisted-docs/twisted-docs-1.1.0.ebuild new file mode 100644 index 000000000000..6830a0dc5735 --- /dev/null +++ b/dev-python/twisted-docs/twisted-docs-1.1.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-docs/twisted-docs-1.1.0.ebuild,v 1.1 2003/11/03 07:02:01 lordvan Exp $ + +#inherit distutils + +MY_PN="TwistedDocs" + +DESCRIPTION="collection of servers and clients, which can be used either by developers of new applications or directly. Documentation included." +HOMEPAGE="http://www.twistedmatrix.com/" +SRC_URI="http://twisted.sourceforge.net/${MY_PN}-${PV}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="x86 alpha sparc" +IUSE="" + +DEPEND="" + +S=${WORKDIR}/${MY_PN}-${PV} + +src_unpack() { + unpack ${MY_PN}-${PV}.tar.bz2 +} + +src_compile() { + einfo "Nothing to compile" +} + +src_install() { + cd ${S} + # of course it's documentation! + doman man/*.[0-9n] + rm -rf man # don't dupe the man pages + + dodir /usr/share/doc/${PF} + cp -r . ${D}/usr/share/doc/${PF} +} |