Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
tampakrap 10/03/05 03:37:44
Added: metadata.xml ChangeLog hgview-1.1.3.ebuild
Log:
Move hgview from dev-util to dev-vcs
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Revision Changes Path
1.1 dev-vcs/hgview/metadata.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-vcs/hgview/metadata.xml?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-vcs/hgview/metadata.xml?rev=1.1&content-type=text/plain
Index: metadata.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>qt</herd>
</pkgmetadata>
1.1 dev-vcs/hgview/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-vcs/hgview/ChangeLog?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-vcs/hgview/ChangeLog?rev=1.1&content-type=text/plain
Index: ChangeLog
===================================================================
# ChangeLog for dev-vcs/hgview
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hgview/ChangeLog,v 1.1 2010/03/05 03:37:43 tampakrap Exp $
05 Mar 2010; Theo Chatzimichos <tampakrap@g.o>
+hgview-1.1.3.ebuild, +metadata.xml:
Move hgview from dev-util to dev-vcs
02 Jan 2010; Ben de Groot <yngwin@g.o> hgview-1.1.3.ebuild:
qscintilla-python no longer has a qt4 useflag (it is the only option now)
27 Dec 2009; Ben de Groot <yngwin@g.o> hgview-1.1.3.ebuild:
Add usedep on qscintilla-python[qt4]. Fixes bug 297916.
17 Dec 2009; Dror Levin <spatz@g.o> -hgview-1.0.1.ebuild,
hgview-1.1.3.ebuild:
Add dev-python/docutils dep (bug 295311), remove old.
*hgview-1.1.3 (16 Nov 2009)
16 Nov 2009; Dror Levin <spatz@g.o> -hgview-1.0.0.ebuild,
+hgview-1.1.3.ebuild:
Version bump and drop old, bug 286853.
*hgview-1.0.1 (17 Sep 2009)
17 Sep 2009; Dror Levin <spatz@g.o> +hgview-1.0.1.ebuild:
Version bump, bug 283709.
*hgview-1.0.0 (23 Jul 2009)
23 Jul 2009; Alex Alexander <wired@g.o> +hgview-1.0.0.ebuild,
+metadata.xml:
ebuild for hgview, bug 274562, thanks to Martin Gysel, Dror, Davide
1.1 dev-vcs/hgview/hgview-1.1.3.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-vcs/hgview/hgview-1.1.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-vcs/hgview/hgview-1.1.3.ebuild?rev=1.1&content-type=text/plain
Index: hgview-1.1.3.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hgview/hgview-1.1.3.ebuild,v 1.1 2010/03/05 03:37:43 tampakrap Exp $
EAPI="2"
inherit distutils
DESCRIPTION="PyQt4 based Mercurial log navigator"
HOMEPAGE="http://www.logilab.org/project/name/hgview"
SRC_URI="http://ftp.logilab.org/pub/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND="dev-util/mercurial
dev-python/egenix-mx-base
dev-python/PyQt4[X]
dev-python/qscintilla-python
dev-python/docutils
doc? ( app-text/asciidoc )"
RDEPEND="${DEPEND}"
src_prepare() {
distutils_src_prepare
if ! use doc; then
sed -i '/make -C doc/d' "${S}/setup.py" || die "sed failed"
sed -i '/share\/man\/man1/,+1 d' "${S}/hgviewlib/__pkginfo__.py" || die "sed failed"
fi
}
src_install() {
distutils_src_install
# install the mercurial extension config
insinto /etc/mercurial/hgrc.d || die
doins hgext/hgview.rc || die
}
|
|