[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/, profiles/

2020-12-23 Thread Michał Górny
commit: c4b0a2aaa297545b779f0b0d8e428d6c792fdac5
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Dec 23 09:00:12 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Dec 23 09:02:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4b0a2aa

dev-python/pympler: Remove last-rited pkg

Closes: https://bugs.gentoo.org/755623
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pympler/Manifest   |  1 -
 dev-python/pympler/metadata.xml   | 20 
 dev-python/pympler/pympler-0.6.ebuild | 44 ---
 profiles/package.mask |  1 -
 4 files changed, 66 deletions(-)

diff --git a/dev-python/pympler/Manifest b/dev-python/pympler/Manifest
deleted file mode 100644
index d392bb939e9..000
--- a/dev-python/pympler/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pympler-0.6.tar.gz 267267 BLAKE2B 
84a8df3177d0defed949869bec9342beb4336c912be5539c597388207abcbc53fa5218da34b16a872dca804ff559a448dc092b4d33396d570164311c1808765a
 SHA512 
891822ce0a76377d74aa99dd2ce8b21a364084f0bc03ab6d6fe505597a0e182dde459b218dff8e0e6a753e1d88ba9f01b3a4b97be31a20e73a93d6c6fee66e1b

diff --git a/dev-python/pympler/metadata.xml b/dev-python/pympler/metadata.xml
deleted file mode 100644
index a403ca47e62..000
--- a/dev-python/pympler/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-pyt...@gentoo.org
-Python
-  
-  
-Pympler is a development tool to measure, monitor and analyze the memory 
-behavior of Python objects in a running Python application. By pympling a 
-Python application, detailed insight in the size and the lifetime of Python 
-objects can be obtained. Undesirable or unexpected runtime behavior like 
-memory bloat and other "pymples" can easily be identified.
-
-  
-  
-Pympler
-pympler/pympler
-  
-

diff --git a/dev-python/pympler/pympler-0.6.ebuild 
b/dev-python/pympler/pympler-0.6.ebuild
deleted file mode 100644
index abcf53a1850..000
--- a/dev-python/pympler/pympler-0.6.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=no
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit distutils-r1
-
-MY_PN="Pympler"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Memory profiling for Python applications"
-HOMEPAGE="https://pypi.org/project/Pympler/ https://github.com/pympler/pympler;
-SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-# The PyPi tarball is missing the documentation
-#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"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-python/bottle[${PYTHON_USEDEP}]"
-DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-   test? ( ${RDEPEND} )"
-
-python_compile_all() {
-   if use doc; then
-   python_setup
-   sphinx-build -b html doc/{source,html} || die
-   fi
-}
-
-python_test() {
-   esetup.py try
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( doc/html/. )
-   distutils-r1_python_install_all
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index 081773d3a98..7c58ad4ecf5 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -297,7 +297,6 @@ games-emulation/fakenes
 # (or are broken).  They have no reverse dependencies, except for other
 # packages from the list.
 # Removal in 30 days.  Bug #755623.
-dev-python/pympler
 dev-python/python-ethtool
 dev-python/python-prctl
 dev-python/python-termstyle



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2020-03-28 Thread Michał Górny
commit: 6489fa141787313836377f461ad53e2224b3e91e
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 28 17:51:48 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 28 18:02:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6489fa14

dev-python/pympler: Set DISTUTILS_USE_SETUPTOOLS

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pympler/pympler-0.6.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/pympler/pympler-0.6.ebuild 
b/dev-python/pympler/pympler-0.6.ebuild
index ebabbbd1365..abcf53a1850 100644
--- a/dev-python/pympler/pympler-0.6.ebuild
+++ b/dev-python/pympler/pympler-0.6.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=7
 
+DISTUTILS_USE_SETUPTOOLS=no
 PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2020-03-28 Thread Michał Górny
commit: 9a1ec2c87ed53bfdf39ae24d15382ea4e7d965a0
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 28 17:52:21 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 28 18:02:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a1ec2c8

dev-python/pympler: Remove redundant versions

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pympler/Manifest   |  1 -
 dev-python/pympler/pympler-0.5.ebuild | 43 ---
 2 files changed, 44 deletions(-)

diff --git a/dev-python/pympler/Manifest b/dev-python/pympler/Manifest
index 27c2724d1be..d392bb939e9 100644
--- a/dev-python/pympler/Manifest
+++ b/dev-python/pympler/Manifest
@@ -1,2 +1 @@
-DIST pympler-0.5.tar.gz 263627 BLAKE2B 
5ce881664e2d57d1a7a9b87238cfc6657fd35a140e6ab906b55ca6e0ac91fc8a74377d4db21706708c55773f8ca65d3578c101669ba409339418e09ca53d0fb2
 SHA512 
254b758df70bafe57f315a973de0caeef6cd616bd0cc7b4475c74c3a9a94f52b3ac3da3f073483db3560cd0060536c95ed1297007c24dfe8db89fd893ff1409c
 DIST pympler-0.6.tar.gz 267267 BLAKE2B 
84a8df3177d0defed949869bec9342beb4336c912be5539c597388207abcbc53fa5218da34b16a872dca804ff559a448dc092b4d33396d570164311c1808765a
 SHA512 
891822ce0a76377d74aa99dd2ce8b21a364084f0bc03ab6d6fe505597a0e182dde459b218dff8e0e6a753e1d88ba9f01b3a4b97be31a20e73a93d6c6fee66e1b

diff --git a/dev-python/pympler/pympler-0.5.ebuild 
b/dev-python/pympler/pympler-0.5.ebuild
deleted file mode 100644
index 1026066d1f6..000
--- a/dev-python/pympler/pympler-0.5.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1
-
-MY_PN="Pympler"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Memory profiling for Python applications"
-HOMEPAGE="https://pypi.org/project/Pympler/ https://github.com/pympler/pympler;
-SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-# The PyPi tarball is missing the documentation
-#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"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-python/bottle[${PYTHON_USEDEP}]"
-DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-   test? ( ${RDEPEND} )"
-
-python_compile_all() {
-   if use doc; then
-   python_setup
-   sphinx-build -b html doc/{source,html} || die
-   fi
-}
-
-python_test() {
-   esetup.py try
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( doc/html/. )
-   distutils-r1_python_install_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2020-03-28 Thread Michał Górny
commit: 506627938d54c7a675a4176cc061876a58801784
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 28 17:52:09 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 28 18:02:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50662793

dev-python/pympler: Stabilize 0.6 ALLARCHES

Bug: https://bugs.gentoo.org/714436
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pympler/pympler-0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pympler/pympler-0.6.ebuild 
b/dev-python/pympler/pympler-0.6.ebuild
index abcf53a1850..595d8e83ba1 100644
--- a/dev-python/pympler/pympler-0.6.ebuild
+++ b/dev-python/pympler/pympler-0.6.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha amd64 arm ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2020-03-28 Thread Michał Górny
commit: 58ffd2f43dc8f0ccb467138ebbee917dfc643105
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 28 17:51:23 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 28 18:02:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58ffd2f4

dev-python/pympler: Mark ALLARCHES

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pympler/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/pympler/metadata.xml b/dev-python/pympler/metadata.xml
index b7d64a47521..a403ca47e62 100644
--- a/dev-python/pympler/metadata.xml
+++ b/dev-python/pympler/metadata.xml
@@ -12,6 +12,7 @@ Python application, detailed insight in the size and the 
lifetime of Python
 objects can be obtained. Undesirable or unexpected runtime behavior like 
 memory bloat and other "pymples" can easily be identified.
 
+  
   
 Pympler
 pympler/pympler



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2020-03-25 Thread Agostino Sarubbo
commit: d6e8d76236e94fee89d928719f5237d9df2fa811
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 25 15:41:10 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 25 15:42:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6e8d762

dev-python/pympler: x86 stable wrt bug #714436

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/pympler/pympler-0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pympler/pympler-0.6.ebuild 
b/dev-python/pympler/pympler-0.6.ebuild
index dc66bb82de9..ebabbbd1365 100644
--- a/dev-python/pympler/pympler-0.6.ebuild
+++ b/dev-python/pympler/pympler-0.6.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha amd64 arm ~ia64 ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2020-03-25 Thread Agostino Sarubbo
commit: a2c8d6fd042d1595c5dce7f7175ae9442c529f30
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 25 14:16:11 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 25 14:17:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2c8d6fd

dev-python/pympler: amd64 stable wrt bug #714436

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/pympler/pympler-0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pympler/pympler-0.6.ebuild 
b/dev-python/pympler/pympler-0.6.ebuild
index 6027258d9dc..445e8d6621b 100644
--- a/dev-python/pympler/pympler-0.6.ebuild
+++ b/dev-python/pympler/pympler-0.6.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha ~amd64 arm ~ia64 ppc ~ppc64 sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 arm ~ia64 ppc ~ppc64 sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2019-03-28 Thread Patrick McLean
commit: f3575030148e54b9f5fbedad0a88a099516ca11e
Author: Patrick McLean  sony  com>
AuthorDate: Thu Mar 28 21:21:30 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Thu Mar 28 21:21:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3575030

dev-python/pympler: Version bump to 0.6

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Patrick McLean  gentoo.org>

 dev-python/pympler/Manifest   |  1 +
 dev-python/pympler/pympler-0.6.ebuild | 42 +++
 2 files changed, 43 insertions(+)

diff --git a/dev-python/pympler/Manifest b/dev-python/pympler/Manifest
index e41570df645..27c2724d1be 100644
--- a/dev-python/pympler/Manifest
+++ b/dev-python/pympler/Manifest
@@ -1 +1,2 @@
 DIST pympler-0.5.tar.gz 263627 BLAKE2B 
5ce881664e2d57d1a7a9b87238cfc6657fd35a140e6ab906b55ca6e0ac91fc8a74377d4db21706708c55773f8ca65d3578c101669ba409339418e09ca53d0fb2
 SHA512 
254b758df70bafe57f315a973de0caeef6cd616bd0cc7b4475c74c3a9a94f52b3ac3da3f073483db3560cd0060536c95ed1297007c24dfe8db89fd893ff1409c
+DIST pympler-0.6.tar.gz 267267 BLAKE2B 
84a8df3177d0defed949869bec9342beb4336c912be5539c597388207abcbc53fa5218da34b16a872dca804ff559a448dc092b4d33396d570164311c1808765a
 SHA512 
891822ce0a76377d74aa99dd2ce8b21a364084f0bc03ab6d6fe505597a0e182dde459b218dff8e0e6a753e1d88ba9f01b3a4b97be31a20e73a93d6c6fee66e1b

diff --git a/dev-python/pympler/pympler-0.6.ebuild 
b/dev-python/pympler/pympler-0.6.ebuild
new file mode 100644
index 000..03f9d85458e
--- /dev/null
+++ b/dev-python/pympler/pympler-0.6.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+inherit distutils-r1
+
+MY_PN="Pympler"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Memory profiling for Python applications"
+HOMEPAGE="https://pypi.org/project/Pympler/ https://github.com/pympler/pympler;
+SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+# The PyPi tarball is missing the documentation
+#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="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? ( ${RDEPEND} )"
+
+python_compile_all() {
+   if use doc; then
+   python_setup
+   sphinx-build -b html doc/{source,html} || die
+   fi
+}
+
+python_test() {
+   esetup.py try
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( doc/html/. )
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2018-02-05 Thread Michał Górny
commit: 296766fbe22b922134ce59a8a70ee7f9329bec5b
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Feb  5 20:29:17 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb  5 21:53:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=296766fb

dev-python/pympler: remove dead HOMEPAGE

 dev-python/pympler/pympler-0.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pympler/pympler-0.5.ebuild 
b/dev-python/pympler/pympler-0.5.ebuild
index 60c4548dd30..629446a0c6b 100644
--- a/dev-python/pympler/pympler-0.5.ebuild
+++ b/dev-python/pympler/pympler-0.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ MY_PN="Pympler"
 MY_P="${MY_PN}-${PV}"
 
 DESCRIPTION="Memory profiling for Python applications"
-HOMEPAGE="https://code.google.com/p/pympler/ 
https://pypi.python.org/pypi/Pympler https://github.com/pympler/pympler;
+HOMEPAGE="https://pypi.python.org/pypi/Pympler 
https://github.com/pympler/pympler;
 SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 # The PyPi tarball is missing the documentation
 #SRC_URI="mirror://pypi/P/${MY_PN}/${MY_P}.tar.gz"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2018-01-05 Thread Michał Górny
commit: a01b1ec06541f5a4a0264dbc109219f8d40cde99
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jan  5 22:12:51 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jan  5 23:19:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a01b1ec0

dev-python/pympler: Clean old up

 dev-python/pympler/Manifest |  3 --
 dev-python/pympler/pympler-0.4.1.ebuild | 42 --
 dev-python/pympler/pympler-0.4.2.ebuild | 43 --
 dev-python/pympler/pympler-0.4.3.ebuild | 53 -
 4 files changed, 141 deletions(-)

diff --git a/dev-python/pympler/Manifest b/dev-python/pympler/Manifest
index 267b3306dc4..e41570df645 100644
--- a/dev-python/pympler/Manifest
+++ b/dev-python/pympler/Manifest
@@ -1,4 +1 @@
-DIST Pympler-0.4.1.tar.gz 395535 BLAKE2B 
0d61dafb7f0dd30602b8cc6a9b5d1cf48090c3bd131805a2b33a68a32b6a9b0886fbab54cc3c027e7d94c017048f8f2539fcbaa690cb7c16de2036f10179c438
 SHA512 
3f7e2d88ca431ae73cf49d5140c10de4eab10c1627cdacc12e216c89410add16cb5e1faedc484ea765e4b866b905a5379bb21e7d41b9b8d622c4ac7b1b16a8a3
-DIST Pympler-0.4.2.tar.gz 395765 BLAKE2B 
57a69a3cb2a4f12dd3fcbd98b72ed4594e4eeafeec0456340319fb6421e07268bd8b2daa4aa7bc790e229e349fa29f7b061a28b6c6336dee4fd71a604d7e5960
 SHA512 
ae6e7718ecf8e7bc46ce968dd3b57543c4a3e882a07d7cb68ee38e60debc157ce2410c66b23c14179c47fef1b89647886289d9e4fdfc5f9e9ecd87a052f204aa
-DIST pympler-0.4.3.tar.gz 259409 BLAKE2B 
26be0f58d5e846b806c6885db801155aa0551b632c753d55cf6e189efdd9fb528fbc29cb697b81497374c466fd2b54cca372f4251355b2443da287e6637ca252
 SHA512 
de4a36e8e5b639c1b78460677d821a5ad829c01a568496a5df4682ab32fea14e24c47260aed96c68722285e3fdb4b202348a7cbfcb95531ca2954bd8d5cebb68
 DIST pympler-0.5.tar.gz 263627 BLAKE2B 
5ce881664e2d57d1a7a9b87238cfc6657fd35a140e6ab906b55ca6e0ac91fc8a74377d4db21706708c55773f8ca65d3578c101669ba409339418e09ca53d0fb2
 SHA512 
254b758df70bafe57f315a973de0caeef6cd616bd0cc7b4475c74c3a9a94f52b3ac3da3f073483db3560cd0060536c95ed1297007c24dfe8db89fd893ff1409c

diff --git a/dev-python/pympler/pympler-0.4.1.ebuild 
b/dev-python/pympler/pympler-0.4.1.ebuild
deleted file mode 100644
index cdca81dc92e..000
--- a/dev-python/pympler/pympler-0.4.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-
-inherit distutils-r1
-
-MY_PN="Pympler"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Memory profiling for Python applications"
-HOMEPAGE="https://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
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( doc/html/. )
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/pympler/pympler-0.4.2.ebuild 
b/dev-python/pympler/pympler-0.4.2.ebuild
deleted file mode 100644
index c4cc5bae7af..000
--- a/dev-python/pympler/pympler-0.4.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-
-inherit distutils-r1
-
-MY_PN="Pympler"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Memory profiling for Python applications"
-HOMEPAGE="https://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() {
-   # https://github.com/pympler/pympler/issues/22
-   esetup.py try
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( doc/html/. )
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/pympler/pympler-0.4.3.ebuild 
b/dev-python/pympler/pympler-0.4.3.ebuild
deleted file mode 100644
index bac8394e16c..000
--- a/dev-python/pympler/pympler-0.4.3.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2017 Gentoo 

[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2017-09-25 Thread Michael Palimaka
commit: 6b64c0697ba2cbcaa173123cb2f6ca751e1ed7b3
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Sep 25 12:59:09 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Sep 25 12:59:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b64c069

dev-python/pympler: stabilise 0.5 for x86

Bug: https://bugs.gentoo.org/625048
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-python/pympler/pympler-0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pympler/pympler-0.5.ebuild 
b/dev-python/pympler/pympler-0.5.ebuild
index f4aa4d5b4f9..0fef4cec0a9 100644
--- a/dev-python/pympler/pympler-0.5.ebuild
+++ b/dev-python/pympler/pympler-0.5.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 RDEPEND="dev-python/bottle[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2017-09-25 Thread Michael Palimaka
commit: 9caf9a427e29de032b3d27375cb2bb0bda846af0
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Sep 25 12:59:36 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Sep 25 12:59:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9caf9a42

dev-python/pympler: stabilise 0.5 for arm/sparc using ALLARCHES

Bug: https://bugs.gentoo.org/625048
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-python/pympler/pympler-0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pympler/pympler-0.5.ebuild 
b/dev-python/pympler/pympler-0.5.ebuild
index 0fef4cec0a9..60c4548dd30 100644
--- a/dev-python/pympler/pympler-0.5.ebuild
+++ b/dev-python/pympler/pympler-0.5.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 RDEPEND="dev-python/bottle[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2017-09-12 Thread Matt Turner
commit: 5910a91d3a03b661f4ddd794bf7467a54a68276d
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Sep 12 23:02:46 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Sep 12 23:02:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5910a91d

dev-python/pympler-0.5: ppc64 stable, bug 625048

 dev-python/pympler/pympler-0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pympler/pympler-0.5.ebuild 
b/dev-python/pympler/pympler-0.5.ebuild
index c0c8e6ecb30..f4aa4d5b4f9 100644
--- a/dev-python/pympler/pympler-0.5.ebuild
+++ b/dev-python/pympler/pympler-0.5.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="alpha amd64 ~arm ia64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 RDEPEND="dev-python/bottle[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2017-09-12 Thread Matt Turner
commit: 314eef5a8c89f398466691b5e6b6f256c2238864
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Sep 12 23:02:36 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Sep 12 23:02:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=314eef5a

dev-python/pympler-0.5: ppc stable, bug 625048

 dev-python/pympler/pympler-0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pympler/pympler-0.5.ebuild 
b/dev-python/pympler/pympler-0.5.ebuild
index 23c759e6982..c0c8e6ecb30 100644
--- a/dev-python/pympler/pympler-0.5.ebuild
+++ b/dev-python/pympler/pympler-0.5.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="alpha amd64 ~arm ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 RDEPEND="dev-python/bottle[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2017-07-16 Thread Tobias Klausmann
commit: 29a07425de5f5d5913edd009380bdd6c153a7e66
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:23 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29a07425

dev-python/pympler-0.5-r0: alpha stable

Gentoo-Bug: 625048

 dev-python/pympler/pympler-0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pympler/pympler-0.5.ebuild 
b/dev-python/pympler/pympler-0.5.ebuild
index 78907c0f513..23c759e6982 100644
--- a/dev-python/pympler/pympler-0.5.ebuild
+++ b/dev-python/pympler/pympler-0.5.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha amd64 ~arm ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="alpha amd64 ~arm ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
 IUSE="doc test"
 
 RDEPEND="dev-python/bottle[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2017-07-15 Thread Tobias Klausmann
commit: eb20c796d303051bdb6177171fca68aa6de17001
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:12 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb20c796

dev-python/pympler-0.5-r0: add amd64 keyword

Gentoo-Bug: 625048

 dev-python/pympler/pympler-0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pympler/pympler-0.5.ebuild 
b/dev-python/pympler/pympler-0.5.ebuild
index 0ff75f3d325..78907c0f513 100644
--- a/dev-python/pympler/pympler-0.5.ebuild
+++ b/dev-python/pympler/pympler-0.5.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha ~amd64 ~arm ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
 IUSE="doc test"
 
 RDEPEND="dev-python/bottle[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2017-07-15 Thread Sergei Trofimovich
commit: aa739884cdaa84b8dca89c773edab70b27691e74
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 15 09:01:22 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 15 09:43:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa739884

dev-python/pympler: ia64 stable, bug #625048

Package-Manager: Portage-2.3.6, Repoman-2.3.2
RepoMan-Options: --include-arches="ia64"

 dev-python/pympler/pympler-0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pympler/pympler-0.5.ebuild 
b/dev-python/pympler/pympler-0.5.ebuild
index e9bf81fe01b..0ff75f3d325 100644
--- a/dev-python/pympler/pympler-0.5.ebuild
+++ b/dev-python/pympler/pympler-0.5.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
 IUSE="doc test"
 
 RDEPEND="dev-python/bottle[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2017-05-02 Thread Zac Medico
commit: 6c53d943744dd2ea3c9371c802f32e0af82fbb11
Author: Zac Medico  gentoo  org>
AuthorDate: Wed May  3 00:29:29 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed May  3 00:32:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c53d943

dev-python/pympler: version bump to 0.5

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-python/pympler/Manifest   |  1 +
 dev-python/pympler/pympler-0.5.ebuild | 42 +++
 2 files changed, 43 insertions(+)

diff --git a/dev-python/pympler/Manifest b/dev-python/pympler/Manifest
index e669fc74562..97804750f47 100644
--- a/dev-python/pympler/Manifest
+++ b/dev-python/pympler/Manifest
@@ -1,3 +1,4 @@
 DIST Pympler-0.4.1.tar.gz 395535 SHA256 
6a8bfd2972c4ec34ac8750358515950be4a4ca13dfa6a05a9a22419786745f90 SHA512 
3f7e2d88ca431ae73cf49d5140c10de4eab10c1627cdacc12e216c89410add16cb5e1faedc484ea765e4b866b905a5379bb21e7d41b9b8d622c4ac7b1b16a8a3
 WHIRLPOOL 
4b35b554cabda8b9ab633409f1c91728956cad31c1a41d3b66a8d2cbf2e1283edd32017181d5f9c8bd66a1bac7ba398c292dd60fd9cdc268fec86222b4a790c8
 DIST Pympler-0.4.2.tar.gz 395765 SHA256 
3c3f9d8eb3dddf4f29c433433ea77c9c3f2f0dcc06575c0c2a9d81b2602893b2 SHA512 
ae6e7718ecf8e7bc46ce968dd3b57543c4a3e882a07d7cb68ee38e60debc157ce2410c66b23c14179c47fef1b89647886289d9e4fdfc5f9e9ecd87a052f204aa
 WHIRLPOOL 
cc1e0ddb1509d92f3cc44f8e09c84a4fdc59fb273d0d5c2e10c421c97d0b83468dd7ffbf8d9817a480683afefb0f7dcf79993aa4ec7a7fb6b1789fc655ecb9c6
 DIST pympler-0.4.3.tar.gz 259409 SHA256 
80dfbda9c9dc36d8cc6696b9f1066d4c6bdb87371f58fe7940fad8918b8c288f SHA512 
de4a36e8e5b639c1b78460677d821a5ad829c01a568496a5df4682ab32fea14e24c47260aed96c68722285e3fdb4b202348a7cbfcb95531ca2954bd8d5cebb68
 WHIRLPOOL 
21324bd5b30be363e4295e6191aa2bc884b97b4224623c019fe888f394bc5bca59391f69503fbb0c799f3e93b68f6920728843197a0fd8680ac975ec4b6234e4
+DIST pympler-0.5.tar.gz 263627 SHA256 
74d26dfb6f02777a5087be181ef7f8ae57625e7ec3ae41e2fdd24f31289e772e SHA512 
254b758df70bafe57f315a973de0caeef6cd616bd0cc7b4475c74c3a9a94f52b3ac3da3f073483db3560cd0060536c95ed1297007c24dfe8db89fd893ff1409c
 WHIRLPOOL 
fd32c60fd5152e527c2147dad569a1c1369e95c8c05aa67314fad6a09794ca694320ab481e38277c1bba66cb5929fd56099286428a6e12773ae8134fcd97649a

diff --git a/dev-python/pympler/pympler-0.5.ebuild 
b/dev-python/pympler/pympler-0.5.ebuild
new file mode 100644
index 000..e9bf81fe01b
--- /dev/null
+++ b/dev-python/pympler/pympler-0.5.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+MY_PN="Pympler"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Memory profiling for Python applications"
+HOMEPAGE="https://code.google.com/p/pympler/ 
https://pypi.python.org/pypi/Pympler https://github.com/pympler/pympler;
+SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+# The PyPi tarball is missing the documentation
+#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="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? ( ${RDEPEND} )"
+
+python_compile_all() {
+   if use doc; then
+   python_setup
+   sphinx-build -b html doc/{source,html} || die
+   fi
+}
+
+python_test() {
+   esetup.py try
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( doc/html/. )
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2017-05-02 Thread Zac Medico
commit: 894c243f616c899c57f93483a03b7bd90ed60daf
Author: Zac Medico  gentoo  org>
AuthorDate: Wed May  3 00:17:16 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed May  3 00:21:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=894c243f

dev-python/pympler: version bump to 0.4.3

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-python/pympler/Manifest |  1 +
 dev-python/pympler/pympler-0.4.3.ebuild | 53 +
 2 files changed, 54 insertions(+)

diff --git a/dev-python/pympler/Manifest b/dev-python/pympler/Manifest
index cd57e12d3b0..e669fc74562 100644
--- a/dev-python/pympler/Manifest
+++ b/dev-python/pympler/Manifest
@@ -1,2 +1,3 @@
 DIST Pympler-0.4.1.tar.gz 395535 SHA256 
6a8bfd2972c4ec34ac8750358515950be4a4ca13dfa6a05a9a22419786745f90 SHA512 
3f7e2d88ca431ae73cf49d5140c10de4eab10c1627cdacc12e216c89410add16cb5e1faedc484ea765e4b866b905a5379bb21e7d41b9b8d622c4ac7b1b16a8a3
 WHIRLPOOL 
4b35b554cabda8b9ab633409f1c91728956cad31c1a41d3b66a8d2cbf2e1283edd32017181d5f9c8bd66a1bac7ba398c292dd60fd9cdc268fec86222b4a790c8
 DIST Pympler-0.4.2.tar.gz 395765 SHA256 
3c3f9d8eb3dddf4f29c433433ea77c9c3f2f0dcc06575c0c2a9d81b2602893b2 SHA512 
ae6e7718ecf8e7bc46ce968dd3b57543c4a3e882a07d7cb68ee38e60debc157ce2410c66b23c14179c47fef1b89647886289d9e4fdfc5f9e9ecd87a052f204aa
 WHIRLPOOL 
cc1e0ddb1509d92f3cc44f8e09c84a4fdc59fb273d0d5c2e10c421c97d0b83468dd7ffbf8d9817a480683afefb0f7dcf79993aa4ec7a7fb6b1789fc655ecb9c6
+DIST pympler-0.4.3.tar.gz 259409 SHA256 
80dfbda9c9dc36d8cc6696b9f1066d4c6bdb87371f58fe7940fad8918b8c288f SHA512 
de4a36e8e5b639c1b78460677d821a5ad829c01a568496a5df4682ab32fea14e24c47260aed96c68722285e3fdb4b202348a7cbfcb95531ca2954bd8d5cebb68
 WHIRLPOOL 
21324bd5b30be363e4295e6191aa2bc884b97b4224623c019fe888f394bc5bca59391f69503fbb0c799f3e93b68f6920728843197a0fd8680ac975ec4b6234e4

diff --git a/dev-python/pympler/pympler-0.4.3.ebuild 
b/dev-python/pympler/pympler-0.4.3.ebuild
new file mode 100644
index 000..bac8394e16c
--- /dev/null
+++ b/dev-python/pympler/pympler-0.4.3.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+MY_PN="Pympler"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Memory profiling for Python applications"
+HOMEPAGE="https://code.google.com/p/pympler/ 
https://pypi.python.org/pypi/Pympler https://github.com/pympler/pympler;
+SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+# The PyPi tarball is missing the documentation
+#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="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? ( ${RDEPEND} )"
+
+python_prepare_all() {
+   rm pympler/util/bottle.py || die
+   sed \
+   -e '/import bottle/s:^.*$:import bottle:g' \
+   -i pympler/web.py || die
+   # test_flatsize and AsizeofTest always fail
+   sed '14,106d' -i test/asizeof/test_asizeof.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+   if use doc; then
+   python_setup
+   sphinx-build -b html doc/{source,html} || die
+   fi
+}
+
+python_test() {
+   # https://github.com/pympler/pympler/issues/22
+   esetup.py try
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( doc/html/. )
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2015-08-26 Thread Agostino Sarubbo
commit: 6e5b1f8cc10fb48240ca7f6d5fb2ec06f75faec4
Author: Agostino Sarubbo ago AT gentoo DOT org
AuthorDate: Wed Aug 26 10:35:52 2015 +
Commit: Agostino Sarubbo ago AT gentoo DOT org
CommitDate: Wed Aug 26 10:35:52 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e5b1f8c

dev-python/pympler: alpha/amd64/arm/ia64/ppc/ppc64/sparc/x86 stable, (ALLARCHES 
policy) wrt bug #557930

Package-Manager: portage-2.2.20.1

 dev-python/pympler/pympler-0.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pympler/pympler-0.4.1.ebuild 
b/dev-python/pympler/pympler-0.4.1.ebuild
index 9cb7874..b013c70 100644
--- a/dev-python/pympler/pympler-0.4.1.ebuild
+++ b/dev-python/pympler/pympler-0.4.1.ebuild
@@ -17,7 +17,7 @@ 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
+KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux
 IUSE=doc test
 
 RDEPEND=dev-python/bottle[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2015-08-26 Thread Justin Lecher
commit: 93400979021edb55a914fbd351e5b15af09ecd51
Author: Justin Lecher jlec AT gentoo DOT org
AuthorDate: Wed Aug 26 11:01:47 2015 +
Commit: Justin Lecher jlec AT gentoo DOT org
CommitDate: Wed Aug 26 11:01:54 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93400979

dev-python/pympler: Drop old

Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher jlec AT gentoo.org

 dev-python/pympler/Manifest |  1 -
 dev-python/pympler/pympler-0.3.1.ebuild | 38 -
 2 files changed, 39 deletions(-)

diff --git a/dev-python/pympler/Manifest b/dev-python/pympler/Manifest
index 0812003..cd57e12 100644
--- a/dev-python/pympler/Manifest
+++ b/dev-python/pympler/Manifest
@@ -1,3 +1,2 @@
-DIST Pympler-0.3.1.tar.gz 382158 SHA256 
8cb170fddfe592342856590e2239e8c20ac61eacf18bc4f65a95ccaf74475e3e SHA512 
0863f754edcd80375128f54d443974ef9933c203658d3215b8e98b53c8a1a36db199e309412c5b9f2d886e515ddd4d93c65035feb2c2fcaee4d6dc549e0e0b3c
 WHIRLPOOL 
9e2c6a6c5c28040a4e3b712cf6ec58a8b0040a5092498e4d1958684966ce7d42b3de5a25588a6a0b62a27f24ef8e834bd13189bbb75b5a8b1958802e31f4adbc
 DIST Pympler-0.4.1.tar.gz 395535 SHA256 
6a8bfd2972c4ec34ac8750358515950be4a4ca13dfa6a05a9a22419786745f90 SHA512 
3f7e2d88ca431ae73cf49d5140c10de4eab10c1627cdacc12e216c89410add16cb5e1faedc484ea765e4b866b905a5379bb21e7d41b9b8d622c4ac7b1b16a8a3
 WHIRLPOOL 
4b35b554cabda8b9ab633409f1c91728956cad31c1a41d3b66a8d2cbf2e1283edd32017181d5f9c8bd66a1bac7ba398c292dd60fd9cdc268fec86222b4a790c8
 DIST Pympler-0.4.2.tar.gz 395765 SHA256 
3c3f9d8eb3dddf4f29c433433ea77c9c3f2f0dcc06575c0c2a9d81b2602893b2 SHA512 
ae6e7718ecf8e7bc46ce968dd3b57543c4a3e882a07d7cb68ee38e60debc157ce2410c66b23c14179c47fef1b89647886289d9e4fdfc5f9e9ecd87a052f204aa
 WHIRLPOOL 
cc1e0ddb1509d92f3cc44f8e09c84a4fdc59fb273d0d5c2e10c421c97d0b83468dd7ffbf8d9817a480683afefb0f7dcf79993aa4ec7a7fb6b1789fc655ecb9c6

diff --git a/dev-python/pympler/pympler-0.3.1.ebuild 
b/dev-python/pympler/pympler-0.3.1.ebuild
deleted file mode 100644
index 15a4974..000
--- a/dev-python/pympler/pympler-0.3.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3} )
-
-inherit distutils-r1
-
-MY_PN=Pympler
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION=Memory profiling for Python applications
-HOMEPAGE=https://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=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
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pympler/

2015-08-16 Thread Ian Delaney
commit: d4514e9c0d454556aec725a205773121880d2218
Author: Ian Delaney idella4 AT gentoo DOT org
AuthorDate: Sun Aug 16 14:31:41 2015 +
Commit: Ian Delaney idella4 AT gentoo DOT org
CommitDate: Sun Aug 16 14:33:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4514e9c

dev-python/pympler: bump, rm old wrt bug #556626

Package-Manager: portage-2.2.20

 dev-python/pympler/Manifest | 2 +-
 dev-python/pympler/{pympler-0.4.ebuild = pympler-0.4.2.ebuild} | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/pympler/Manifest b/dev-python/pympler/Manifest
index 9a616b1..0812003 100644
--- a/dev-python/pympler/Manifest
+++ b/dev-python/pympler/Manifest
@@ -1,3 +1,3 @@
 DIST Pympler-0.3.1.tar.gz 382158 SHA256 
8cb170fddfe592342856590e2239e8c20ac61eacf18bc4f65a95ccaf74475e3e SHA512 
0863f754edcd80375128f54d443974ef9933c203658d3215b8e98b53c8a1a36db199e309412c5b9f2d886e515ddd4d93c65035feb2c2fcaee4d6dc549e0e0b3c
 WHIRLPOOL 
9e2c6a6c5c28040a4e3b712cf6ec58a8b0040a5092498e4d1958684966ce7d42b3de5a25588a6a0b62a27f24ef8e834bd13189bbb75b5a8b1958802e31f4adbc
 DIST Pympler-0.4.1.tar.gz 395535 SHA256 
6a8bfd2972c4ec34ac8750358515950be4a4ca13dfa6a05a9a22419786745f90 SHA512 
3f7e2d88ca431ae73cf49d5140c10de4eab10c1627cdacc12e216c89410add16cb5e1faedc484ea765e4b866b905a5379bb21e7d41b9b8d622c4ac7b1b16a8a3
 WHIRLPOOL 
4b35b554cabda8b9ab633409f1c91728956cad31c1a41d3b66a8d2cbf2e1283edd32017181d5f9c8bd66a1bac7ba398c292dd60fd9cdc268fec86222b4a790c8
-DIST Pympler-0.4.tar.gz 476969 SHA256 
b280480502df658b18cb6310d2c744fabf05d4c518f873377884b4d4b5d2992d SHA512 
14d5f7b6ecfeb81fb89f0e4e231aedd8effaad079742d75904b4ae6a5840f273bb76b565cb075b1d691b84eb878f0e39f627a51e9982deab9d147b0841baf66c
 WHIRLPOOL 
3a75aaf8ce974aa03d2638ae9c15fd7e3f23bd25d31a6a244bed6fd8f80eb9aebcedf2f3d2a9015bb15fbe4ccd40e8eb8f04d43977b8d901e4e28fdeec06c6ad
+DIST Pympler-0.4.2.tar.gz 395765 SHA256 
3c3f9d8eb3dddf4f29c433433ea77c9c3f2f0dcc06575c0c2a9d81b2602893b2 SHA512 
ae6e7718ecf8e7bc46ce968dd3b57543c4a3e882a07d7cb68ee38e60debc157ce2410c66b23c14179c47fef1b89647886289d9e4fdfc5f9e9ecd87a052f204aa
 WHIRLPOOL 
cc1e0ddb1509d92f3cc44f8e09c84a4fdc59fb273d0d5c2e10c421c97d0b83468dd7ffbf8d9817a480683afefb0f7dcf79993aa4ec7a7fb6b1789fc655ecb9c6

diff --git a/dev-python/pympler/pympler-0.4.ebuild 
b/dev-python/pympler/pympler-0.4.2.ebuild
similarity index 95%
rename from dev-python/pympler/pympler-0.4.ebuild
rename to dev-python/pympler/pympler-0.4.2.ebuild
index d2f5826..4261ca3 100644
--- a/dev-python/pympler/pympler-0.4.ebuild
+++ b/dev-python/pympler/pympler-0.4.2.ebuild
@@ -34,6 +34,7 @@ python_prepare_all() {
 }
 
 python_test() {
+   # https://github.com/pympler/pympler/issues/22
esetup.py try
 }