Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
| Navigation: |
|
Lists:
gentoo-commits:
< Prev
By Thread
Next >
< Prev
By Date
Next >
|
| Headers: |
|
To:
|
gentoo-commits@g.o
|
|
From:
|
"Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
|
|
Subject:
|
gentoo-x86 commit in dev-python/epydoc: epydoc-3.0.1-r1.ebuild epydoc-2.1-r2.ebuild
|
|
Date:
|
Sun, 2 May 2010 19:00:24 +0000 (UTC)
|
|
arfrever 10/05/02 19:00:24
Modified: epydoc-3.0.1-r1.ebuild epydoc-2.1-r2.ebuild
Log:
Fix dependencies.
(Portage version: HEAD/cvs/Linux x86_64)
Revision Changes Path
1.3 dev-python/epydoc/epydoc-3.0.1-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/epydoc/epydoc-3.0.1-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/epydoc/epydoc-3.0.1-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/epydoc/epydoc-3.0.1-r1.ebuild?r1=1.2&r2=1.3
Index: epydoc-3.0.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/epydoc/epydoc-3.0.1-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- epydoc-3.0.1-r1.ebuild 8 Feb 2010 08:50:03 -0000 1.2
+++ epydoc-3.0.1-r1.ebuild 2 May 2010 19:00:24 -0000 1.3
@@ -1,11 +1,14 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/epydoc/epydoc-3.0.1-r1.ebuild,v 1.2 2010/02/08 08:50:03 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/epydoc/epydoc-3.0.1-r1.ebuild,v 1.3 2010/05/02 19:00:24 arfrever Exp $
-EAPI="2"
+EAPI="3"
+PYTHON_DEPEND="2"
+PYTHON_USE_WITH="tk"
+PYTHON_USE_WITH_OPT="X"
SUPPORT_PYTHON_ABIS="1"
-inherit eutils distutils
+inherit distutils eutils
DESCRIPTION="Tool for generating API documentation for Python modules, based on their docstrings"
HOMEPAGE="http://epydoc.sourceforge.net/"
@@ -20,21 +23,16 @@
RDEPEND="dev-python/docutils
latex? ( virtual/latex-base
|| ( dev-texlive/texlive-latexextra app-text/ptex )
- )
- X? ( dev-lang/python[tk] )"
+ )"
RESTRICT_PYTHON_ABIS="3.*"
src_prepare() {
- # bug #287546, thanks to Engelbert Gruber <grubert@...>
- # and Martin von Gagern <Martin.vGagern@...>
- epatch "${FILESDIR}"/${PN}-docutils-0.6.patch
-
- # bug #288273, thanks to Andre Malo <nd@...>
- epatch "${FILESDIR}"/${PN}-python-2.6.patch
+ distutils_src_prepare
+ epatch "${FILESDIR}/${PN}-docutils-0.6.patch"
+ epatch "${FILESDIR}/${PN}-python-2.6.patch"
}
src_install() {
- [[ -z ${ED} ]] && local ED=${D}
distutils_src_install
doman man/*
1.21 dev-python/epydoc/epydoc-2.1-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/epydoc/epydoc-2.1-r2.ebuild?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/epydoc/epydoc-2.1-r2.ebuild?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/epydoc/epydoc-2.1-r2.ebuild?r1=1.20&r2=1.21
Index: epydoc-2.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/epydoc/epydoc-2.1-r2.ebuild,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- epydoc-2.1-r2.ebuild 3 Oct 2009 05:33:08 -0000 1.20
+++ epydoc-2.1-r2.ebuild 2 May 2010 19:00:24 -0000 1.21
@@ -1,15 +1,16 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/epydoc/epydoc-2.1-r2.ebuild,v 1.20 2009/10/03 05:33:08 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/epydoc/epydoc-2.1-r2.ebuild,v 1.21 2010/05/02 19:00:24 arfrever Exp $
-EAPI="2"
+EAPI="3"
+PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
DESCRIPTION="Tool for generating API documentation for Python modules, based on their docstrings"
HOMEPAGE="http://epydoc.sourceforge.net/"
-SRC_URI="mirror://sourceforge/epydoc/${P}.tar.gz"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
|
|