blob: fe36549fd25cfb244c956db01c39402bb46c058b (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/snakeoil/snakeoil-0.1_rc2.ebuild,v 1.7 2007/06/16 11:17:55 dertobi123 Exp $
NEED_PYTHON=2.4
inherit distutils
DESCRIPTION="Miscellaneous python utility code."
HOMEPAGE="http://www.pkgcore.org/"
SRC_URI="http://www.pkgcore.org/releases/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
DOCS="AUTHORS NEWS"
# Uses an ugly hack to install for all versions of python on the
# system. This should be supported through the eclass at some point.
# pkgcore needs it now to support upgrading to a different python slot.
src_compile() {
local opython=${python}
for python in /usr/bin/python2.[4-9]; do
distutils_src_compile
done
python=${opython}
}
src_test() {
local opython=${python} tempdir
for python in /usr/bin/python2.[4-9]; do
tempdir="${T}/tests/$(basename ${python})"
mkdir -p "${tempdir}" || die "tempdir creation failed"
cp -r "${S}" "${tempdir}" || die "test copy failed"
cd "${tempdir}/${P}"
"${python}" setup.py test || die "testing returned non zero"
done
python=${opython}
rm -rf "${T}/tests"
}
src_install() {
local opython=${python}
for python in /usr/bin/python2.[4-9]; do
distutils_src_install
done
}
|