blob: 6327dd129f1aeacb4ab45b83f582788dcb97ee45 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-cola/git-cola-1.9.4.ebuild,v 1.2 2014/02/21 14:51:54 jlec Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
DISTUTILS_SINGLE_IMPL=true
inherit distutils-r1
DESCRIPTION="The highly caffeinated git GUI"
HOMEPAGE="http://git-cola.github.com/"
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
RDEPEND="
dev-python/jsonpickle[${PYTHON_USEDEP}]
dev-python/pyinotify[${PYTHON_USEDEP}]
dev-python/PyQt4[${PYTHON_USEDEP}]
dev-vcs/git"
DEPEND="${RDEPEND}
app-text/asciidoc
app-text/xmlto
sys-devel/gettext
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? (
dev-python/nose[${PYTHON_USEDEP}]
sys-apps/net-tools
)"
PATCHES=(
"${FILESDIR}"/${PN}-1.9.3-disable-tests.patch
"${FILESDIR}"/${PN}-1.9.1-system-ssh-askpass.patch
)
pkg_pretend() {
if use test && [[ -z "$(hostname -d)" ]] ; then
die "Test will fail if no domain is set"
fi
}
python_prepare_all() {
rm share/git-cola/bin/*askpass* || die
# unfinished translate framework
rm test/i18n_test.py || die
# don't install docs into wrong location
sed -i \
-e '/doc/d' \
setup.py || die "sed failed"
sed -i \
-e "s|'doc', 'git-cola'|'doc', '${PF}'|" \
cola/resources.py || die "sed failed"
distutils-r1_python_prepare_all
}
python_compile_all() {
cd share/doc/${PN}/
if use doc ; then
emake all
else
sed \
-e '/^install:/s:install-html::g' \
-i Makefile || die
fi
}
python_install_all() {
cd share/doc/${PN}/ || die
emake \
DESTDIR="${D}" \
docdir="${EPREFIX}/usr/share/doc/${PF}" \
prefix="${EPREFIX}/usr" \
install
if ! use doc ; then
HTML_DOCS=( "${FILESDIR}"/index.html )
fi
distutils-r1_python_install_all
docompress /usr/share/doc/${PF}/git-cola.txt
}
python_test() {
PYTHONPATH="${S}:${S}/build/lib:${PYTHONPATH}" LC_ALL="C" nosetests \
--verbose --with-doctest --with-id --exclude=jsonpickle --exclude=json \
|| die "running nosetests failed"
}
pkg_postinst() {
elog "Please make sure you have either a SSH key management installed and activated or"
elog "installed a SSH askpass app like net-misc/x11-ssh-askpass."
elog "Otherwise ${PN} may hang when pushing/pulling from remote git repositories via SSH. "
}
|