Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-vcs/qct: qct-1.7-r1.ebuild ChangeLog qct-1.7.ebuild
Date: Wed, 25 Feb 2015 01:04:56
Message-Id: 20150225010448.9BBB5127CD@oystercatcher.gentoo.org
1 idella4 15/02/25 01:04:48
2
3 Modified: ChangeLog
4 Added: qct-1.7-r1.ebuild
5 Removed: qct-1.7.ebuild
6 Log:
7 revbump; convert -> distutils-r1, rm old, fixes Bug #541150, endorsement provided in said bug
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.10 dev-vcs/qct/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/qct/ChangeLog?rev=1.10&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/qct/ChangeLog?rev=1.10&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/qct/ChangeLog?r1=1.9&r2=1.10
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/qct/ChangeLog,v
21 retrieving revision 1.9
22 retrieving revision 1.10
23 diff -u -r1.9 -r1.10
24 --- ChangeLog 18 Jan 2011 12:55:44 -0000 1.9
25 +++ ChangeLog 25 Feb 2015 01:04:48 -0000 1.10
26 @@ -1,6 +1,13 @@
27 # ChangeLog for dev-vcs/qct
28 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/qct/ChangeLog,v 1.9 2011/01/18 12:55:44 arfrever Exp $
30 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/qct/ChangeLog,v 1.10 2015/02/25 01:04:48 idella4 Exp $
32 +
33 +*qct-1.7-r1 (25 Feb 2015)
34 +
35 + 25 Feb 2015; Ian Delaney <idella4@g.o> +qct-1.7-r1.ebuild,
36 + -qct-1.7.ebuild:
37 + revbump; convert -> distutils-r1, rm old, fixes Bug #541150, endorsement
38 + provided in said bug
39
40 18 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
41 qct-1.7.ebuild:
42 @@ -37,4 +44,3 @@
43 15 Jun 2009; Ben de Groot <yngwin@g.o> +files/qct.rc:
44 Initial import from qting-edge overlay. Ebuild developed by Dror Levin and
45 contributors in bug 162963.
46 -
47
48
49
50 1.1 dev-vcs/qct/qct-1.7-r1.ebuild
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/qct/qct-1.7-r1.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/qct/qct-1.7-r1.ebuild?rev=1.1&content-type=text/plain
54
55 Index: qct-1.7-r1.ebuild
56 ===================================================================
57 # Copyright 1999-2015 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/qct/qct-1.7-r1.ebuild,v 1.1 2015/02/25 01:04:48 idella4 Exp $
60
61 EAPI=5
62
63 PYTHON_COMPAT=( python2_7 )
64 DISTUTILS_SINGLE_IMPL=1
65
66 inherit distutils-r1
67
68 DESCRIPTION="PyQt based commit tool for many VCSs"
69 HOMEPAGE="http://qct.sourceforge.net/"
70 SRC_URI="http://qct.sourceforge.net/${P}.tar.gz"
71
72 LICENSE="GPL-2"
73 SLOT="0"
74 KEYWORDS="~amd64 ~x86"
75 IUSE="bazaar cvs mercurial monotone subversion"
76
77 DEPEND="app-text/asciidoc[${PYTHON_USEDEP}]
78 app-text/xmlto
79 dev-python/PyQt4[${PYTHON_USEDEP}]
80 bazaar? ( dev-vcs/bzr[${PYTHON_USEDEP}] )
81 cvs? ( dev-vcs/cvs )
82 mercurial? ( dev-vcs/mercurial[${PYTHON_USEDEP}] )
83 monotone? ( dev-vcs/monotone )
84 subversion? ( dev-vcs/subversion[${PYTHON_USEDEP}] )"
85 RDEPEND="${DEPEND}"
86
87 S="${WORKDIR}/${PN}"
88
89 pkg_setup() {
90 python-single-r1_pkg_setup
91 }
92
93 src_prepare() {
94 distutils-r1_src_prepare
95
96 rm qctlib/vcs/p4.py
97
98 # support for git requires cogito which isn't in portage
99 rm qctlib/vcs/git.py
100 rm qctlib/vcs/cg.py
101
102 use bazaar || rm qctlib/vcs/bzr.py
103 use cvs || rm qctlib/vcs/cvs.py
104 use mercurial || rm qctlib/vcs/hg.py
105 use monotone || rm qctlib/vcs/mtn.py
106 use subversion || rm qctlib/vcs/svn.py
107 }
108
109 src_install() {
110 distutils-r1_src_install
111
112 # manpage and html docs are built using asciidoc
113 make -C doc man html || die
114 doman doc/qct.1 || die
115 dohtml doc/qct.1.html || die
116
117 if use bazaar; then
118 insinto "$(python_get_sitedir)/bzrlib/plugins"
119 doins plugins/qctBzrPlugin.py
120 fi
121
122 if use mercurial; then
123 insinto "$(python_get_sitedir)/hgext"
124 doins hgext/qct.py
125 insinto /etc/mercurial/hgrc.d
126 doins "${FILESDIR}/qct.rc"
127 fi
128 }