* [gentoo-commits] gentoo-x86 commit in dev-vcs/cola: ChangeLog metadata.xml cola-1.3.9.14.ebuild cola-1.4.1.2.ebuild
@ 2010-06-08 8:15 Tiziano Mueller (dev-zero)
0 siblings, 0 replies; only message in thread
From: Tiziano Mueller (dev-zero) @ 2010-06-08 8:15 UTC (permalink / raw
To: gentoo-commits
dev-zero 10/06/08 08:15:04
Added: ChangeLog metadata.xml cola-1.3.9.14.ebuild
cola-1.4.1.2.ebuild
Log:
Moved from dev-util.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.1 dev-vcs/cola/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/ChangeLog?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/ChangeLog?rev=1.1&content-type=text/plain
Index: ChangeLog
===================================================================
# ChangeLog for dev-util/cola
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cola/ChangeLog,v 1.1 2010/06/08 08:15:04 dev-zero Exp $
17 Mar 2010; Sebastian Pipping <sping@gentoo.org> cola-1.3.9.14.ebuild,
cola-1.4.1.2.ebuild:
Propagate move of dev-util/git to dev-vcs/git
*cola-1.4.1.2 (18 Jan 2010)
18 Jan 2010; Tiziano Müller <dev-zero@gentoo.org> -cola-1.3.8.ebuild,
-cola-1.4.0.1.ebuild, -cola-1.4.1.1.ebuild, +cola-1.4.1.2.ebuild:
Version bump. Removed old.
*cola-1.4.1.1 (16 Dec 2009)
16 Dec 2009; Tiziano Müller <dev-zero@gentoo.org> +cola-1.4.1.1.ebuild:
Version bump.
*cola-1.4.0.1 (03 Nov 2009)
03 Nov 2009; Tiziano Müller <dev-zero@gentoo.org> +cola-1.4.0.1.ebuild,
+files/index.html:
Version bump, fixed doc deps and doc installation ^Cug #291439, thanks to
Man Shankar).
*cola-1.3.9.14 (26 Aug 2009)
26 Aug 2009; Tiziano Müller <dev-zero@gentoo.org> +cola-1.3.9.14.ebuild:
Version bump.
30 Jun 2009; Christian Faulhammer <fauli@gentoo.org> cola-1.3.8.ebuild:
keyworded ~arch for x86, bug 275353
19 Jun 2009; Tiziano Müller <dev-zero@gentoo.org> cola-1.3.8.ebuild:
Require pyinotify >=0.7.1 (thanks to a.peyser).
*cola-1.3.8 (19 Jun 2009)
19 Jun 2009; Tiziano Müller <dev-zero@gentoo.org>
+files/1.3.8-disable-tests.patch, +cola-1.3.8.ebuild, +metadata.xml:
Initial commit, moved over from my overlay (as requested in bug #274621).
1.1 dev-vcs/cola/metadata.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/metadata.xml?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/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>no-herd</herd>
<maintainer>
<email>dev-zero@gentoo.org</email>
<name>Tiziano Müller</name>
</maintainer>
</pkgmetadata>
1.1 dev-vcs/cola/cola-1.3.9.14.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/cola-1.3.9.14.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/cola-1.3.9.14.ebuild?rev=1.1&content-type=text/plain
Index: cola-1.3.9.14.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cola/cola-1.3.9.14.ebuild,v 1.1 2010/06/08 08:15:04 dev-zero Exp $
EAPI="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}-src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
RDEPEND="dev-python/PyQt4
|| ( >=dev-lang/python-2.6 ( =dev-lang/python-2.5* dev-python/simplejson ) )
>=dev-python/pyinotify-0.7.1
dev-python/jsonpickle
dev-vcs/git"
DEPEND="${RDEPEND}
doc? ( app-text/asciidoc )
test? ( dev-python/nose )"
src_prepare() {
# don't install docs into wrong location
sed -i \
-e '/doc/d' \
setup.py || die "sed failed"
# don't prefix install path with homedir
rm setup.cfg
epatch "${FILESDIR}/1.3.8-disable-tests.patch"
}
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}
cd share/doc/git-cola/
dodoc *.txt
if use doc ; then
dohtml *.html
doman *.1
fi
}
src_test() {
PYTHONPATH="$(pwd):$(pwd)/build/lib:${PYTHONPATH}" nosetests \
--verbose --with-doctest --with-id --exclude=jsonpickle --exclude=json \
|| die "running nosetests failed"
}
pkg_postinst() {
python_mod_optimize /usr/share/git-cola
}
pkg_postrm() {
python_mod_cleanup /usr/share/git-cola
}
1.1 dev-vcs/cola/cola-1.4.1.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/cola-1.4.1.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cola/cola-1.4.1.2.ebuild?rev=1.1&content-type=text/plain
Index: cola-1.4.1.2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cola/cola-1.4.1.2.ebuild,v 1.1 2010/06/08 08:15:04 dev-zero Exp $
EAPI="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-lang/python-2.6 ( =dev-lang/python-2.5* dev-python/simplejson ) )
>=dev-python/pyinotify-0.7.1
dev-python/jsonpickle
dev-vcs/git"
DEPEND="${RDEPEND}
doc? ( app-text/asciidoc
dev-python/sphinx
app-text/xmlto )
test? ( dev-python/nose )"
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'|" \
-e 's|git-cola.html|index.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"
}
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}
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="$(pwd):$(pwd)/build/lib:${PYTHONPATH}" nosetests \
--verbose --with-doctest --with-id --exclude=jsonpickle --exclude=json \
|| die "running nosetests failed"
}
pkg_postinst() {
python_mod_optimize /usr/share/git-cola
}
pkg_postrm() {
python_mod_cleanup /usr/share/git-cola
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-06-08 8:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-08 8:15 [gentoo-commits] gentoo-x86 commit in dev-vcs/cola: ChangeLog metadata.xml cola-1.3.9.14.ebuild cola-1.4.1.2.ebuild Tiziano Mueller (dev-zero)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox