5b9ecd1d7e
git-svn-id: http://svn.sabayonlinux.org/overlay@2451 d7aec97c-591d-0410-af39-a8856400b30a
47 lines
1.0 KiB
Bash
47 lines
1.0 KiB
Bash
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/gdata-1.0.8.ebuild,v 1.6 2008/06/02 09:30:49 aballier Exp $
|
|
|
|
inherit distutils eutils
|
|
|
|
MY_P="gdata.py-${PV}"
|
|
|
|
DESCRIPTION="Python client library for Google data APIs"
|
|
HOMEPAGE="http://code.google.com/p/gdata-python-client/"
|
|
SRC_URI="http://gdata-python-client.googlecode.com/files/${MY_P}.tar.gz"
|
|
RESTRICT="nomirror"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
|
|
IUSE="examples"
|
|
|
|
DEPEND=""
|
|
RDEPEND="|| ( >=dev-lang/python-2.5 dev-python/elementtree )"
|
|
|
|
PYTHON_MODNAME="atom gdata"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_unpack() {
|
|
distutils_src_unpack
|
|
}
|
|
|
|
src_install() {
|
|
distutils_src_install
|
|
|
|
if use examples; then
|
|
insinto /usr/share/doc/${PF}
|
|
doins -r samples
|
|
fi
|
|
}
|
|
|
|
src_test() {
|
|
cd tests
|
|
export PYTHONPATH=../src
|
|
for x in $(find -name "*.py"); do
|
|
grep -q raw_input ${x} && continue
|
|
einfo "Running ${x}..."
|
|
"${python}" ${x} -v || die "${x} failed"
|
|
done
|
|
}
|