Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wrapt/
Date: Wed, 13 Oct 2021 07:20:33
Message-Id: 1634109624.e31f34ed85fcb1f00c710c2e2ecf1d276b08af1f.mgorny@gentoo
1 commit: e31f34ed85fcb1f00c710c2e2ecf1d276b08af1f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 13 07:06:31 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 13 07:20:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e31f34ed
7
8 dev-python/wrapt: Bump to 1.13.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/wrapt/Manifest | 1 +
13 dev-python/wrapt/wrapt-1.13.2.ebuild | 24 ++++++++++++++++++++++++
14 2 files changed, 25 insertions(+)
15
16 diff --git a/dev-python/wrapt/Manifest b/dev-python/wrapt/Manifest
17 index ab3ff40f1be..f584c001681 100644
18 --- a/dev-python/wrapt/Manifest
19 +++ b/dev-python/wrapt/Manifest
20 @@ -1,2 +1,3 @@
21 DIST wrapt-1.12.1.tar.gz 126750 BLAKE2B 92aba2d400aa626445be68fdda2831132e1c341a2f20065b3d7071a2ebc174cb9de7e6a20a8375360cf7df181881fd20b7b2f70dbfdf533e8823982eeaa722f5 SHA512 33e964cb3aa2437bc7d084a98f622f7c5c8c719d97806796ae0317d35130bdb2679a9dd87be7077e2cae1eb32b65d152349fa7cc138cb392d5999cbfdcecc9ac
22 DIST wrapt-1.13.1.tar.gz 130138 BLAKE2B bc9a0238a4e16f36e83a6fd81e94d5a257e27e0d5864dc98ba4036f16c3cd92b971e9eddf8193afd13b5afe82ac4f83d50e66f8bedfcd0068ce53f162f4f7ac5 SHA512 a5d7d9013e975261608563fc86b92dd9d455b9efe5f5a79800d317438317f86d59b5678cd4c053832aad2e35dfc08d75b16ed456564cfcbb6541a12a1741352f
23 +DIST wrapt-1.13.2.tar.gz 130624 BLAKE2B 7ad74653208042326630ae4464494fcdd5299b35a42d495a16a3cbd68bb60fe5ea17f3e95eac85d98142fe339a593a8cda7e3182ce2a6e96f6ba2bb204a1fc46 SHA512 14648465745af7972ffd449783a24a4b5bf8187cbee517d3427825409bd5d073e3153a0c61f5583b84fc6ca2c48479ebf112977ce340369019a617559d09dfc0
24
25 diff --git a/dev-python/wrapt/wrapt-1.13.2.ebuild b/dev-python/wrapt/wrapt-1.13.2.ebuild
26 new file mode 100644
27 index 00000000000..01eb043f35e
28 --- /dev/null
29 +++ b/dev-python/wrapt/wrapt-1.13.2.ebuild
30 @@ -0,0 +1,24 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Module for decorators, wrappers and monkey patching"
40 +HOMEPAGE="https://github.com/GrahamDumpleton/wrapt"
41 +SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
46 +
47 +distutils_enable_tests pytest
48 +distutils_enable_sphinx docs dev-python/sphinx_rtd_theme
49 +
50 +python_compile() {
51 + local WRAPT_EXTENSIONS=true
52 +
53 + distutils-r1_python_compile
54 +}