Ebuild
January 18, 2011, 12:55
PyQt based commit tool for many VCSs
| alpha | amd64 | arm | hppa | ia64 | m68k | mips | ppc | ppc64 | s390 | sh | sparc | x86 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1.7 | – | ~ | – | – | – | – | – | – | – | – | – | – | ~ |
DESCRIZIONE DEL PACCHETTO:
PyQt based commit tool for many VCSs
Categoria:
CHANGELOG
# ChangeLog for dev-vcs/qct # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/qct/ChangeLog,v 1.9 2011/01/18 12:55:44 arfrever Exp $ 18 Jan 2011; Arfrever Frehtes Taifersar Arahesis (arfrever) qct-1.7.ebuild: Restrict Jython ABIs. Use python_get_sitedir() in correct scope (bug #351961). 08 Jul 2010; Arfrever Frehtes Taifersar Arahesis (arfrever) qct-1.7.ebuild: Set SUPPORT_PYTHON_ABIS. 22 Jun 2010; Arfrever Frehtes Taifersar Arahesis (arfrever) qct-1.7.ebuild: dev-util/subversion renamed to dev-vcs/subversion. 19 Jun 2010; Jonathan Callen (abcd) qct-1.7.ebuild: Moving dev-util/cvs* to dev-vcs/cvs* 15 Jun 2010; Arfrever Frehtes Taifersar Arahesis (arfrever) qct-1.7.ebuild: Delete call to deprecated distutils_python_version(). 05 Mar 2010; Sebastian Pipping (sping) qct-1.7.ebuild, metadata.xml: Propagate move of monotone 05 Mar 2010; Christian Faulhammer (fauli) metadata.xml: Bzr moved from dev-util to dev-vcs category 05 Mar 2010; Christian Faulhammer (fauli) qct-1.7.ebuild: Bzr moved from dev-util to dev-vcs category 05 Mar 2010; Jonathan Callen (abcd) ChangeLog: Move from dev-util to dev-vcs 15 Jun 2009; Ben de Groot (yngwin) +files/qct.rc: Initial import from qting-edge overlay. Ebuild developed by Dror Levin and contributors in bug 162963.
BUGS
Nessun bug trovato
USE FLAGS
| bazaar | Support for dev-vcs/bzr |
| cvs | Enable CVS (Concurrent Versions System) integration |
| mercurial | Support for dev-vcs/mercurial |
| monotone | Support for dev-vcs/monotone |
| subversion | Enable subversion (version control system) support |
DIPENDENZE PER LA COMPILAZIONE
| app-admin/eselect-python | Eselect module for management of multiple Python versions |
| app-text/asciidoc | A text document format for writing short documents, articles, books and UNIX man pages |
| app-text/xmlto | script for converting XML and DocBook formatted documents to a variety of output formats |
| dev-lang/python | Python is an interpreted, interactive, object-oriented programming language. |
| dev-python/PyQt4 | Python bindings for the Qt toolkit |
| dev-vcs/bzr | Bazaar is a next generation distributed version control system. |
| dev-vcs/cvs | Concurrent Versions System - source code revision control tools |
| dev-vcs/mercurial | Scalable distributed SCM |
| dev-vcs/monotone | Monotone Distributed Version Control System |
| dev-vcs/subversion | Advanced version control system |
DIPENDENZE PER L'ESECUZIONE
| app-admin/eselect-python | Eselect module for management of multiple Python versions |
| app-text/asciidoc | A text document format for writing short documents, articles, books and UNIX man pages |
| app-text/xmlto | script for converting XML and DocBook formatted documents to a variety of output formats |
| dev-lang/python | Python is an interpreted, interactive, object-oriented programming language. |
| dev-python/PyQt4 | Python bindings for the Qt toolkit |
| dev-vcs/bzr | Bazaar is a next generation distributed version control system. |
| dev-vcs/cvs | Concurrent Versions System - source code revision control tools |
| dev-vcs/mercurial | Scalable distributed SCM |
| dev-vcs/monotone | Monotone Distributed Version Control System |
| dev-vcs/subversion | Advanced version control system |
CODICE SORGENTE
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/qct/qct-1.7.ebuild,v 1.9 2011/01/18
12:55:44 arfrever Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
inherit distutils
DESCRIPTION="PyQt based commit tool for many VCSs"
HOMEPAGE="http://qct.sourceforge.net/"
SRC_URI="http://qct.sourceforge.net/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="bazaar cvs mercurial monotone subversion"
DEPEND="app-text/asciidoc
app-text/xmlto
dev-python/PyQt4
bazaar? ( dev-vcs/bzr )
cvs? ( dev-vcs/cvs )
mercurial? ( dev-vcs/mercurial )
monotone? ( dev-vcs/monotone )
subversion? ( dev-vcs/subversion )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}"
pkg_setup() {
python_pkg_setup
PYTHON_MODNAME="qctlib"
if use bazaar; then
PYTHON_MODNAME+=" bzrlib/plugins/qctBzrPlugin.py"
fi
if use mercurial; then
PYTHON_MODNAME+=" hgext/qct.py"
fi
}
src_prepare() {
distutils_src_prepare
rm qctlib/vcs/p4.py
# support for git requires cogito which isn't in portage
rm qctlib/vcs/git.py
rm qctlib/vcs/cg.py
use bazaar || rm qctlib/vcs/bzr.py
use cvs || rm qctlib/vcs/cvs.py
use mercurial || rm qctlib/vcs/hg.py
use monotone || rm qctlib/vcs/mtn.py
use subversion || rm qctlib/vcs/svn.py
}
src_install() {
distutils_src_install
# manpage and html docs are built using asciidoc
make -C doc man html || die
doman doc/qct.1 || die
dohtml doc/qct.1.html || die
if use bazaar; then
install_bazaar_plugins() {
insinto "$(python_get_sitedir)/bzrlib/plugins" || return 1
doins plugins/qctBzrPlugin.py || return 1
}
python_execute_function -q install_bazaar_plugins
fi
if use mercurial; then
install_mercurial_extension() {
insinto "$(python_get_sitedir)/hgext" || return 1
doins hgext/qct.py || return 1
}
python_execute_function -q install_mercurial_extension
insinto /etc/mercurial/hgrc.d || die
doins "${FILESDIR}/qct.rc" || die
fi
}