mgorny 14/12/15 21:11:09 Modified: ChangeLog Added: winpdb-1.4.8-r1.ebuild Log: Convert to distutils-r1. Install winpdb only when wxwidgets is available for the impl. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.26 dev-python/winpdb/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/winpdb/ChangeLog?rev=1.26&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/winpdb/ChangeLog?rev=1.26&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/winpdb/ChangeLog?r1=1.25&r2=1.26 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/winpdb/ChangeLog,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- ChangeLog 29 Oct 2010 19:33:12 -0000 1.25 +++ ChangeLog 15 Dec 2014 21:11:09 -0000 1.26 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/winpdb -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/winpdb/ChangeLog,v 1.25 2010/10/29 19:33:12 arfrever Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/winpdb/ChangeLog,v 1.26 2014/12/15 21:11:09 mgorny Exp $ + +*winpdb-1.4.8-r1 (15 Dec 2014) + + 15 Dec 2014; Michał Górny <[email protected]> +winpdb-1.4.8-r1.ebuild: + Convert to distutils-r1. Install winpdb only when wxwidgets is available for + the impl. 29 Oct 2010; Arfrever Frehtes Taifersar Arahesis <[email protected]> -winpdb-1.4.6.ebuild: @@ -113,4 +119,3 @@ 12 Aug 2005; Rob Cakebread <[email protected]> +winpdb-1.0.1.ebuild: Initial commit. - 1.1 dev-python/winpdb/winpdb-1.4.8-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/winpdb/winpdb-1.4.8-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/winpdb/winpdb-1.4.8-r1.ebuild?rev=1.1&content-type=text/plain Index: winpdb-1.4.8-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/winpdb/winpdb-1.4.8-r1.ebuild,v 1.1 2014/12/15 21:11:09 mgorny Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} ) inherit distutils-r1 DESCRIPTION="Graphical Python debugger" HOMEPAGE="http://winpdb.org/ http://code.google.com/p/winpdb/ http://pypi.python.org/pypi/winpdb" SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ia64 ~x86" IUSE="+wxwidgets" DEPEND=">=dev-python/pycrypto-2.0.1[${PYTHON_USEDEP}] wxwidgets? ( dev-python/wxpython:2.8[$(python_gen_usedep 'python2*')] )" RDEPEND="${DEPEND}" REQUIRED_USE="wxwidgets? ( $(python_gen_useflags 'python2*') )" python_install() { distutils-r1_python_install if ! use wxwidgets || python_is_python3; then find "${D%/}$(python_get_sitedir)" -name 'winpdb*.py*' -delete || die rm "${D%/}$(python_get_scriptdir)"/winpdb || die if ! use wxwidgets; then rm "${ED%/}"/usr/bin/winpdb || die fi fi }
