diff options
author | Mike Gilbert <floppym@gentoo.org> | 2012-05-03 02:25:52 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2012-05-03 02:25:52 +0000 |
commit | de86137be3417a349130496d97d510230913e992 (patch) | |
tree | e8ee5a6d7ec2c45863699a7be29adfe55a170c8e /dev-vcs | |
parent | Make sure the docdir is unique across cross-compilers #414075 by Soeren Hoeck... (diff) | |
download | gentoo-2-de86137be3417a349130496d97d510230913e992.tar.gz gentoo-2-de86137be3417a349130496d97d510230913e992.tar.bz2 gentoo-2-de86137be3417a349130496d97d510230913e992.zip |
Put upper bound on mercurial dep.
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/tortoisehg/ChangeLog | 6 | ||||
-rw-r--r-- | dev-vcs/tortoisehg/tortoisehg-2.3.1.ebuild | 3 | ||||
-rw-r--r-- | dev-vcs/tortoisehg/tortoisehg-2.3.ebuild | 68 |
3 files changed, 7 insertions, 70 deletions
diff --git a/dev-vcs/tortoisehg/ChangeLog b/dev-vcs/tortoisehg/ChangeLog index dc99f800b163..251dea1db363 100644 --- a/dev-vcs/tortoisehg/ChangeLog +++ b/dev-vcs/tortoisehg/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-vcs/tortoisehg # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tortoisehg/ChangeLog,v 1.15 2012/04/17 15:04:36 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tortoisehg/ChangeLog,v 1.16 2012/05/03 02:25:52 floppym Exp $ + + 03 May 2012; Mike Gilbert <floppym@gentoo.org> -tortoisehg-2.3.ebuild, + tortoisehg-2.3.1.ebuild: + Put upper bound on mercurial dep. 17 Apr 2012; Michał Górny <mgorny@gentoo.org> tortoisehg-2.3.ebuild, tortoisehg-2.3.1.ebuild, tortoisehg-9999.ebuild: diff --git a/dev-vcs/tortoisehg/tortoisehg-2.3.1.ebuild b/dev-vcs/tortoisehg/tortoisehg-2.3.1.ebuild index 3f6128ec3a0c..f202bae03d3e 100644 --- a/dev-vcs/tortoisehg/tortoisehg-2.3.1.ebuild +++ b/dev-vcs/tortoisehg/tortoisehg-2.3.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tortoisehg/tortoisehg-2.3.1.ebuild,v 1.3 2012/04/17 15:04:36 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tortoisehg/tortoisehg-2.3.1.ebuild,v 1.4 2012/05/03 02:25:52 floppym Exp $ EAPI=4 @@ -32,6 +32,7 @@ RDEPEND="dev-python/iniparse dev-python/PyQt4 dev-python/qscintilla-python >=dev-vcs/mercurial-2.0 + <dev-vcs/mercurial-2.2 nautilus? ( dev-python/nautilus-python )" DEPEND="${RDEPEND} doc? ( >=dev-python/sphinx-1.0.3 )" diff --git a/dev-vcs/tortoisehg/tortoisehg-2.3.ebuild b/dev-vcs/tortoisehg/tortoisehg-2.3.ebuild deleted file mode 100644 index df4fb0b49629..000000000000 --- a/dev-vcs/tortoisehg/tortoisehg-2.3.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tortoisehg/tortoisehg-2.3.ebuild,v 1.3 2012/04/17 15:04:36 mgorny Exp $ - -EAPI=4 - -SUPPORT_PYTHON_ABIS=1 -PYTHON_DEPEND="2:2.5" -RESTRICT_PYTHON_ABIS="2.4 3.* *-pypy-*" - -inherit distutils eutils multilib - -if [[ ${PV} != *9999* ]]; then - KEYWORDS="~amd64 ~x86" - SRC_URI="mirror://bitbucket/${PN}/targz/downloads/${P}.tar.gz" -else - inherit mercurial - EHG_REPO_URI="https://bitbucket.org/tortoisehg/thg" - KEYWORDS="" - SRC_URI="" -fi - -DESCRIPTION="Set of graphical tools for Mercurial" -HOMEPAGE="http://tortoisehg.bitbucket.org" - -LICENSE="GPL-2" -SLOT="0" -IUSE="doc nautilus" - -RDEPEND="dev-python/iniparse - dev-python/pygments - dev-python/PyQt4 - dev-python/qscintilla-python - >=dev-vcs/mercurial-2.0 - nautilus? ( dev-python/nautilus-python )" -DEPEND="${RDEPEND} - doc? ( >=dev-python/sphinx-1.0.3 )" - -src_prepare() { - # make the install respect multilib. - sed -i -e "s:lib/nautilus:$(get_libdir)/nautilus:" setup.py || die - distutils_src_prepare -} - -src_compile() { - distutils_src_compile - - if use doc ; then - emake -C doc html - fi -} - -src_install() { - distutils_src_install - dodoc doc/ReadMe*.txt doc/TODO - - if use doc ; then - dohtml -r doc/build/html || die - fi - - insinto /usr/share/icons/hicolor/scalable/apps - newins icons/scalable/apps/thg-logo.svg tortoisehg_logo.svg - domenu contrib/${PN}.desktop - - if ! use nautilus; then - rm -r "${ED}usr/$(get_libdir)/nautilus" || die - fi -} |