blob: 6befb8bbf673aa0b5151e484f6bb4387ba27109d (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/mechanize/mechanize-0.1.7b.ebuild,v 1.9 2008/12/07 10:44:02 patrick Exp $
NEED_PYTHON=2.3
inherit distutils
DESCRIPTION="Stateful programmatic web browsing in Python"
HOMEPAGE="http://wwwsearch.sourceforge.net/mechanize/"
SRC_URI="http://wwwsearch.sourceforge.net/${PN}/src/${P}.tar.gz"
LICENSE="|| ( BSD ZPL )"
SLOT="0"
KEYWORDS="amd64 ~ia64 ppc x86"
IUSE=""
DEPEND=">=dev-python/clientform-0.2.7"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
# use distutils instead of setuptools
sed -i \
-e 's/not hasattr(sys, "version_info")/1/' \
setup.py || die "sed in setup.py failed"
# We don't run coverage tests or functional_tests
# which access the network, just doctests and unit tests
sed -i \
-e '/import coverage/d' \
test.py || die "sed in test.py failed"
}
src_install() {
DOCS="0.1-changes.txt"
# remove to prevent distutils_src_install from installing it
dohtml *.html
rm README.html*
distutils_src_install
}
src_test() {
PYTHONPATH=build/lib/ "${python}" test.py || die "tests failed"
}
|