Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/line_profiler/
Date: Mon, 06 Feb 2017 08:09:56
Message-Id: 1486368493.c5749ef3cce4c04c359df5bfaf0dddec71b21b00.soap@gentoo
1 commit: c5749ef3cce4c04c359df5bfaf0dddec71b21b00
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Mon Feb 6 07:22:39 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 6 08:08:13 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5749ef3
7
8 dev-python/line_profiler: Version bump to 2.0
9
10 Package-Manager: portage-2.3.3
11 Closes: https://github.com/gentoo/gentoo/pull/3784
12
13 dev-python/line_profiler/Manifest | 1 +
14 dev-python/line_profiler/line_profiler-2.0.ebuild | 29 +++++++++++++++++++++++
15 2 files changed, 30 insertions(+)
16
17 diff --git a/dev-python/line_profiler/Manifest b/dev-python/line_profiler/Manifest
18 index abe5549..a24fecd 100644
19 --- a/dev-python/line_profiler/Manifest
20 +++ b/dev-python/line_profiler/Manifest
21 @@ -1 +1,2 @@
22 DIST line_profiler-1.0.tar.gz 65862 SHA256 a9e0c9ffa814f1215107c86c890afa8e63bec5a37d951f6f9d3668c1df2b1900 SHA512 15dd7ee10951287a5030eaff28e729e82094ec41d8e8dec803d5e44c6b9036ecbf1198365ef43c1fdd28451dec260c6491d118f1762d99fe037bb85eb7908dda WHIRLPOOL 1fd56ea4777a3c569807a124c708018fc77e68521d1f1ecdb13c343ddad3fcd881353cd71a0af36d06a12f1dd17be0f2731040fca5e827a4936298057dabf917
23 +DIST line_profiler-2.0.tar.gz 68478 SHA256 739f8ad0e4bcd0cb82e99afc09e00a0351234f6b3f0b1f7f0090a8a2fbbf8381 SHA512 c0335fc69fb47c150fa5555af4f7fdf4b172ca12ee6512e04ba854c4a81f3e6ee5594e484d11c8ea7e9e8048e3f3b8661db52332d4ac645195a0e050acea4ecb WHIRLPOOL 6f4a3816fb22c86fe1c691a3e949be41da7680055db5c0909dbfb9af4052cfa50640eca43e0e918e903c23c9e6b8858ebff76e4fa21d8648084ade74f45a2915
24
25 diff --git a/dev-python/line_profiler/line_profiler-2.0.ebuild b/dev-python/line_profiler/line_profiler-2.0.ebuild
26 new file mode 100644
27 index 00000000..638f08c
28 --- /dev/null
29 +++ b/dev-python/line_profiler/line_profiler-2.0.ebuild
30 @@ -0,0 +1,29 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{4,5} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Line-by-line profiler"
42 +HOMEPAGE="https://github.com/rkern/line_profiler"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +KEYWORDS="~amd64"
45 +
46 +SLOT="0"
47 +LICENSE="BSD"
48 +KEYWORDS="~amd64 ~x86"
49 +IUSE="test"
50 +
51 +RDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
52 +DEPEND="${RDEPEND}
53 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )
54 + "
55 +
56 +python_test() {
57 + "${EPYTHON}" -m unittest discover -v "${S}"/tests/ \
58 + || die "Tests failed with ${EPYTHON}"
59 +}