diff options
author | Bryan Østergaard <kloeri@gentoo.org> | 2004-03-29 01:22:32 +0000 |
---|---|---|
committer | Bryan Østergaard <kloeri@gentoo.org> | 2004-03-29 01:22:32 +0000 |
commit | 989cab926b46b04c932c957bf422b2cb00c981f8 (patch) | |
tree | fc9b2b449770b9f7783f822ce95f128bd245082d /dev-python | |
parent | move from net-ftp #45968 (diff) | |
download | gentoo-2-989cab926b46b04c932c957bf422b2cb00c981f8.tar.gz gentoo-2-989cab926b46b04c932c957bf422b2cb00c981f8.tar.bz2 gentoo-2-989cab926b46b04c932c957bf422b2cb00c981f8.zip |
Initial import, ebuild submitted by Bardur Arantsson <gentoo@scientician.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/pyparsing/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/pyparsing/files/digest-pyparsing-1.1.2 | 1 | ||||
-rw-r--r-- | dev-python/pyparsing/metadata.xml | 5 | ||||
-rw-r--r-- | dev-python/pyparsing/pyparsing-1.1.2.ebuild | 24 |
4 files changed, 40 insertions, 0 deletions
diff --git a/dev-python/pyparsing/ChangeLog b/dev-python/pyparsing/ChangeLog new file mode 100644 index 000000000000..1f56889d93ae --- /dev/null +++ b/dev-python/pyparsing/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-python/pyparsing +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/ChangeLog,v 1.1 2004/03/29 01:22:32 kloeri Exp $ + +*pyparsing-1.1.2 (29 Mar 2004) + + 29 Mar 2004; Bryan Østergaard <kloeri@gentoo.org> metadata.xml, + pyparsing-1.1.2.ebuild: + Initial import, ebuild submitted by Bardur Arantsson <gentoo@scientician.org> + diff --git a/dev-python/pyparsing/files/digest-pyparsing-1.1.2 b/dev-python/pyparsing/files/digest-pyparsing-1.1.2 new file mode 100644 index 000000000000..cbfd15ae144b --- /dev/null +++ b/dev-python/pyparsing/files/digest-pyparsing-1.1.2 @@ -0,0 +1 @@ +MD5 de0e8954743513b0038ed53190e0a9a5 pyparsing-1.1.2.tar.gz 230209 diff --git a/dev-python/pyparsing/metadata.xml b/dev-python/pyparsing/metadata.xml new file mode 100644 index 000000000000..de483c53568f --- /dev/null +++ b/dev-python/pyparsing/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>python</herd> +</pkgmetadata> diff --git a/dev-python/pyparsing/pyparsing-1.1.2.ebuild b/dev-python/pyparsing/pyparsing-1.1.2.ebuild new file mode 100644 index 000000000000..d48a22ff4fa7 --- /dev/null +++ b/dev-python/pyparsing/pyparsing-1.1.2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/pyparsing-1.1.2.ebuild,v 1.1 2004/03/29 01:22:32 kloeri Exp $ + +inherit distutils + +DESCRIPTION="pyparsing is an easy-to-use Python module for text parsing" +SRC_URI="mirror://sourceforge/pyparsing/${P}.tar.gz" +HOMEPAGE="http://pyparsing.sourceforge.net/" +LICENSE="MIT" +SLOT="0" +DEPEND="dev-lang/python" +KEYWORDS="~x86" +IUSE="" + +src_install() { + dohtml HowToUsePyparsing.html + dohtml -r htmldoc/* + + docinto examples + dodoc examples/* + + distutils_src_install +} |