diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2011-02-11 23:32:48 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2011-02-11 23:32:48 +0000 |
commit | 2d8d244c2c73829a48caaa58d51f3ad37c9d0212 (patch) | |
tree | 8db043f61e6a76bffc372b22f65c0797f12e91a2 /dev-vcs/qbzr | |
parent | Extend mask for Bazaar 2.3.0 with qbzr (diff) | |
download | historical-2d8d244c2c73829a48caaa58d51f3ad37c9d0212.tar.gz historical-2d8d244c2c73829a48caaa58d51f3ad37c9d0212.tar.bz2 historical-2d8d244c2c73829a48caaa58d51f3ad37c9d0212.zip |
version bump
Package-Manager: portage-2.1.9.39/cvs/Linux i686
Diffstat (limited to 'dev-vcs/qbzr')
-rw-r--r-- | dev-vcs/qbzr/ChangeLog | 7 | ||||
-rw-r--r-- | dev-vcs/qbzr/qbzr-0.20.0.ebuild | 46 |
2 files changed, 52 insertions, 1 deletions
diff --git a/dev-vcs/qbzr/ChangeLog b/dev-vcs/qbzr/ChangeLog index 6cf6e3d1752f..4d2e812f9fc4 100644 --- a/dev-vcs/qbzr/ChangeLog +++ b/dev-vcs/qbzr/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-vcs/qbzr # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/qbzr/ChangeLog,v 1.18 2011/02/11 22:42:14 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/qbzr/ChangeLog,v 1.19 2011/02/11 23:32:48 fauli Exp $ + +*qbzr-0.20.0 (11 Feb 2011) + + 11 Feb 2011; Christian Faulhammer <fauli@gentoo.org> +qbzr-0.20.0.ebuild: + version bump 11 Feb 2011; Christian Faulhammer <fauli@gentoo.org> -qbzr-0.19.1.ebuild: clean up diff --git a/dev-vcs/qbzr/qbzr-0.20.0.ebuild b/dev-vcs/qbzr/qbzr-0.20.0.ebuild new file mode 100644 index 000000000000..df33a5113d44 --- /dev/null +++ b/dev-vcs/qbzr/qbzr-0.20.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/qbzr/qbzr-0.20.0.ebuild,v 1.1 2011/02/11 23:32:48 fauli 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-2.3 + >=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" +} |