add python part of pulse

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/mds@932 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one
2009-04-07 14:35:53 +00:00
parent 945bbf7ef3
commit be00bd9b31
15 changed files with 334 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST pulse2-common-1.2.0.tar.gz 26285 RMD160 b48734df580c1c3003a9df2c4346c968d612adf3 SHA1 f58aaab14040f61a620998797b382591ce6aa447 SHA256 95981580e35437bbf96d3debd782c67bbc51cc24882993a5de428b811dcb6934
EBUILD pulse2-common-1.2.0.ebuild 711 RMD160 90d1a71c60a63d7e8faf4308f9b6a5c31be9e209 SHA1 c97c89130e584d9bd7417865e1c2145041a6c6a1 SHA256 8da64cc7ff60454a7e28da68e33d495eca0692116a848660e7ebefdb97f9e0a5

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit distutils
# ESVN_REPO_URI="http://mds.mandriva.org/svn/mmc-agent"
DESCRIPTION="The MMC Agent and its Python plugins."
HOMEPAGE="http://mds.mandriva.org/"
SRC_URI="http://mds.mandriva.org/pub/pulse2/sources/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE=""
SLOT="0"
RDEPEND=">=dev-python/twisted-web-0.7.0"
DEPEND=">=dev-python/setuptools-0.6_rc1"
# from marienz's setuptools.eclass:
src_install() {
"${python}" setup.py install --root="${D}" --no-compile "$@" || die "install failed"
}
src_test() {
"${python}" setup.py test || die "tests failed"
}