* [gentoo-commits] gentoo-x86 commit in dev-vcs/cola: ChangeLog cola-1.4.3.ebuild
@ 2011-01-25 14:56 Tiziano Mueller (dev-zero)
0 siblings, 0 replies; 2+ messages in thread
From: Tiziano Mueller (dev-zero) @ 2011-01-25 14:56 UTC (permalink / raw
To: gentoo-commits
dev-zero 11/01/25 14:56:23
Modified: ChangeLog
Added: cola-1.4.3.ebuild
Log:
Version bump (bug #351580). Also solved: the installation of localization files (bug #348130), adaption to python eclass changes (bug #329473).
(Portage version: 2.1.9.35/cvs/Linux x86_64)
Revision Changes Path
1.5 dev-vcs/cola/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/ChangeLog?r1=1.4&r2=1.5
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/cola/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog 9 Jun 2010 19:47:29 -0000 1.4
+++ ChangeLog 25 Jan 2011 14:56:23 -0000 1.5
@@ -1,6 +1,12 @@
# ChangeLog for dev-vcs/cola
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cola/ChangeLog,v 1.4 2010/06/09 19:47:29 dev-zero Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cola/ChangeLog,v 1.5 2011/01/25 14:56:23 dev-zero Exp $
+
+*cola-1.4.3 (25 Jan 2011)
+
+ 25 Jan 2011; Tiziano Müller <dev-zero@gentoo.org> +cola-1.4.3.ebuild:
+ Version bump (bug #351580). Also solved: the installation of localization
+ files (bug #348130), adaption to python eclass changes (bug #329473).
09 Jun 2010; Tiziano Müller <dev-zero@gentoo.org> cola-1.4.2.1.ebuild:
Version bump.
1.1 dev-vcs/cola/cola-1.4.3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/cola-1.4.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/cola-1.4.3.ebuild?rev=1.1&content-type=text/plain
Index: cola-1.4.3.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cola/cola-1.4.3.ebuild,v 1.1 2011/01/25 14:56:23 dev-zero Exp $
EAPI="3"
PYTHON_DEPEND="2"
inherit distutils eutils
DESCRIPTION="A sweet, carbonated git gui known for its sugary flavour and caffeine-inspired features."
HOMEPAGE="http://cola.tuxfamily.org/"
SRC_URI="http://cola.tuxfamily.org/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
RDEPEND="dev-python/PyQt4
>=dev-python/pyinotify-0.7.1
dev-python/jsonpickle
>=dev-vcs/git-1.6.3"
DEPEND="${RDEPEND}
doc? ( app-text/asciidoc
dev-python/sphinx
app-text/xmlto )
sys-devel/gettext
test? ( dev-python/nose )"
# tests currently broken due to unfinished translation framework
RESTRICT="test"
src_prepare() {
# don't install docs into wrong location
sed -i \
-e '/doc/d' \
setup.py || die "sed failed"
sed -i \
-e "s|'doc', 'git-cola'|'doc', '${PF}', 'html'|" \
cola/resources.py || die "sed failed"
# don't prefix install path with homedir
rm setup.cfg
epatch "${FILESDIR}/1.3.8-disable-tests.patch"
python_convert_shebangs 2 bin/git-cola share/git-cola/bin/ssh-askpass
}
src_compile() {
distutils_src_compile
if use doc ; then
cd share/doc/git-cola/
emake all || die "building docs failed"
fi
}
src_install() {
distutils_src_install
# remove bundled libraries
rm -rf "${D}"/usr/share/git-cola/lib/{jsonpickle,simplejson}
# remove wrong translation file
rm -rf "${D}/usr/share/locale/"
insinto /usr/share/locale
doins -r share/locale/*
cd share/doc/git-cola/
dodoc *.txt
if use doc ; then
dohtml -r _build/html/*
doman *.1
else
dohtml "${FILESDIR}/index.html"
fi
}
src_test() {
PYTHONPATH="${S}:${S}/build/lib:${PYTHONPATH}" LC_ALL="C" nosetests \
--verbose --with-doctest --with-id --exclude=jsonpickle --exclude=json \
|| die "running nosetests failed"
}
pkg_postinst() {
python_mod_optimize /usr/share/git-cola/lib/cola
}
pkg_postrm() {
python_mod_cleanup /usr/share/git-cola/lib/cola
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-vcs/cola: ChangeLog cola-1.4.3.ebuild
@ 2011-01-25 16:30 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 2+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2011-01-25 16:30 UTC (permalink / raw
To: gentoo-commits
arfrever 11/01/25 16:30:30
Modified: ChangeLog cola-1.4.3.ebuild
Log:
Use Python 2 (bug #329473).
(Portage version: 2.2.0_alpha19_p1/cvs/Linux x86_64)
Revision Changes Path
1.6 dev-vcs/cola/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/cola/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 25 Jan 2011 14:56:23 -0000 1.5
+++ ChangeLog 25 Jan 2011 16:30:30 -0000 1.6
@@ -1,6 +1,10 @@
# ChangeLog for dev-vcs/cola
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cola/ChangeLog,v 1.5 2011/01/25 14:56:23 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cola/ChangeLog,v 1.6 2011/01/25 16:30:30 arfrever Exp $
+
+ 25 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ cola-1.4.3.ebuild:
+ Use Python 2 (bug #329473).
*cola-1.4.3 (25 Jan 2011)
1.3 dev-vcs/cola/cola-1.4.3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/cola-1.4.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/cola-1.4.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/cola-1.4.3.ebuild?r1=1.2&r2=1.3
Index: cola-1.4.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/cola/cola-1.4.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cola-1.4.3.ebuild 25 Jan 2011 14:57:18 -0000 1.2
+++ cola-1.4.3.ebuild 25 Jan 2011 16:30:30 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cola/cola-1.4.3.ebuild,v 1.2 2011/01/25 14:57:18 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cola/cola-1.4.3.ebuild,v 1.3 2011/01/25 16:30:30 arfrever Exp $
EAPI="3"
@@ -11,6 +11,7 @@
DESCRIPTION="A sweet, carbonated git gui known for its sugary flavour and caffeine-inspired features."
HOMEPAGE="http://cola.tuxfamily.org/"
SRC_URI="http://cola.tuxfamily.org/releases/${P}.tar.gz"
+
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
@@ -30,6 +31,11 @@
# tests currently broken due to unfinished translation framework
RESTRICT="test"
+pkg_setup() {
+ python_set_active_version 2
+ python_pkg_setup
+}
+
src_prepare() {
# don't install docs into wrong location
sed -i \
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-01-25 16:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-25 14:56 [gentoo-commits] gentoo-x86 commit in dev-vcs/cola: ChangeLog cola-1.4.3.ebuild Tiziano Mueller (dev-zero)
-- strict thread matches above, loose matches on Subject: below --
2011-01-25 16:30 Arfrever Frehtes Taifersar Arahesis (arfrever)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox