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/uvloop/
Date: Thu, 29 Jul 2021 18:47:06
Message-Id: 1627584418.d94ac2090b95fbc715c771e779a599bed989d58b.mgorny@gentoo
1 commit: d94ac2090b95fbc715c771e779a599bed989d58b
2 Author: Arthur Zamarin <arthurzam <AT> gmail <DOT> com>
3 AuthorDate: Sat Jul 24 17:07:42 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 29 18:46:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d94ac209
7
8 dev-python/uvloop: improve setup.cfg append
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/21770
12 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
13
14 dev-python/uvloop/uvloop-0.15.3-r1.ebuild | 8 ++++----
15 dev-python/uvloop/uvloop-0.15.3.ebuild | 8 ++++----
16 2 files changed, 8 insertions(+), 8 deletions(-)
17
18 diff --git a/dev-python/uvloop/uvloop-0.15.3-r1.ebuild b/dev-python/uvloop/uvloop-0.15.3-r1.ebuild
19 index bd6a917e995..7473a1b33ff 100644
20 --- a/dev-python/uvloop/uvloop-0.15.3-r1.ebuild
21 +++ b/dev-python/uvloop/uvloop-0.15.3-r1.ebuild
22 @@ -37,10 +37,10 @@ PATCHES=(
23 )
24
25 python_prepare_all() {
26 - cat <<EOF >> setup.cfg || die
27 -[build_ext]
28 -use-system-libuv=1
29 -EOF
30 + cat <<-EOF >> setup.cfg || die
31 + [build_ext]
32 + use_system_libuv=1
33 + EOF
34
35 # flake8 only
36 rm tests/test_sourcecode.py || die
37
38 diff --git a/dev-python/uvloop/uvloop-0.15.3.ebuild b/dev-python/uvloop/uvloop-0.15.3.ebuild
39 index 652ec1568ef..3ff9f3019ff 100644
40 --- a/dev-python/uvloop/uvloop-0.15.3.ebuild
41 +++ b/dev-python/uvloop/uvloop-0.15.3.ebuild
42 @@ -32,10 +32,10 @@ BDEPEND="
43 distutils_enable_tests setup.py
44
45 python_prepare_all() {
46 - cat <<EOF >> setup.cfg || die
47 -[build_ext]
48 -use-system-libuv=1
49 -EOF
50 + cat <<-EOF >> setup.cfg || die
51 + [build_ext]
52 + use_system_libuv=1
53 + EOF
54
55 # flake8 only
56 rm tests/test_sourcecode.py || die