Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/
Date: Sun, 21 Feb 2016 22:33:51
Message-Id: 1456094004.ee01b05f82b6714d0a71a5ae41f8a739bfb612ce.williamh@gentoo
1 commit: ee01b05f82b6714d0a71a5ae41f8a739bfb612ce
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 21 22:32:49 2016 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 21 22:33:24 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee01b05f
7
8 www-client/pybugz: version bump
9
10 www-client/pybugz/Manifest | 1 +
11 www-client/pybugz/pybugz-0.12.ebuild | 38 ++++++++++++++++++++++++++++++++++++
12 2 files changed, 39 insertions(+)
13
14 diff --git a/www-client/pybugz/Manifest b/www-client/pybugz/Manifest
15 index a4ce5bc..e719ab8 100644
16 --- a/www-client/pybugz/Manifest
17 +++ b/www-client/pybugz/Manifest
18 @@ -1 +1,2 @@
19 DIST pybugz-0.11.1.tar.gz 23787 SHA256 05b2cef8a655ab34d9279e6341d16a803af07958e72320125cb30a3fd6bc8eec SHA512 bc2277a8e900765bf1799e5de65de5df8184bf50b6ca7c78478a9f43ceb78aa66bcb53c3fd89f7b194b13fa14ad162291d559554a8cb073c071104e2b0978c61 WHIRLPOOL cb8f9a36cac6ae7a42e43d6d9489e2593c8ae76153b769bf04f269967e6477e37b1633d30969c4d7c6d0bcd816aff7bd189a1754c06769e3ea0f761eda3c16db
20 +DIST pybugz-0.12.tar.gz 25606 SHA256 28361cd9188b538ef63402ca3a25c122bed5479e91835ce1a6379e83b5fef0fa SHA512 584539f2c681075f7d96acef0be0fdf183f309540c63bc02c56ab25b59ea0e767aa15ad28fa7543f74bb11c139956b7aef8f239883e3e877e7b995b042a3fca0 WHIRLPOOL 6f42e64e618fece288e321af59f61dced77f579c7dd2c3454b8acc68bdfda2cb480aa54536b91e1c36e6799d1d0ba87097cb2252fb1657dc7e73ff60e9a3256c
21
22 diff --git a/www-client/pybugz/pybugz-0.12.ebuild b/www-client/pybugz/pybugz-0.12.ebuild
23 new file mode 100644
24 index 0000000..3445cef
25 --- /dev/null
26 +++ b/www-client/pybugz/pybugz-0.12.ebuild
27 @@ -0,0 +1,38 @@
28 +# Copyright 1999-2015 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=5
33 +PYTHON_COMPAT=( python3_3 python3_4 python3_5 )
34 +PYTHON_REQ_USE="readline(+)"
35 +
36 +if [ "${PV}" = "9999" ]; then
37 + EGIT_REPO_URI="git://github.com/williamh/pybugz.git
38 + https://github.com/williamh/pybugz.git"
39 + inherit git-r3
40 +else
41 + SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 + 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"
43 + inherit vcs-snapshot
44 +fi
45 +
46 +inherit bash-completion-r1 distutils-r1
47 +
48 +DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
49 +HOMEPAGE="https://www.github.com/williamh/pybugz"
50 +LICENSE="GPL-2"
51 +SLOT="0"
52 +IUSE="zsh-completion"
53 +
54 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
55 +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
56 +
57 +python_install_all() {
58 + distutils-r1_python_install_all
59 + newbashcomp contrib/bash-completion bugz
60 +
61 + if use zsh-completion ; then
62 + insinto /usr/share/zsh/site-functions
63 + newins contrib/zsh-completion _pybugz
64 + fi
65 +}