diff options
author | Peter Volkov <pva@gentoo.org> | 2010-09-15 09:44:57 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2010-09-15 09:44:57 +0000 |
commit | b0bb233ee3bdd643a52d14827fe0d716356fd1e1 (patch) | |
tree | e97f450655faeb1a54573cdb445c2e10e5b8fea1 /dev-vcs/qbzr | |
parent | Versin bump, bug #335703. Fixes inability to generate documentation (bug #316... (diff) | |
download | gentoo-2-b0bb233ee3bdd643a52d14827fe0d716356fd1e1.tar.gz gentoo-2-b0bb233ee3bdd643a52d14827fe0d716356fd1e1.tar.bz2 gentoo-2-b0bb233ee3bdd643a52d14827fe0d716356fd1e1.zip |
Version bump.
(Portage version: 2.1.9.5/cvs/Linux x86_64)
Diffstat (limited to 'dev-vcs/qbzr')
-rw-r--r-- | dev-vcs/qbzr/ChangeLog | 7 | ||||
-rw-r--r-- | dev-vcs/qbzr/qbzr-0.19.1.ebuild | 46 |
2 files changed, 52 insertions, 1 deletions
diff --git a/dev-vcs/qbzr/ChangeLog b/dev-vcs/qbzr/ChangeLog index 6237b02b5784..96532935316f 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.11 2010/08/10 12:33:17 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/qbzr/ChangeLog,v 1.12 2010/09/15 09:44:57 pva Exp $ + +*qbzr-0.19.1 (15 Sep 2010) + + 15 Sep 2010; Peter Volkov <pva@gentoo.org> +qbzr-0.19.1.ebuild: + Version bump. *qbzr-0.19 (10 Aug 2010) diff --git a/dev-vcs/qbzr/qbzr-0.19.1.ebuild b/dev-vcs/qbzr/qbzr-0.19.1.ebuild new file mode 100644 index 000000000000..24ce21b06b50 --- /dev/null +++ b/dev-vcs/qbzr/qbzr-0.19.1.ebuild @@ -0,0 +1,46 @@ +# 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.19.1.ebuild,v 1.1 2010/09/15 09:44:57 pva Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" + +inherit distutils versionator + +DESCRIPTION="Qt frontend for Bazaar" +HOMEPAGE="https://launchpad.net/qbzr" +SRC_URI="https://edge.launchpad.net/qbzr/$(get_version_component_range 1-2)/${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}" + +S="${WORKDIR}/${PN}" + +DOCS="AUTHORS.txt NEWS.txt README.txt TODO.txt" +PYTHON_MODNAME="bzrlib/plugins/qbzr" + +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" +} |