]> Pileus Git - ~andy/sunrise/commitdiff
dev-python/pottymouth: New ebuild for bug 274612. Thanks to hwoarang!
authorJohan Bergström (jbergstroem) <bugs@bergstroem.nu>
Thu, 18 Jun 2009 14:30:33 +0000 (14:30 +0000)
committerJohan Bergström (jbergstroem) <bugs@bergstroem.nu>
Thu, 18 Jun 2009 14:30:33 +0000 (14:30 +0000)
svn path=/sunrise/; revision=8667

dev-python/pottymouth/ChangeLog [new file with mode: 0644]
dev-python/pottymouth/Manifest [new file with mode: 0644]
dev-python/pottymouth/metadata.xml [new file with mode: 0644]
dev-python/pottymouth/pottymouth-1.1.4.ebuild [new file with mode: 0644]

diff --git a/dev-python/pottymouth/ChangeLog b/dev-python/pottymouth/ChangeLog
new file mode 100644 (file)
index 0000000..8e7df03
--- /dev/null
@@ -0,0 +1,8 @@
+# ChangeLog for dev-python/pottymouth
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+  18 Jun 2009; Johan Bergström (jbergstroem) <bugs@bergstroem.nu>
+  +pottymouth-1.1.4.ebuild, +metadata.xml:
+  New ebuild for bug 274612. Thanks to hwoarang!
+
diff --git a/dev-python/pottymouth/Manifest b/dev-python/pottymouth/Manifest
new file mode 100644 (file)
index 0000000..cac582c
--- /dev/null
@@ -0,0 +1,4 @@
+DIST PottyMouth-1.1.4.tar.gz 24691 RMD160 283b3cf11f00c0cb9fecfd5b57224629d4ea9035 SHA1 b3f1687bb26eb5209e66700f6de2af8f073e7b9c SHA256 a9b9a5586e667d07167b8b3b65fad06bdb111d84e90228643e6366b342e025d6
+EBUILD pottymouth-1.1.4.ebuild 567 RMD160 f7259651e8cecce87abaf8a4d6cb727bc5a7a6a2 SHA1 dd3936339acbce296538fd5ddae3540a2ccaaf8e SHA256 a7e17374802b7757fcc0e1e26d4436b8d871e006a0b5ce16471e742a4077d037
+MISC ChangeLog 282 RMD160 bdb0d55e6cf0d649c7fe1a3af3d96a808bae282f SHA1 9071825720f863f4584041577eb212102a998315 SHA256 9cce4635f905f915f70c3df58548380f623ec926987b5a1c8eded66bcfbf3bb8
+MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42
diff --git a/dev-python/pottymouth/metadata.xml b/dev-python/pottymouth/metadata.xml
new file mode 100644 (file)
index 0000000..7e32869
--- /dev/null
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>maintainer-wanted</herd>
+</pkgmetadata>
diff --git a/dev-python/pottymouth/pottymouth-1.1.4.ebuild b/dev-python/pottymouth/pottymouth-1.1.4.ebuild
new file mode 100644 (file)
index 0000000..75b06a2
--- /dev/null
@@ -0,0 +1,25 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+NEED_PYTHON=2.4
+
+inherit distutils
+
+MY_PN="PottyMouth"
+DESCRIPTION="A python library that scrubs untrusted text to valid, nice-looking, completely safe XHTML"
+HOMEPAGE="http://devsuki.com/pottymouth/"
+SRC_URI="http://devsuki.com/pottymouth/dist/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-python/setuptools"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+src_test() {
+       python setup.py test || die "Tests failed"
+}