diff options
author | William Hubbs <williamh@gentoo.org> | 2009-03-28 22:17:19 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2009-03-28 22:17:19 +0000 |
commit | 6e541b1297e0987f7bdd01f330f580e0faf8e817 (patch) | |
tree | 0a25f57dfbeb6a4b6e9dd2c04286bb57a559188b /www-client | |
parent | Initial import, bug 258654. (diff) | |
download | gentoo-2-6e541b1297e0987f7bdd01f330f580e0faf8e817.tar.gz gentoo-2-6e541b1297e0987f7bdd01f330f580e0faf8e817.tar.bz2 gentoo-2-6e541b1297e0987f7bdd01f330f580e0faf8e817.zip |
Version bump.
(Portage version: 2.2_rc28/cvs/Linux i686)
Diffstat (limited to 'www-client')
-rw-r--r-- | www-client/pybugz/ChangeLog | 10 | ||||
-rw-r--r-- | www-client/pybugz/metadata.xml | 3 | ||||
-rw-r--r-- | www-client/pybugz/pybugz-0.7.3.ebuild | 5 | ||||
-rw-r--r-- | www-client/pybugz/pybugz-0.7.4_rc1.ebuild | 28 |
4 files changed, 42 insertions, 4 deletions
diff --git a/www-client/pybugz/ChangeLog b/www-client/pybugz/ChangeLog index 84d666d6a25b..c985d783b781 100644 --- a/www-client/pybugz/ChangeLog +++ b/www-client/pybugz/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for www-client/pybugz -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v 1.34 2008/08/10 18:22:34 ricmm Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v 1.35 2009/03/28 22:17:19 williamh Exp $ + +*pybugz-0.7.4_rc1 (28 Mar 2009) + + 28 Mar 2009; William Hubbs <williamh@gentoo.org> metadata.xml, + pybugz-0.7.3.ebuild, +pybugz-0.7.4_rc1.ebuild: + Version bump. 10 Aug 2008; <ricmm@gentoo.org> pybugz-0.7.3.ebuild: Add ~mips, bug #226043 diff --git a/www-client/pybugz/metadata.xml b/www-client/pybugz/metadata.xml index ed26eb528582..061399a4a4f6 100644 --- a/www-client/pybugz/metadata.xml +++ b/www-client/pybugz/metadata.xml @@ -5,4 +5,7 @@ <maintainer> <email>williamh@gentoo.org</email> </maintainer> + <use> + <flag name='zsh-completion'>Enables zsh completion for pybugz</flag> + </use> </pkgmetadata> diff --git a/www-client/pybugz/pybugz-0.7.3.ebuild b/www-client/pybugz/pybugz-0.7.3.ebuild index 592387b2ba8b..dbf57ba767d5 100644 --- a/www-client/pybugz/pybugz-0.7.3.ebuild +++ b/www-client/pybugz/pybugz-0.7.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-0.7.3.ebuild,v 1.11 2008/12/07 11:48:53 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-0.7.3.ebuild,v 1.12 2009/03/28 22:17:19 williamh Exp $ inherit distutils @@ -14,6 +14,7 @@ IUSE="" DEPEND="|| ( >=dev-lang/python-2.5 ( >=dev-lang/python-2.4 dev-python/elementtree ) )" + RDEPEND="" pkg_setup() { if ! built_with_use dev-lang/python readline; then diff --git a/www-client/pybugz/pybugz-0.7.4_rc1.ebuild b/www-client/pybugz/pybugz-0.7.4_rc1.ebuild new file mode 100644 index 000000000000..ff1774fbcfea --- /dev/null +++ b/www-client/pybugz/pybugz-0.7.4_rc1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-0.7.4_rc1.ebuild,v 1.1 2009/03/28 22:17:19 williamh Exp $ + +EAPI=2 + +inherit distutils + +DESCRIPTION="Command line interface to (Gentoo) Bugzilla" +HOMEPAGE="http://www.liquidx.net/pybugz" +SRC_URI="http://pybugz.googlecode.com/files/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="zsh-completion" +DEPEND="|| ( >=dev-lang/python-2.5[readline] + ( >=dev-lang/python-2.4[readline] + dev-python/elementtree ) )" + RDEPEND="zsh-completion? ( app-shells/zsh )" + +src_install() { + distutils_src_install + + if use zsh-completion ; then + insinto /usr/share/zsh/site-functions + newins contrib/zsh-completion zsh_completion _pybugz + fi +} |