blob: 4672b1812ac578471d220c2e6ac5d290c546ff17 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bzrtools/bzrtools-2.0.1.ebuild,v 1.2 2010/03/05 09:52:20 fauli Exp $
EAPI="2"
NEED_PYTHON=2.4
inherit eutils distutils versionator
DESCRIPTION="bzrtools is a useful collection of utilities for bzr."
HOMEPAGE="http://bazaar-vcs.org/BzrTools"
SRC_URI=""https://launchpad.net/${PN}/stable/${PV}/+download/${P}.tar.gz""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ia64 ppc sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~x86-macos"
IUSE=""
DEPEND="=dev-vcs/bzr-$(get_version_component_range 1-2)*"
RDEPEND="${DEPEND}"
RESTRICT="test"
DOCS="AUTHORS CREDITS NEWS NEWS.Shelf README README.Shelf TODO TODO.heads TODO.Shelf"
S=${WORKDIR}/${PN}
PYTHON_MODNAME=bzrlib
src_test() {
python_version
einfo "Running testsuite..."
# put a linked copy of the bzr core into the build directory to properly
# test the "built" version of bzrtools
find "$(python_get_libdir)/site-packages/bzrlib/" \
-mindepth 1 -maxdepth 1 \
\( \( -type d -and -not -name "plugins" \) -or -name "*.py" \) \
-exec ln -s '{}' "${S}/build/lib/bzrlib/" \;
touch "${S}/build/lib/bzrlib/plugins/__init__.py"
"${S}/test.py" "${S}/build/lib" || die "Testsuite failed."
# remove the "shadow" copy so it doesn't get installed
rm "${S}/build/lib/bzrlib/plugins/__init__.py"
find "${S}/build/lib/bzrlib/" -mindepth 1 -maxdepth 1 -type l -exec rm '{}' \;
}
|