blob: 44473b449a5f6b19faec1921f22e300f845f6cbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit distutils
DESCRIPTION="a full featured Python package for parsing and generating vCard and vCalendar files"
SRC_URI="http://vobject.skyhouseconsulting.com/${P}.tar.gz"
HOMEPAGE="http://vobject.skyhouseconsulting.com/"
KEYWORDS="~x86"
LICENSE="Apache-1.1"
SLOT="0"
RDEPEND=">=dev-python/python-dateutil-1.1"
DEPEND="${RDEPEND}
>=dev-python/setuptools-0.6_rc1"
DOCS="README.txt"
src_test() {
python tests/tests.py
}
|