Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/aiosqlite/
Date: Wed, 26 May 2021 13:42:52
Message-Id: 1622028213.22cf9143c404d3737d343b7edd50db142d7f838a.andrewammerlaan@gentoo
1 commit: 22cf9143c404d3737d343b7edd50db142d7f838a
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Wed May 26 11:23:33 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Wed May 26 11:23:33 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=22cf9143
7
8 dev-python/aiosqlite: add missing runtime dep
9
10 Closes: https://bugs.gentoo.org/792174
11 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
12
13 dev-python/aiosqlite/Manifest | 1 -
14 dev-python/aiosqlite/aiosqlite-0.16.0.ebuild | 28 -----------------------
15 dev-python/aiosqlite/aiosqlite-0.17.0-r1.ebuild | 30 +++++++++++++++++++++++++
16 dev-python/aiosqlite/aiosqlite-0.17.0.ebuild | 28 -----------------------
17 4 files changed, 30 insertions(+), 57 deletions(-)
18
19 diff --git a/dev-python/aiosqlite/Manifest b/dev-python/aiosqlite/Manifest
20 index 442711215..fb7002456 100644
21 --- a/dev-python/aiosqlite/Manifest
22 +++ b/dev-python/aiosqlite/Manifest
23 @@ -1,2 +1 @@
24 -DIST aiosqlite-0.16.0.tar.gz 25690 BLAKE2B be06e8ebea9f3e0c16649fbaaf86317584bd6329e5d890aa3cac432d54122c5441461a40f3690e59453a573bffc56277338391b466abaf121a28c2d71929687c SHA512 f554293663b15303f0aea0d1c10730d15766a30efa0538501a4f08acaccf8807bad78382d5c8a034cdffcfbceb42cbbe4eecdb97e2ef97c5143ab374e9b314b4
25 DIST aiosqlite-0.17.0.tar.gz 25941 BLAKE2B 869d165bc8c791cb94159f6508f5113d915f5531117d0d79ac1f297de16cbb78574a7eaafc1bceccc9e4397f88f490b90d49becb4b7cc2c0d51e14f0afd7561b SHA512 50f9965ef7dafe91a2f41dc41489395e437080aa4b7853800d806d21f4f8042d92ff6cfd2aeadefa7ca5e4debd14f39d93ca28c89f3116b3b61b2e8829533e6e
26
27 diff --git a/dev-python/aiosqlite/aiosqlite-0.16.0.ebuild b/dev-python/aiosqlite/aiosqlite-0.16.0.ebuild
28 deleted file mode 100644
29 index 1d55ccc84..000000000
30 --- a/dev-python/aiosqlite/aiosqlite-0.16.0.ebuild
31 +++ /dev/null
32 @@ -1,28 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -PYTHON_COMPAT=( python3_{7,8,9} )
39 -DISTUTILS_USE_SETUPTOOLS=no
40 -
41 -inherit distutils-r1
42 -
43 -DESCRIPTION="asyncio bridge to the standard sqlite3 module"
44 -HOMEPAGE="https://github.com/jreese/aiosqlite"
45 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~x86"
50 -
51 -IUSE="test"
52 -RESTRICT="!test? ( test )"
53 -
54 -BDEPEND="test? (
55 - dev-python/aiounittest[${PYTHON_USEDEP}]
56 -)"
57 -
58 -distutils_enable_tests unittest
59 -# TypeError: add_source_parser() takes 2 positional arguments but 3 were given
60 -#distutils_enable_sphinx docs
61
62 diff --git a/dev-python/aiosqlite/aiosqlite-0.17.0-r1.ebuild b/dev-python/aiosqlite/aiosqlite-0.17.0-r1.ebuild
63 new file mode 100644
64 index 000000000..9e67528f4
65 --- /dev/null
66 +++ b/dev-python/aiosqlite/aiosqlite-0.17.0-r1.ebuild
67 @@ -0,0 +1,30 @@
68 +# Copyright 1999-2021 Gentoo Authors
69 +# Distributed under the terms of the GNU General Public License v2
70 +
71 +EAPI=7
72 +
73 +PYTHON_COMPAT=( python3_{7..9} )
74 +DISTUTILS_USE_SETUPTOOLS="pyproject.toml"
75 +
76 +inherit distutils-r1
77 +
78 +DESCRIPTION="asyncio bridge to the standard sqlite3 module"
79 +HOMEPAGE="
80 + https://aiosqlite.omnilib.dev
81 + https://pypi.org/project/aiosqlite
82 + https://github.com/jreese/aiosqlite
83 +"
84 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
85 +
86 +LICENSE="MIT"
87 +SLOT="0"
88 +KEYWORDS="~amd64 ~x86"
89 +
90 +RDEPEND="dev-python/typing-extensions[${PYTHON_USEDEP}]"
91 +BDEPEND="test? (
92 + dev-python/aiounittest[${PYTHON_USEDEP}]
93 +)"
94 +
95 +distutils_enable_tests unittest
96 +# AttributeError: 'str' object has no attribute 'supported'
97 +#distutils_enable_sphinx docs dev-python/m2r
98
99 diff --git a/dev-python/aiosqlite/aiosqlite-0.17.0.ebuild b/dev-python/aiosqlite/aiosqlite-0.17.0.ebuild
100 deleted file mode 100644
101 index 1d55ccc84..000000000
102 --- a/dev-python/aiosqlite/aiosqlite-0.17.0.ebuild
103 +++ /dev/null
104 @@ -1,28 +0,0 @@
105 -# Copyright 1999-2020 Gentoo Authors
106 -# Distributed under the terms of the GNU General Public License v2
107 -
108 -EAPI=7
109 -
110 -PYTHON_COMPAT=( python3_{7,8,9} )
111 -DISTUTILS_USE_SETUPTOOLS=no
112 -
113 -inherit distutils-r1
114 -
115 -DESCRIPTION="asyncio bridge to the standard sqlite3 module"
116 -HOMEPAGE="https://github.com/jreese/aiosqlite"
117 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
118 -
119 -LICENSE="MIT"
120 -SLOT="0"
121 -KEYWORDS="~amd64 ~x86"
122 -
123 -IUSE="test"
124 -RESTRICT="!test? ( test )"
125 -
126 -BDEPEND="test? (
127 - dev-python/aiounittest[${PYTHON_USEDEP}]
128 -)"
129 -
130 -distutils_enable_tests unittest
131 -# TypeError: add_source_parser() takes 2 positional arguments but 3 were given
132 -#distutils_enable_sphinx docs