diff options
author | Tiziano Müller <dev-zero@gentoo.org> | 2010-06-08 08:15:04 +0000 |
---|---|---|
committer | Tiziano Müller <dev-zero@gentoo.org> | 2010-06-08 08:15:04 +0000 |
commit | 31e35e98477b693c013186e08c267a106a2ecf65 (patch) | |
tree | 404eb2af4e3299d7fa79f0d145a1fc97c69dbdea /dev-vcs | |
parent | Version bump. (diff) | |
download | gentoo-2-31e35e98477b693c013186e08c267a106a2ecf65.tar.gz gentoo-2-31e35e98477b693c013186e08c267a106a2ecf65.tar.bz2 gentoo-2-31e35e98477b693c013186e08c267a106a2ecf65.zip |
Moved from dev-util.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/cola/ChangeLog | 43 | ||||
-rw-r--r-- | dev-vcs/cola/cola-1.3.9.14.ebuild | 73 | ||||
-rw-r--r-- | dev-vcs/cola/cola-1.4.1.2.ebuild | 83 | ||||
-rw-r--r-- | dev-vcs/cola/files/1.3.8-disable-tests.patch | 21 | ||||
-rw-r--r-- | dev-vcs/cola/files/index.html | 15 | ||||
-rw-r--r-- | dev-vcs/cola/metadata.xml | 9 |
6 files changed, 244 insertions, 0 deletions
diff --git a/dev-vcs/cola/ChangeLog b/dev-vcs/cola/ChangeLog new file mode 100644 index 000000000000..05c2b2408a44 --- /dev/null +++ b/dev-vcs/cola/ChangeLog @@ -0,0 +1,43 @@ +# 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). + diff --git a/dev-vcs/cola/cola-1.3.9.14.ebuild b/dev-vcs/cola/cola-1.3.9.14.ebuild new file mode 100644 index 000000000000..55a1873cb23a --- /dev/null +++ b/dev-vcs/cola/cola-1.3.9.14.ebuild @@ -0,0 +1,73 @@ +# 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 +} diff --git a/dev-vcs/cola/cola-1.4.1.2.ebuild b/dev-vcs/cola/cola-1.4.1.2.ebuild new file mode 100644 index 000000000000..a99feae0ade7 --- /dev/null +++ b/dev-vcs/cola/cola-1.4.1.2.ebuild @@ -0,0 +1,83 @@ +# 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 +} diff --git a/dev-vcs/cola/files/1.3.8-disable-tests.patch b/dev-vcs/cola/files/1.3.8-disable-tests.patch new file mode 100644 index 000000000000..25462c2a37d7 --- /dev/null +++ b/dev-vcs/cola/files/1.3.8-disable-tests.patch @@ -0,0 +1,21 @@ +diff -Naur cola-1.3.7.21.orig/test/test_cola_git.py cola-1.3.7.21/test/test_cola_git.py +--- cola-1.3.7.21.orig/test/test_cola_git.py 2009-04-30 13:56:22.352319047 +0200 ++++ cola-1.3.7.21/test/test_cola_git.py 2009-04-30 13:56:53.123149963 +0200 +@@ -24,17 +24,6 @@ + version = self.git.version() + self.failUnless(version.startswith('git version')) + +- def test_tag(self): +- """Test running 'git tag'""" +- tags = self.git.tag().splitlines() +- self.failUnless( 'v1.0.0' in tags ) +- +- def test_show(self): +- """Test running 'git show'""" +- sha = '1b9742bda5d26a4f250fa64657f66ed20624a084' +- contents = self.git.show(sha).splitlines() +- self.failUnless(contents[0] == '/build') +- + def test_stdout(self): + """Test overflowing the stdout buffer""" + # Write to stdout only diff --git a/dev-vcs/cola/files/index.html b/dev-vcs/cola/files/index.html new file mode 100644 index 000000000000..7f1e814a0b51 --- /dev/null +++ b/dev-vcs/cola/files/index.html @@ -0,0 +1,15 @@ +<html> +<head> + <title>Missing documentation</title> +</head> +<body> +<div style="border: 4px double red; padding: 2em; margin: 4em; top: 4em; width: 20em;"> + This documentation is missing. Please reinstall dev-util/cola with the 'doc' useflag enabled. + + <p style="text-align: right;"> + Sincerely,<br/> + your package maintainer. + </p> +</div> +</body> +</html> diff --git a/dev-vcs/cola/metadata.xml b/dev-vcs/cola/metadata.xml new file mode 100644 index 000000000000..78170ac0a566 --- /dev/null +++ b/dev-vcs/cola/metadata.xml @@ -0,0 +1,9 @@ +<?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> |