summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2009-06-01 14:28:48 +0000
committerPatrick Lauer <patrick@gentoo.org>2009-06-01 14:28:48 +0000
commit2fe558a38318e847ab9d0ccf9f7feb8e459c4ffd (patch)
tree9e30cc6cd25d7ab0803709946fd9fa64ffd53a1c /dev-python/vobject
parentThere was --disable-motif in econf but USE motif was still there to collect u... (diff)
downloadgentoo-2-2fe558a38318e847ab9d0ccf9f7feb8e459c4ffd.tar.gz
gentoo-2-2fe558a38318e847ab9d0ccf9f7feb8e459c4ffd.tar.bz2
gentoo-2-2fe558a38318e847ab9d0ccf9f7feb8e459c4ffd.zip
Bump to 0.8.1c, fixes #272093
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/vobject')
-rw-r--r--dev-python/vobject/ChangeLog7
-rw-r--r--dev-python/vobject/vobject-0.8.1c.ebuild25
2 files changed, 31 insertions, 1 deletions
diff --git a/dev-python/vobject/ChangeLog b/dev-python/vobject/ChangeLog
index 82a1742fc57d..d6fcd63e48b8 100644
--- a/dev-python/vobject/ChangeLog
+++ b/dev-python/vobject/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/vobject
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/vobject/ChangeLog,v 1.6 2009/04/23 19:17:50 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/vobject/ChangeLog,v 1.7 2009/06/01 14:28:48 patrick Exp $
+
+*vobject-0.8.1c (01 Jun 2009)
+
+ 01 Jun 2009; Patrick Lauer <patrick@gentoo.org> +vobject-0.8.1c.ebuild:
+ Bump to 0.8.1c, fixes #272093
23 Apr 2009; Markus Meier <maekke@gentoo.org> vobject-0.8.1b:
amd64/x86 stable, bug #266976
diff --git a/dev-python/vobject/vobject-0.8.1c.ebuild b/dev-python/vobject/vobject-0.8.1c.ebuild
new file mode 100644
index 000000000000..16d35ebc4ae2
--- /dev/null
+++ b/dev-python/vobject/vobject-0.8.1c.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/vobject/vobject-0.8.1c.ebuild,v 1.1 2009/06/01 14:28:48 patrick Exp $
+
+NEED_PYTHON="2.4"
+
+inherit distutils
+
+DESCRIPTION="A full featured Python package for parsing and generating vCard and vCalendar files"
+HOMEPAGE="http://vobject.skyhouseconsulting.com/"
+SRC_URI="http://vobject.skyhouseconsulting.com/${P}.tar.gz"
+LICENSE="Apache-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-python/python-dateutil-1.1"
+DEPEND="${RDEPEND}
+ dev-python/setuptools"
+
+DOCS="ACKNOWLEDGEMENTS.txt"
+
+src_test() {
+ PYTHONPATH="${S}/src" "${python}" test_vobject.py || die "tests failed"
+}