idella4     15/04/08 05:11:47

  Modified:             pympler-0.3.1.ebuild ChangeLog
  Added:                pympler-0.4.ebuild
  Log:
  drop old impls & add py3.4 to -0.3.1, bump, add IUSE doc to install pre-built 
docs, fixes bug #530566 by pacho
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  Changes    Path
1.14                 dev-python/pympler/pympler-0.3.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pympler/pympler-0.3.1.ebuild?rev=1.14&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pympler/pympler-0.3.1.ebuild?rev=1.14&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pympler/pympler-0.3.1.ebuild?r1=1.13&r2=1.14

Index: pympler-0.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pympler/pympler-0.3.1.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- pympler-0.3.1.ebuild        5 Jan 2014 17:51:44 -0000       1.13
+++ pympler-0.3.1.ebuild        8 Apr 2015 05:11:47 -0000       1.14
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pympler/pympler-0.3.1.ebuild,v 
1.13 2014/01/05 17:51:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pympler/pympler-0.3.1.ebuild,v 
1.14 2015/04/08 05:11:47 idella4 Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
+PYTHON_COMPAT=( python{2_7,3_3} )
 
 inherit distutils-r1
 
@@ -25,8 +25,6 @@
 
 S="${WORKDIR}"/${MY_P}
 
-DISTUTILS_NO_PARALLEL_BUILD=true
-
 python_prepare_all() {
        rm pympler/util/bottle.py || die
        sed \



1.25                 dev-python/pympler/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pympler/ChangeLog?rev=1.25&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pympler/ChangeLog?rev=1.25&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pympler/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pympler/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog   7 Apr 2015 14:18:02 -0000       1.24
+++ ChangeLog   8 Apr 2015 05:11:47 -0000       1.25
@@ -1,6 +1,13 @@
 # ChangeLog for dev-python/pympler
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pympler/ChangeLog,v 1.24 
2015/04/07 14:18:02 jlec Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pympler/ChangeLog,v 1.25 
2015/04/08 05:11:47 idella4 Exp $
+
+*pympler-0.4 (08 Apr 2015)
+
+  08 Apr 2015; Ian Delaney <idel...@gentoo.org> +pympler-0.4.ebuild,
+  pympler-0.3.1.ebuild:
+  drop old impls & add py3.4 to -0.3.1, bump, add IUSE doc to install pre-built
+  docs, fixes bug #530566 by pacho
 
   06 Jan 2014; Justin Lecher <j...@gentoo.org> -pympler-0.2.0.ebuild:
   Drop old



1.1                  dev-python/pympler/pympler-0.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pympler/pympler-0.4.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pympler/pympler-0.4.ebuild?rev=1.1&content-type=text/plain

Index: pympler-0.4.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pympler/pympler-0.4.ebuild,v 1.1 
2015/04/08 05:11:47 idella4 Exp $

EAPI=5

PYTHON_COMPAT=( python{2_7,3_3,3_4} )

inherit distutils-r1

MY_PN="Pympler"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Memory profiling for Python applications"
HOMEPAGE="http://code.google.com/p/pympler/ 
https://pypi.python.org/pypi/Pympler https://github.com/pympler/pympler";
SRC_URI="mirror://pypi/P/${MY_PN}/${MY_P}.tar.gz"

SLOT="0"
LICENSE="Apache-2.0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
IUSE="doc test"

RDEPEND="dev-python/bottle[${PYTHON_USEDEP}]"
DEPEND="test? ( ${RDEPEND} )"

S="${WORKDIR}"/${MY_P}

python_prepare_all() {
        rm pympler/util/bottle.py || die
        sed \
                -e '/import bottle/s:^.*$:import bottle:g' \
                -i pympler/web.py || die
        distutils-r1_python_prepare_all
}

python_test() {
        esetup.py try || die
}

python_install_all() {
        use doc && local HTML_DOCS=( doc/html/. )
        distutils-r1_python_install_all
}




Reply via email to