diff options
author | 2005-10-31 23:22:47 +0000 | |
---|---|---|
committer | 2005-10-31 23:22:47 +0000 | |
commit | 42ccd974891b7e218c8af30306b12440c2a1e2d9 (patch) | |
tree | b7aaaa9e91a424709c6c75df4e47ccaf2cbd6195 /app-text/pytextile | |
parent | incorporate thoughts from bug #110977 (diff) | |
download | gentoo-2-42ccd974891b7e218c8af30306b12440c2a1e2d9.tar.gz gentoo-2-42ccd974891b7e218c8af30306b12440c2a1e2d9.tar.bz2 gentoo-2-42ccd974891b7e218c8af30306b12440c2a1e2d9.zip |
New ebuild, closes bug #92151. Thanks to Tyson Burghardt <tysonburghardt@sbcglobal.net> for initial input.
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'app-text/pytextile')
-rw-r--r-- | app-text/pytextile/ChangeLog | 11 | ||||
-rw-r--r-- | app-text/pytextile/Manifest | 2 | ||||
-rw-r--r-- | app-text/pytextile/files/digest-pytextile-2.0.10 | 1 | ||||
-rw-r--r-- | app-text/pytextile/metadata.xml | 14 | ||||
-rw-r--r-- | app-text/pytextile/pytextile-2.0.10.ebuild | 20 |
5 files changed, 48 insertions, 0 deletions
diff --git a/app-text/pytextile/ChangeLog b/app-text/pytextile/ChangeLog new file mode 100644 index 000000000000..0cb19fb4a476 --- /dev/null +++ b/app-text/pytextile/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-text/pytextile +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.1 2005/10/31 23:22:47 dju Exp $ + +*pytextile-2.0.10 (31 Oct 2005) + + 31 Oct 2005; Julien Allanos <dju@gentoo.org> +metadata.xml, + +pytextile-2.0.10.ebuild: + New ebuild, closes bug #92151. + Thanks to Tyson Burghardt <tysonburghardt@sbcglobal.net> for initial input. + diff --git a/app-text/pytextile/Manifest b/app-text/pytextile/Manifest new file mode 100644 index 000000000000..831aacadb7fb --- /dev/null +++ b/app-text/pytextile/Manifest @@ -0,0 +1,2 @@ +MD5 ecd126b1e2d109f5d12c899e753c7c86 pytextile-2.0.10.ebuild 497 +MD5 877d61c05989e16389902d078ce46ed0 files/digest-pytextile-2.0.10 65 diff --git a/app-text/pytextile/files/digest-pytextile-2.0.10 b/app-text/pytextile/files/digest-pytextile-2.0.10 new file mode 100644 index 000000000000..73df12a5fc32 --- /dev/null +++ b/app-text/pytextile/files/digest-pytextile-2.0.10 @@ -0,0 +1 @@ +MD5 19ae07379e5986049b7d9a34ffcbf867 textile-2.0.10.tar.gz 28037 diff --git a/app-text/pytextile/metadata.xml b/app-text/pytextile/metadata.xml new file mode 100644 index 000000000000..fe460501fdee --- /dev/null +++ b/app-text/pytextile/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>no-herd</herd> +<maintainer> +<email>dju@gentoo.org</email> +<name>Julien Allanos</name> +</maintainer> +<longdescription lang="en"> +A python implementation of Textile, Dean Allen's Human Text Generator. Textile +simplifies the work of creating (X)HTML. +</longdescription> +</pkgmetadata> + diff --git a/app-text/pytextile/pytextile-2.0.10.ebuild b/app-text/pytextile/pytextile-2.0.10.ebuild new file mode 100644 index 000000000000..94aa6d913a20 --- /dev/null +++ b/app-text/pytextile/pytextile-2.0.10.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.0.10.ebuild,v 1.1 2005/10/31 23:22:47 dju Exp $ + +inherit distutils + +MY_P=${P/py//} + +DESCRIPTION="A python implementation of Textile, Dean Allen's Human Text Generator. Textile simplifies the work of creating (X)HTML." +HOMEPAGE="http://dealmeida.net/en/Projects/PyTextile/" +SRC_URI="http://dealmeida.net/code/${MY_P}.tar.gz" + +LICENSE="freedist" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="dev-lang/python" + +S=${WORKDIR}/${MY_P} |