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/requests_download/
Date: Sat, 02 Jul 2022 19:26:08
Message-Id: 1656789952.2716d187ffd5dfcf14a8fefd06801e5a4815a11d.mgorny@gentoo
1 commit: 2716d187ffd5dfcf14a8fefd06801e5a4815a11d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 19:21:57 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 19:25:52 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2716d187
7
8 dev-python/requests_download: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../requests_download-0.1.2.ebuild | 30 ----------------------
13 1 file changed, 30 deletions(-)
14
15 diff --git a/dev-python/requests_download/requests_download-0.1.2.ebuild b/dev-python/requests_download/requests_download-0.1.2.ebuild
16 deleted file mode 100644
17 index 8ee04163392e..000000000000
18 --- a/dev-python/requests_download/requests_download-0.1.2.ebuild
19 +++ /dev/null
20 @@ -1,30 +0,0 @@
21 -# Copyright 2019-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -PYTHON_COMPAT=( python3_{7..10} pypy3 )
26 -
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="A convenient function to download to a file using requests"
30 -HOMEPAGE="https://github.com/takluyver/requests_download https://pypi.org/project/requests_download/"
31 -SRC_URI="https://github.com/takluyver/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~mips ~x86"
36 -
37 -RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
38 -BDEPEND="${RDEPEND}"
39 -
40 -# there are no tests upstream
41 -RESTRICT="test"
42 -
43 -DOCS=( README.rst )
44 -
45 -python_prepare_all() {
46 - printf -- "from setuptools import setup\nsetup(name='%s',version='%s',py_modules=['%s'])" \
47 - "${PN}" "${PV}" "${PN}" > setup.py || die
48 -
49 - distutils-r1_python_prepare_all
50 -}