summaryrefslogtreecommitdiff
blob: 059b0a134c5c904c36169f127c64b429fc669ce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyprotocols/pyprotocols-1.0_pre2306.ebuild,v 1.5 2007/12/31 16:30:53 josejx Exp $

NEED_PYTHON=2.4

inherit distutils

MY_PN=PyProtocols
MY_P=${MY_PN}-${PV/_pre/a0dev_r}

DESCRIPTION="Extends the PEP 246 adapt() function with a new 'declaration API' that lets you easily define your own protocols and adapters, and declare what adapters should be used to adapt what types, objects, or protocols."
HOMEPAGE="http://peak.telecommunity.com/PyProtocols.html"
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
LICENSE="|| ( PSF-2.4 ZPL )"
SLOT="0"
IUSE=""

RDEPEND=">=dev-python/decoratortools-1.4"
DEPEND="${RDEPEND}
	>=dev-python/setuptools-0.6_rc5"

S="${WORKDIR}/${MY_PN}"

PYTHON_MODNAME="protocols"

src_test() {
	PYTHONPATH="./src/" "${python}" setup.py test || die "tests failed"
}