Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/pybugz: ChangeLog pybugz-0.10.1-r2.ebuild pybugz-0.10.1-r1.ebuild
Date: Wed, 21 May 2014 09:16:35
Message-Id: 20140521091631.81AB62004C@flycatcher.gentoo.org
1 jlec 14/05/21 09:16:31
2
3 Modified: ChangeLog
4 Added: pybugz-0.10.1-r2.ebuild
5 Removed: pybugz-0.10.1-r1.ebuild
6 Log:
7 www-client/pybugz: Update patch
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
10
11 Revision Changes Path
12 1.117 www-client/pybugz/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/ChangeLog?rev=1.117&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/ChangeLog?rev=1.117&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/ChangeLog?r1=1.116&r2=1.117
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v
21 retrieving revision 1.116
22 retrieving revision 1.117
23 diff -u -r1.116 -r1.117
24 --- ChangeLog 20 May 2014 09:42:31 -0000 1.116
25 +++ ChangeLog 21 May 2014 09:16:31 -0000 1.117
26 @@ -1,6 +1,13 @@
27 # ChangeLog for www-client/pybugz
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v 1.116 2014/05/20 09:42:31 jlec Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v 1.117 2014/05/21 09:16:31 jlec Exp $
31 +
32 +*pybugz-0.10.1-r2 (21 May 2014)
33 +
34 + 21 May 2014; Justin Lecher <jlec@g.o> -pybugz-0.10.1-r1.ebuild,
35 + +pybugz-0.10.1-r2.ebuild, files/pybugz-0.10.1-bugzilla-4.4.1.patch,
36 + files/pybugz-9999-bugzilla-4.4.1.patch:
37 + Update patch
38
39 20 May 2014; Justin Lecher <jlec@g.o> pybugz-9999.ebuild,
40 +files/pybugz-9999-bugzilla-4.4.1.patch:
41
42
43
44 1.1 www-client/pybugz/pybugz-0.10.1-r2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: pybugz-0.10.1-r2.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild,v 1.1 2014/05/21 09:16:31 jlec Exp $
54
55 EAPI=5
56 PYTHON_COMPAT=( python2_7 pypy pypy2_0 )
57 PYTHON_REQ_USE="readline(+)"
58
59 if [ "${PV}" = "9999" ]; then
60 EGIT_REPO_URI="git://github.com/williamh/pybugz.git
61 https://github.com/williamh/pybugz.git"
62 inherit git-r3
63 else
64 SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
66 inherit vcs-snapshot
67 fi
68
69 inherit bash-completion-r1 distutils-r1
70
71 DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
72 HOMEPAGE="http://www.github.com/williamh/pybugz"
73 LICENSE="GPL-2"
74 SLOT="0"
75 IUSE="zsh-completion"
76
77 RDEPEND="${DEPEND}
78 zsh-completion? ( app-shells/zsh )"
79
80 PATCHES=( "${FILESDIR}"/${P}-bugzilla-4.4.1.patch )
81
82 python_install_all() {
83 distutils-r1_python_install_all
84 newbashcomp contrib/bash-completion bugz
85
86 if use zsh-completion ; then
87 insinto /usr/share/zsh/site-functions
88 newins contrib/zsh-completion _pybugz
89 fi
90 }