diff options
author | Lukasz Strzygowski <lucass@gentoo.org> | 2004-06-27 14:58:17 +0000 |
---|---|---|
committer | Lukasz Strzygowski <lucass@gentoo.org> | 2004-06-27 14:58:17 +0000 |
commit | be244749ba711ce8cd4a4afeede85210925a165c (patch) | |
tree | d8f825e370d04977c675ef17d98a79ae0716089d /dev-python/ply | |
parent | initial commit (Manifest recommit) (diff) | |
download | gentoo-2-be244749ba711ce8cd4a4afeede85210925a165c.tar.gz gentoo-2-be244749ba711ce8cd4a4afeede85210925a165c.tar.bz2 gentoo-2-be244749ba711ce8cd4a4afeede85210925a165c.zip |
Initial commit.
Diffstat (limited to 'dev-python/ply')
-rw-r--r-- | dev-python/ply/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/ply/Manifest | 2 | ||||
-rw-r--r-- | dev-python/ply/files/digest-ply-1.5 | 1 | ||||
-rw-r--r-- | dev-python/ply/metadata.xml | 14 | ||||
-rw-r--r-- | dev-python/ply/ply-1.5.ebuild | 22 |
5 files changed, 48 insertions, 0 deletions
diff --git a/dev-python/ply/ChangeLog b/dev-python/ply/ChangeLog new file mode 100644 index 000000000000..8176aac1005a --- /dev/null +++ b/dev-python/ply/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-python/ply +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ply/ChangeLog,v 1.1 2004/06/27 14:58:17 lucass Exp $ + +*ply-1.5 (27 Jun 2004) + + 27 Jun 2004; Lukasz Strzygowski <lucass@gentoo.org> +ply-1.5.ebuild: + Initial commit. Thanks to Yann Ramin in bug #49932. + diff --git a/dev-python/ply/Manifest b/dev-python/ply/Manifest new file mode 100644 index 000000000000..8b70de2fef74 --- /dev/null +++ b/dev-python/ply/Manifest @@ -0,0 +1,2 @@ +MD5 1f63e6ea1e2c63b95f23329d65dfbaa5 ply-1.5.ebuild 500 +MD5 c599af08601e51fff11b9fd1193f2086 files/digest-ply-1.5 58 diff --git a/dev-python/ply/files/digest-ply-1.5 b/dev-python/ply/files/digest-ply-1.5 new file mode 100644 index 000000000000..dc7a064f8799 --- /dev/null +++ b/dev-python/ply/files/digest-ply-1.5 @@ -0,0 +1 @@ +MD5 88549f0d9cf7ff6c62123e1f05a4f0d2 ply-1.5.tar.gz 69278 diff --git a/dev-python/ply/metadata.xml b/dev-python/ply/metadata.xml new file mode 100644 index 000000000000..1b7d0e07991a --- /dev/null +++ b/dev-python/ply/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>python</herd> +<longdescription> +PLY is a Python-only implementation of the popular compiler construction +tools lex and yacc. The implementation borrows ideas from a number of +previous efforts; most notably John Aycock's SPARK toolkit. However, +the overall flavor of the implementation is more closely modeled after +the C version of lex and yacc. The other significant feature of PLY is +that it provides extensive input validation and error reporting--much +more so than other Python parsing tools. +</longdescription> +</pkgmetadata> diff --git a/dev-python/ply/ply-1.5.ebuild b/dev-python/ply/ply-1.5.ebuild new file mode 100644 index 000000000000..0c9abf721fcd --- /dev/null +++ b/dev-python/ply/ply-1.5.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ply/ply-1.5.ebuild,v 1.1 2004/06/27 14:58:17 lucass Exp $ + +inherit distutils + +IUSE="" +DESCRIPTION="Python Lex-Yacc library" +SRC_URI="http://systems.cs.uchicago.edu/ply/${P}.tar.gz" +HOMEPAGE="http://systems.cs.uchicago.edu/ply/" +DEPEND="virtual/python" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86" + +src_install() { + distutils_src_install + dohtml doc/* + dodoc CHANGES TODO + cp -r example ${D}/usr/share/doc/${PF} +} + |