Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/tortoisehg/
Date: Wed, 04 May 2016 06:19:49
Message-Id: 1462342778.2a8ec8d507e66a8cf698a4fbef9f938c6b07a42f.polynomial-c@gentoo
1 commit: 2a8ec8d507e66a8cf698a4fbef9f938c6b07a42f
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 4 06:19:38 2016 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed May 4 06:19:38 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a8ec8d5
7
8 dev-vcs/tortoisehg: Bump to version 3.8.1
9
10 Package-Manager: portage-2.2.28
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 dev-vcs/tortoisehg/Manifest | 1 +
14 dev-vcs/tortoisehg/tortoisehg-3.8.1.ebuild | 78 ++++++++++++++++++++++++++++++
15 2 files changed, 79 insertions(+)
16
17 diff --git a/dev-vcs/tortoisehg/Manifest b/dev-vcs/tortoisehg/Manifest
18 index 4e95ce2..50aaa56 100644
19 --- a/dev-vcs/tortoisehg/Manifest
20 +++ b/dev-vcs/tortoisehg/Manifest
21 @@ -1,2 +1,3 @@
22 DIST tortoisehg-3.3.2.tar.gz 8226128 SHA256 779beb06588897d1c42fc463fecc4b61498f7cac76681fe1c1f017ecd811719a SHA512 4b7e1422731507aa8947b0e8e7746a6daa004186833db200122927c4e5a2f2cb1fbbf12f89089e3ee82d1a22fdb3c7745465188cbf3e14d73d831b953f2b2d9f WHIRLPOOL 34fce6c6383ae94eb4d6fbca854068535ac39b50746dbcc3ee9460976231dc68c3c5f824dc31082838505bdaeaf3620306ceea867d8ac5571d00ee1f1192e867
23 DIST tortoisehg-3.7.3.tar.gz 7806350 SHA256 b0055ef6bee59244356179d5af98ffe200388133b17cd4ab5831b979b78a50ed SHA512 5ff57b98b93083cc78e161566f045474e70d474dab98ee99eaa6f453ac2521276a8384563a2e738a786a3c9cbe4c118837a8c534cfd4671c323eab261252e6f9 WHIRLPOOL 9a6e573b22b6dcf328a656dcd9e4f2bd500fc74f03f6d9ee8d350ec35cd7a02f239f6aa290b6ff9414d4b7aedde0b3003296f3520463669ce4f9b75a85a820ba
24 +DIST tortoisehg-3.8.1.tar.gz 7807685 SHA256 e64639768ec22e45966b6799257ebad4a98dbb6cfaa39b74ccc08c95be2fb0ec SHA512 1ab9328462035ab78c4ffadba3bf60a58e641947a69be10cc6c7892a71de4f8436f0225806fa898c7de95593dd4e7b7b76aa9ef3dc8115bbd8bbadc20fe82612 WHIRLPOOL e9bce9a316c0f226f2c5a9a5e3a65664c0ae12f1c7628beb6edea229a9bd9924b15b848bd26d20975e852701c1fa3dfca9b3a0db5031b918a2cb12ade4f19bae
25
26 diff --git a/dev-vcs/tortoisehg/tortoisehg-3.8.1.ebuild b/dev-vcs/tortoisehg/tortoisehg-3.8.1.ebuild
27 new file mode 100644
28 index 0000000..e5c3eef
29 --- /dev/null
30 +++ b/dev-vcs/tortoisehg/tortoisehg-3.8.1.ebuild
31 @@ -0,0 +1,78 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +PYTHON_COMPAT=( python2_7 )
38 +
39 +inherit distutils-r1 eutils
40 +
41 +if [[ ${PV} != *9999* ]]; then
42 + KEYWORDS="~amd64 ~x86"
43 + SRC_URI="https://www.bitbucket.org/${PN}/targz/downloads/${P}.tar.gz"
44 + HG_DEPEND=">=dev-vcs/mercurial-3.7 <dev-vcs/mercurial-3.9"
45 +else
46 + inherit mercurial
47 + EHG_REPO_URI="https://bitbucket.org/tortoisehg/thg"
48 + EHG_REVISION="stable"
49 + KEYWORDS=""
50 + SRC_URI=""
51 + HG_DEPEND="dev-vcs/mercurial"
52 +fi
53 +
54 +DESCRIPTION="Set of graphical tools for Mercurial"
55 +HOMEPAGE="https://tortoisehg.bitbucket.org"
56 +
57 +LICENSE="GPL-2"
58 +SLOT="0"
59 +IUSE="doc"
60 +
61 +RDEPEND="${HG_DEPEND}
62 + dev-python/iniparse[${PYTHON_USEDEP}]
63 + dev-python/pygments[${PYTHON_USEDEP}]
64 + dev-python/PyQt4[svg,${PYTHON_USEDEP}]
65 + dev-python/qscintilla-python[${PYTHON_USEDEP}]"
66 +DEPEND="${RDEPEND}
67 + doc? ( >=dev-python/sphinx-1.0.3 )"
68 +
69 +# Workaround race condition in build_qt
70 +DISTUTILS_IN_SOURCE_BUILD=1
71 +
72 +python_prepare_all() {
73 + if [[ ${LINGUAS+set} ]]; then
74 + cd i18n/tortoisehg || die
75 + local x y keep
76 + for x in *.po; do
77 + keep=false
78 + for y in ${LINGUAS}; do
79 + if [[ ${y} == ${x%.po}* ]]; then
80 + keep=true
81 + break
82 + fi
83 + done
84 + ${keep} || rm "${x}" || die
85 + done
86 + cd "${S}" || die
87 + fi
88 + distutils-r1_python_prepare_all
89 +}
90 +
91 +python_compile_all() {
92 + use doc && emake -C doc html
93 +}
94 +
95 +python_install_all() {
96 + distutils-r1_python_install_all
97 + dodoc doc/ReadMe*.txt doc/TODO contrib/mergetools.rc
98 + if use doc ; then
99 + dohtml -r doc/build/html/
100 + fi
101 + newicon -s scalable icons/scalable/apps/thg.svg thg_logo.svg
102 + domenu contrib/thg.desktop
103 +}
104 +
105 +pkg_postinst() {
106 + elog "When startup of ${PN} fails with an API version mismatch error"
107 + elog "between dev-python/sip and dev-python/PyQt4 please rebuild"
108 + elog "dev-python/qscintilla-python."
109 +}