Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wrapt/
Date: Wed, 29 Jan 2020 19:53:25
Message-Id: 1580327588.41e267420d69b0600dfcc6bb74fb92943fd60bcd.chutzpah@gentoo
1 commit: 41e267420d69b0600dfcc6bb74fb92943fd60bcd
2 Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
3 AuthorDate: Tue Jan 28 21:37:23 2020 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 29 19:53:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41e26742
7
8 dev-python/wrapt-1.11.2-r1: Revbump, add py38, use new eclass funcs
9
10 Copyright: Sony Interactive Entertainment Inc.
11 Package-Manager: Portage-2.3.86, Repoman-2.3.20
12 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
13
14 dev-python/wrapt/wrapt-1.11.2-r1.ebuild | 27 +++++++++++++++++++++++++++
15 1 file changed, 27 insertions(+)
16
17 diff --git a/dev-python/wrapt/wrapt-1.11.2-r1.ebuild b/dev-python/wrapt/wrapt-1.11.2-r1.ebuild
18 new file mode 100644
19 index 00000000000..46b0288179f
20 --- /dev/null
21 +++ b/dev-python/wrapt/wrapt-1.11.2-r1.ebuild
22 @@ -0,0 +1,27 @@
23 +# Copyright 1999-2020 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +DISTUTILS_USE_SETUPTOOLS=no
29 +PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
30 +
31 +inherit distutils-r1
32 +
33 +DESCRIPTION="Module for decorators, wrappers and monkey patching"
34 +HOMEPAGE="https://github.com/GrahamDumpleton/wrapt"
35 +SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
36 +
37 +LICENSE="BSD"
38 +SLOT="0"
39 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
40 +
41 +distutils_enable_tests pytest
42 +distutils_enable_sphinx docs \
43 + dev-python/sphinx_rtd_theme
44 +
45 +python_compile() {
46 + local WRAPT_EXTENSIONS=true
47 +
48 + distutils-r1_python_compile
49 +}