radhermit 14/06/10 03:30:33 Modified: ChangeLog Added: hgview-1.8.1.ebuild Log: Version bump. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Revision Changes Path 1.14 dev-vcs/hgview/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hgview/ChangeLog?rev=1.14&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hgview/ChangeLog?rev=1.14&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hgview/ChangeLog?r1=1.13&r2=1.14 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-vcs/hgview/ChangeLog,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- ChangeLog 3 Feb 2014 04:15:24 -0000 1.13 +++ ChangeLog 10 Jun 2014 03:30:33 -0000 1.14 @@ -1,6 +1,11 @@ # ChangeLog for dev-vcs/hgview # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hgview/ChangeLog,v 1.13 2014/02/03 04:15:24 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hgview/ChangeLog,v 1.14 2014/06/10 03:30:33 radhermit Exp $ + +*hgview-1.8.1 (10 Jun 2014) + + 10 Jun 2014; Tim Harder <[email protected]> +hgview-1.8.1.ebuild: + Version bump. *hgview-1.8.0 (03 Feb 2014) 1.1 dev-vcs/hgview/hgview-1.8.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hgview/hgview-1.8.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hgview/hgview-1.8.1.ebuild?rev=1.1&content-type=text/plain Index: hgview-1.8.1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/hgview/hgview-1.8.1.ebuild,v 1.1 2014/06/10 03:30:33 radhermit Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) DISTUTILS_IN_SOURCE_BUILD=1 inherit distutils-r1 DESCRIPTION="A Mercurial interactive history viewer" HOMEPAGE="http://www.logilab.org/project/hgview/ https://pypi.python.org/pypi/hgview/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc ncurses +qt4" REQUIRED_USE="|| ( ncurses qt4 )" RDEPEND="dev-vcs/mercurial[${PYTHON_USEDEP}] ncurses? ( >=dev-python/urwid-1.0.0[${PYTHON_USEDEP}] dev-python/pyinotify[${PYTHON_USEDEP}] dev-python/pygments[${PYTHON_USEDEP}] ) qt4? ( dev-python/docutils[${PYTHON_USEDEP}] dev-python/PyQt4[X,${PYTHON_USEDEP}] dev-python/qscintilla-python[${PYTHON_USEDEP}] )" DEPEND="${RDEPEND} doc? ( app-text/asciidoc app-text/xmlto )" python_configure_all() { mydistutilsargs=( build $(use doc || echo --no-doc) build $(use ncurses || echo --no-curses) build $(use qt4 || echo --no-qt) ) } src_prepare() { # https://www.logilab.org/ticket/103668 sed -i \ -e 's:MANDIR=$(PREFIX)/man:MANDIR=$(PREFIX)/share/man:' \ -e 's:$(INSTALL) $$i:$(INSTALL) -m 644 $$i:' \ doc/Makefile || die distutils-r1_src_prepare } src_install() { distutils-r1_src_install # Install Mercurial extension config file insinto /etc/mercurial/hgrc.d doins hgext/hgview.rc }
