www-client/pybugz: version bump
authorWilliam Hubbs <williamh@gentoo.org>
Sun, 21 Feb 2016 22:32:49 +0000 (16:32 -0600)
committerWilliam Hubbs <williamh@gentoo.org>
Sun, 21 Feb 2016 22:33:24 +0000 (16:33 -0600)
www-client/pybugz/Manifest
www-client/pybugz/pybugz-0.12.ebuild [new file with mode: 0644]

index a4ce5bcbc626078309d485611a6c6a82f2070b0d..e719ab80856eda8e4d38f293a335d269fd88e69e 100644 (file)
@@ -1 +1,2 @@
 DIST pybugz-0.11.1.tar.gz 23787 SHA256 05b2cef8a655ab34d9279e6341d16a803af07958e72320125cb30a3fd6bc8eec SHA512 bc2277a8e900765bf1799e5de65de5df8184bf50b6ca7c78478a9f43ceb78aa66bcb53c3fd89f7b194b13fa14ad162291d559554a8cb073c071104e2b0978c61 WHIRLPOOL cb8f9a36cac6ae7a42e43d6d9489e2593c8ae76153b769bf04f269967e6477e37b1633d30969c4d7c6d0bcd816aff7bd189a1754c06769e3ea0f761eda3c16db
+DIST pybugz-0.12.tar.gz 25606 SHA256 28361cd9188b538ef63402ca3a25c122bed5479e91835ce1a6379e83b5fef0fa SHA512 584539f2c681075f7d96acef0be0fdf183f309540c63bc02c56ab25b59ea0e767aa15ad28fa7543f74bb11c139956b7aef8f239883e3e877e7b995b042a3fca0 WHIRLPOOL 6f42e64e618fece288e321af59f61dced77f579c7dd2c3454b8acc68bdfda2cb480aa54536b91e1c36e6799d1d0ba87097cb2252fb1657dc7e73ff60e9a3256c
diff --git a/www-client/pybugz/pybugz-0.12.ebuild b/www-client/pybugz/pybugz-0.12.ebuild
new file mode 100644 (file)
index 0000000..3445cef
--- /dev/null
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python3_3 python3_4 python3_5 )
+PYTHON_REQ_USE="readline(+)"
+
+if [ "${PV}" = "9999" ]; then
+       EGIT_REPO_URI="git://github.com/williamh/pybugz.git
+               https://github.com/williamh/pybugz.git"
+       inherit git-r3
+else
+       SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+       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"
+       inherit vcs-snapshot
+fi
+
+inherit bash-completion-r1 distutils-r1
+
+DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
+HOMEPAGE="https://www.github.com/williamh/pybugz"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="zsh-completion"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_install_all() {
+       distutils-r1_python_install_all
+       newbashcomp contrib/bash-completion bugz
+
+       if use zsh-completion ; then
+               insinto /usr/share/zsh/site-functions
+               newins contrib/zsh-completion _pybugz
+       fi
+}