diff options
author | Ian Delaney <idella4@gentoo.org> | 2013-04-18 05:50:47 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2013-04-18 05:50:47 +0000 |
commit | 08b828c214add15ab0f9d8ae4575aa7eb8662c00 (patch) | |
tree | 9367cd61306a4afb64dbb840430cfbfe9b5f2552 /dev-python/tracing | |
parent | Version bump. (diff) | |
download | gentoo-2-08b828c214add15ab0f9d8ae4575aa7eb8662c00.tar.gz gentoo-2-08b828c214add15ab0f9d8ae4575aa7eb8662c00.tar.bz2 gentoo-2-08b828c214add15ab0f9d8ae4575aa7eb8662c00.zip |
migration -> distutils-r1
(Portage version: 2.1.11.60/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python/tracing')
-rw-r--r-- | dev-python/tracing/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/tracing/tracing-0.7-r1.ebuild | 35 |
2 files changed, 42 insertions, 2 deletions
diff --git a/dev-python/tracing/ChangeLog b/dev-python/tracing/ChangeLog index 36d6b2376827..da8b5fcfb8be 100644 --- a/dev-python/tracing/ChangeLog +++ b/dev-python/tracing/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/tracing -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/tracing/ChangeLog,v 1.3 2012/10/07 01:37:14 mschiff Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/tracing/ChangeLog,v 1.4 2013/04/18 05:50:47 idella4 Exp $ + +*tracing-0.7-r1 (18 Apr 2013) + + 18 Apr 2013; Ian Delaney <idella4@gentoo.org> +tracing-0.7-r1.ebuild: + migration -> distutils-r1 07 Oct 2012; Marc Schiffbauer <mschiff@gentoo.org> tracing-0.7.ebuild: Fix build diff --git a/dev-python/tracing/tracing-0.7-r1.ebuild b/dev-python/tracing/tracing-0.7-r1.ebuild new file mode 100644 index 000000000000..cc8294861ea0 --- /dev/null +++ b/dev-python/tracing/tracing-0.7-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/tracing/tracing-0.7-r1.ebuild,v 1.1 2013/04/18 05:50:47 idella4 Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_6,2_7} ) +MY_P="python-${P}" + +inherit distutils-r1 + +DESCRIPTION="Debug log/trace messages" +HOMEPAGE="http://liw.fi/tracing/" +SRC_URI="http://code.liw.fi/debian/pool/main/p/python-${PN}/python-${PN}_${PV}.orig.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples" + +S="${WORKDIR}/${MY_P}" + +python_compile_all() { + use doc && emake -C doc html +} + +python_install_all() { + dodoc README + use doc && dohtml -r doc/_build/html/ + if use examples; then + docompress -x usr/share/doc/${PF}/examples/ + insinto usr/share/doc/${PF}/examples/ + doins example.py + fi +} |