diff options
author | Peter Volkov <pva@gentoo.org> | 2010-04-05 13:13:53 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2010-04-05 13:13:53 +0000 |
commit | 1a20d6e2b8985d7a1222b28757460977030e843a (patch) | |
tree | 8624ebc0ae7bf6536b513e664c52f45680f9f327 /dev-vcs | |
parent | Back to ~hppa (bug #294470). (diff) | |
download | gentoo-2-1a20d6e2b8985d7a1222b28757460977030e843a.tar.gz gentoo-2-1a20d6e2b8985d7a1222b28757460977030e843a.tar.bz2 gentoo-2-1a20d6e2b8985d7a1222b28757460977030e843a.zip |
Version bump. Fixes bug #310171, thank Martin von Gagern for report.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/qbzr/ChangeLog | 7 | ||||
-rw-r--r-- | dev-vcs/qbzr/qbzr-0.18.5.ebuild | 45 |
2 files changed, 51 insertions, 1 deletions
diff --git a/dev-vcs/qbzr/ChangeLog b/dev-vcs/qbzr/ChangeLog index d5f1cfad6575..aa6fdbd1cc6a 100644 --- a/dev-vcs/qbzr/ChangeLog +++ b/dev-vcs/qbzr/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-vcs/qbzr # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/qbzr/ChangeLog,v 1.4 2010/03/22 10:22:27 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/qbzr/ChangeLog,v 1.5 2010/04/05 13:13:53 pva Exp $ + +*qbzr-0.18.5 (05 Apr 2010) + + 05 Apr 2010; Peter Volkov <pva@gentoo.org> +qbzr-0.18.5.ebuild: + Version bump. Fixes bug #310171, thank Martin von Gagern for report. *qbzr-0.18.4 (22 Mar 2010) diff --git a/dev-vcs/qbzr/qbzr-0.18.5.ebuild b/dev-vcs/qbzr/qbzr-0.18.5.ebuild new file mode 100644 index 000000000000..979b387b5608 --- /dev/null +++ b/dev-vcs/qbzr/qbzr-0.18.5.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/qbzr/qbzr-0.18.5.ebuild,v 1.1 2010/04/05 13:13:53 pva Exp $ + +EAPI=2 + +NEED_PYTHON=2.4 + +inherit distutils + +DESCRIPTION="Qt frontend for Bazaar" +HOMEPAGE="https://launchpad.net/qbzr" +SRC_URI="https://edge.launchpad.net/qbzr/${PV%.*}/${PV}/+download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +# bzr version comes from NEWS file. It's lowest version required for some +# features to work. +DEPEND=">=dev-vcs/bzr-1.14 + >=dev-python/PyQt4-4.1[X]" +RDEPEND="${DEPEND}" + +DOCS="AUTHORS.txt NEWS.txt README.txt TODO.txt" + +S=${WORKDIR}/${PN} + +PYTHON_MODNAME=bzrlib + +src_test() { + elog "It's impossible to run tests at this point. If you wish to run tests" + elog "after installation of ${PN} execute:" + elog " $ bzr selftest -s bzrlib.plugins.qbzr" +} + +pkg_postinst() { + distutils_pkg_postinst + elog + elog "To enable spellchecking in qcommit, please, install >=dev-python/pyenchant-1.5.0" + elog " # emerge -a >=dev-python/pyenchant-1.5.0" + elog "To enable syntax highlighting, please, install dev-python/pygments" + elog " # emerge -a dev-python/pygments" +} |