Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-python/coverage
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/coverage/ChangeLog,v 1.5 2008/06/14 17:56:45 coldwind Exp $
14 Jun 2008; Santiago M. Mola
amd64 stable wrt bug #209511
11 Jun 2008; Christian Faulhammer
stable x86, bug 209511
10 Jun 2008; Robin H. Johnson
Bug #225701, make sure the bytecode gets compiled, thanks to Paweł Hajdan
jr (ph)
07 Jun 2008; nixnut
Stable on ppc wrt bug 209511
*coverage-2.77 (18 Dec 2007)
18 Dec 2007; Robin H. Johnson
+coverage-2.77.ebuild:
Initial commit. This is the coverage checker that is supported by
dev-python/nose.
DIST coverage-2.77.tar.gz 13256 RMD160 0dd6444cb69a8a676ff5809f25f6b4fd5f68c250 SHA1 a84f25251a54635b59a0866cab53976c600a4288 SHA256 5e35953cda21e5f3f89198204911a020dd040ddd1cff1b36e5dda8f357c5b768
EBUILD coverage-2.77.ebuild 831 RMD160 71f64dab45311b4b4cec4e5df127a4b67421859c SHA1 54b6fc51482d6fce6bf0de2fd00e2b1aca1d7b26 SHA256 0bac6620258973d54674b37e229809ae58e06b3b8e74143bd0b2e13f58c23273
MISC ChangeLog 918 RMD160 75460c5d74639516d869645291e658ddbb474de8 SHA1 1b8bbb92875fd9610551d50b0ae1868dfd8909a2 SHA256 7b4af4d556906cf250597dc50c701158c24b8888b220716d724bce838e6f436c
MISC metadata.xml 543 RMD160 a4f5cf0e919a4d3e445a7be4e81fd6850ed1ac6e SHA1 b59d05c50be0fc2e17484d71288edfe588ecdd1b SHA256 4d5798ce74309570cbb96e5fe942838f3843a50fb2a309716a8e84686c637cde
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/coverage/coverage-2.77.ebuild,v 1.5 2008/06/14 17:56:45 coldwind Exp $
inherit distutils
DESCRIPTION="Coverage.py is a Python module that measures code coverage during Python execution."
HOMEPAGE="http://nedbatchelder.com/code/modules/coverage.html"
SRC_URI="http://nedbatchelder.com/code/modules/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
PYTHON_MODNAME="coverage.py"
src_install() {
distutils_src_install
# Rename the runner so that it is not found in sys.path
# by the Python search routines. The script would take care of this itself
# normally, but for usage with dev-python/nose, we need to handle it.
mv "${D}"/usr/bin/coverage{.py,}
}
Coverage.py is a Python module that measures code coverage during Python
execution. It uses the code analysis tools and tracing hooks provided in the
Python standard library to determine which lines are executable, and which have
been executed.