public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/
@ 2019-12-07 21:55 Patrick McLean
  0 siblings, 0 replies; 14+ messages in thread
From: Patrick McLean @ 2019-12-07 21:55 UTC (permalink / raw
  To: gentoo-commits

commit:     c8b4ce9747e3f7e2edb14ed6fb80d1104c72e6f1
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Sat Dec  7 20:48:19 2019 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Sat Dec  7 21:55:29 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8b4ce97

dev-python/requests_download: New package

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 dev-python/requests_download/Manifest              |  1 +
 dev-python/requests_download/metadata.xml          | 12 +++++++++
 .../requests_download-0.1.2.ebuild                 | 30 ++++++++++++++++++++++
 3 files changed, 43 insertions(+)

diff --git a/dev-python/requests_download/Manifest b/dev-python/requests_download/Manifest
new file mode 100644
index 00000000000..8951ccff9fd
--- /dev/null
+++ b/dev-python/requests_download/Manifest
@@ -0,0 +1 @@
+DIST requests_download-0.1.2.tar.gz 2584 BLAKE2B c6f2eb7a182e0f42ccb7b603dec47a077b1b946bfa93968972dce5267c7c51fa8c4158e15cd35621cbe229e12f6644db9734e52439796d8d8411be16a38e1e9a SHA512 99d4b275200c88befd2730d17a3329c8cbb155fa5cf9600a7466e8ab109f999a9fc9b8c668aa3b389bc2a3deb33b8a3fd390270d71f04bb0a8f998da67cfde82

diff --git a/dev-python/requests_download/metadata.xml b/dev-python/requests_download/metadata.xml
new file mode 100644
index 00000000000..2d3a29feeb4
--- /dev/null
+++ b/dev-python/requests_download/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>chutzpah@gentoo.org</email>
+    <name>Patrick McLean</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="pypi">requests_download</remote-id>
+    <remote-id type="github">takluyver/requests_download</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-python/requests_download/requests_download-0.1.2.ebuild b/dev-python/requests_download/requests_download-0.1.2.ebuild
new file mode 100644
index 00000000000..231d3877ce3
--- /dev/null
+++ b/dev-python/requests_download/requests_download-0.1.2.ebuild
@@ -0,0 +1,30 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{5,6,7,8} pypy{,3} )
+
+inherit distutils-r1
+
+DESCRIPTION="A convenient function to download to a file using requests"
+HOMEPAGE="https://github.com/takluyver/requests_download https://pypi.org/project/requests_download/"
+SRC_URI="https://github.com/takluyver/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
+BDEPEND="${RDEPEND}"
+
+# there are no tests upstream
+RESTRICT="test"
+
+DOCS=( README.rst )
+
+python_prepare_all() {
+	printf -- "from setuptools import setup\nsetup(name='%s',version='%s',py_modules=['%s'])" \
+		"${PN}" "${PV}" "${PN}" > setup.py || die
+
+	distutils-r1_python_prepare_all
+}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/
@ 2020-02-05 21:21 Michał Górny
  0 siblings, 0 replies; 14+ messages in thread
From: Michał Górny @ 2020-02-05 21:21 UTC (permalink / raw
  To: gentoo-commits

commit:     4bd71f84c47b77b80735cb31742489f37989d731
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  5 21:03:01 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb  5 21:21:38 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bd71f84

dev-python/requests_download: Remove py2

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/requests_download/requests_download-0.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/requests_download/requests_download-0.1.2.ebuild b/dev-python/requests_download/requests_download-0.1.2.ebuild
index 5fbed496887..a4eaf50913d 100644
--- a/dev-python/requests_download/requests_download-0.1.2.ebuild
+++ b/dev-python/requests_download/requests_download-0.1.2.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 )
+PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
 
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/
@ 2020-12-15  6:44 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2020-12-15  6:44 UTC (permalink / raw
  To: gentoo-commits

commit:     53db3fc5765d760db44376042ed5f1d6e55a225e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 15 06:44:00 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 15 06:44:00 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53db3fc5

dev-python/requests_download: mark ALLARCHES

Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/requests_download/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/requests_download/metadata.xml b/dev-python/requests_download/metadata.xml
index 2d3a29feeb4..0239f8e8d29 100644
--- a/dev-python/requests_download/metadata.xml
+++ b/dev-python/requests_download/metadata.xml
@@ -5,6 +5,7 @@
     <email>chutzpah@gentoo.org</email>
     <name>Patrick McLean</name>
   </maintainer>
+  <stabilize-allarches/>
   <upstream>
     <remote-id type="pypi">requests_download</remote-id>
     <remote-id type="github">takluyver/requests_download</remote-id>


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/
@ 2020-12-15  6:44 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2020-12-15  6:44 UTC (permalink / raw
  To: gentoo-commits

commit:     cb94e0046e360e122a3f98b628f0d9f01263113f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 15 06:44:38 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 15 06:44:38 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb94e004

dev-python/requests_download: Stabilize 0.1.2 ALLARCHES, bug 758215

Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/requests_download/requests_download-0.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/requests_download/requests_download-0.1.2.ebuild b/dev-python/requests_download/requests_download-0.1.2.ebuild
index a4eaf50913d..89b087448dc 100644
--- a/dev-python/requests_download/requests_download-0.1.2.ebuild
+++ b/dev-python/requests_download/requests_download-0.1.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/takluyver/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
 BDEPEND="${RDEPEND}"


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/
@ 2021-05-24 18:46 Patrick McLean
  0 siblings, 0 replies; 14+ messages in thread
From: Patrick McLean @ 2021-05-24 18:46 UTC (permalink / raw
  To: gentoo-commits

commit:     48d62fff7c04663bcabca7e9ee209638278321cd
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Mon May 24 18:45:37 2021 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Mon May 24 18:45:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48d62fff

dev-python/requests_download-0.1.2: Add py39 and py310

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 dev-python/requests_download/requests_download-0.1.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/requests_download/requests_download-0.1.2.ebuild b/dev-python/requests_download/requests_download-0.1.2.ebuild
index abb6b24f1a7..dbc6a4417f8 100644
--- a/dev-python/requests_download/requests_download-0.1.2.ebuild
+++ b/dev-python/requests_download/requests_download-0.1.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{7,8} pypy3 )
+PYTHON_COMPAT=( python3_{7..10} pypy3 )
 
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/
@ 2022-01-17  5:33 Joshua Kinard
  0 siblings, 0 replies; 14+ messages in thread
From: Joshua Kinard @ 2022-01-17  5:33 UTC (permalink / raw
  To: gentoo-commits

commit:     6bf37228d1aa0fb5778c61e37d8f4a1c96f44c5c
Author:     Joshua Kinard <kumba <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 17 05:32:51 2022 +0000
Commit:     Joshua Kinard <kumba <AT> gentoo <DOT> org>
CommitDate: Mon Jan 17 05:32:51 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bf37228

dev-python/requests_download: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard <kumba <AT> gentoo.org>
Package-Manager: Portage-3.0.30, Repoman-3.0.3

 dev-python/requests_download/requests_download-0.1.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/requests_download/requests_download-0.1.2.ebuild b/dev-python/requests_download/requests_download-0.1.2.ebuild
index dbc6a4417f86..8ee04163392e 100644
--- a/dev-python/requests_download/requests_download-0.1.2.ebuild
+++ b/dev-python/requests_download/requests_download-0.1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/takluyver/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 ~mips ~x86"
 
 RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
 BDEPEND="${RDEPEND}"


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/
@ 2022-05-29 18:53 Arthur Zamarin
  0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2022-05-29 18:53 UTC (permalink / raw
  To: gentoo-commits

commit:     e11dc8047a0775289d57a11160971079e512a033
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun May 29 18:51:27 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun May 29 18:53:00 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e11dc804

dev-python/requests_download: EAPI=8, Use PEP517 flit

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 .../requests_download-0.1.2-r1.ebuild              | 25 ++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/dev-python/requests_download/requests_download-0.1.2-r1.ebuild b/dev-python/requests_download/requests_download-0.1.2-r1.ebuild
new file mode 100644
index 000000000000..aeaf9ada1e76
--- /dev/null
+++ b/dev-python/requests_download/requests_download-0.1.2-r1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 2019-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A convenient function to download to a file using requests"
+HOMEPAGE="https://github.com/takluyver/requests_download https://pypi.org/project/requests_download/"
+SRC_URI="https://github.com/takluyver/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~mips ~x86"
+
+RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
+BDEPEND="${RDEPEND}"
+
+# there are no tests upstream
+RESTRICT="test"
+
+DOCS=( README.rst )


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/
@ 2022-05-29 18:53 Arthur Zamarin
  0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2022-05-29 18:53 UTC (permalink / raw
  To: gentoo-commits

commit:     9894afbc3fed9c43a0e26398715935425ad4ab0c
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun May 29 18:51:56 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun May 29 18:53:00 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9894afbc

dev-python/requests_download: enable py3.11

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/requests_download/requests_download-0.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/requests_download/requests_download-0.1.2-r1.ebuild b/dev-python/requests_download/requests_download-0.1.2-r1.ebuild
index aeaf9ada1e76..b9bb4886b279 100644
--- a/dev-python/requests_download/requests_download-0.1.2-r1.ebuild
+++ b/dev-python/requests_download/requests_download-0.1.2-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
 
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/
@ 2022-07-02 18:18 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2022-07-02 18:18 UTC (permalink / raw
  To: gentoo-commits

commit:     c9266a7a745729e54d4055624926726702861023
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  2 18:16:21 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul  2 18:16:21 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9266a7a

dev-python/requests_download: Stabilize 0.1.2-r1 ALLARCHES, #855767

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/requests_download/requests_download-0.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/requests_download/requests_download-0.1.2-r1.ebuild b/dev-python/requests_download/requests_download-0.1.2-r1.ebuild
index b9bb4886b279..10fe3377e15f 100644
--- a/dev-python/requests_download/requests_download-0.1.2-r1.ebuild
+++ b/dev-python/requests_download/requests_download-0.1.2-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/takluyver/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ~x86"
+KEYWORDS="amd64 ~mips ~x86"
 
 RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
 BDEPEND="${RDEPEND}"


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/
@ 2022-07-02 19:26 Michał Górny
  0 siblings, 0 replies; 14+ messages in thread
From: Michał Górny @ 2022-07-02 19:26 UTC (permalink / raw
  To: gentoo-commits

commit:     2716d187ffd5dfcf14a8fefd06801e5a4815a11d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  2 19:21:57 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul  2 19:25:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2716d187

dev-python/requests_download: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../requests_download-0.1.2.ebuild                 | 30 ----------------------
 1 file changed, 30 deletions(-)

diff --git a/dev-python/requests_download/requests_download-0.1.2.ebuild b/dev-python/requests_download/requests_download-0.1.2.ebuild
deleted file mode 100644
index 8ee04163392e..000000000000
--- a/dev-python/requests_download/requests_download-0.1.2.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 2019-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7..10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="A convenient function to download to a file using requests"
-HOMEPAGE="https://github.com/takluyver/requests_download https://pypi.org/project/requests_download/"
-SRC_URI="https://github.com/takluyver/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~mips ~x86"
-
-RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
-BDEPEND="${RDEPEND}"
-
-# there are no tests upstream
-RESTRICT="test"
-
-DOCS=( README.rst )
-
-python_prepare_all() {
-	printf -- "from setuptools import setup\nsetup(name='%s',version='%s',py_modules=['%s'])" \
-		"${PN}" "${PV}" "${PN}" > setup.py || die
-
-	distutils-r1_python_prepare_all
-}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/
@ 2024-04-24 16:36 Patrick McLean
  0 siblings, 0 replies; 14+ messages in thread
From: Patrick McLean @ 2024-04-24 16:36 UTC (permalink / raw
  To: gentoo-commits

commit:     e8a6349742cbec6215f71a108b66e058175fa347
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 24 15:36:50 2024 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Wed Apr 24 16:36:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8a63497

dev-python/requests_download: Revbump, add py312 (bug #929506)

Closes: https://bugs.gentoo.org/929506
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 .../requests_download-0.1.2-r2.ebuild              | 32 ++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/dev-python/requests_download/requests_download-0.1.2-r2.ebuild b/dev-python/requests_download/requests_download-0.1.2-r2.ebuild
new file mode 100644
index 000000000000..816f862190b5
--- /dev/null
+++ b/dev-python/requests_download/requests_download-0.1.2-r2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2019-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A convenient function to download to a file using requests"
+HOMEPAGE="
+	https://github.com/takluyver/requests_download
+	https://pypi.org/project/requests_download/
+"
+SRC_URI="https://github.com/takluyver/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~mips ~x86"
+
+RDEPEND="
+	dev-python/requests[${PYTHON_USEDEP}]
+"
+BDEPEND="
+	${RDEPEND}
+"
+
+# there are no tests upstream
+RESTRICT="test"
+
+DOCS=( README.rst )


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/
@ 2024-05-11 11:06 Arthur Zamarin
  0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2024-05-11 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     349470f7f3241b13b7ff057dadb30bc926c7a6af
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat May 11 11:06:34 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat May 11 11:06:34 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=349470f7

dev-python/requests_download: Stabilize 0.1.2-r2 ALLARCHES, #931727

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/requests_download/requests_download-0.1.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/requests_download/requests_download-0.1.2-r2.ebuild b/dev-python/requests_download/requests_download-0.1.2-r2.ebuild
index 816f862190b5..add3ccf59527 100644
--- a/dev-python/requests_download/requests_download-0.1.2-r2.ebuild
+++ b/dev-python/requests_download/requests_download-0.1.2-r2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="https://github.com/takluyver/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ~x86"
+KEYWORDS="amd64 ~mips ~x86"
 
 RDEPEND="
 	dev-python/requests[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/
@ 2024-05-11 13:45 Michał Górny
  0 siblings, 0 replies; 14+ messages in thread
From: Michał Górny @ 2024-05-11 13:45 UTC (permalink / raw
  To: gentoo-commits

commit:     68527e78cb07f2cf4ddb886d647805f71a285b55
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 11 13:39:55 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 11 13:39:55 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68527e78

dev-python/requests_download: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../requests_download-0.1.2-r1.ebuild              | 25 ----------------------
 1 file changed, 25 deletions(-)

diff --git a/dev-python/requests_download/requests_download-0.1.2-r1.ebuild b/dev-python/requests_download/requests_download-0.1.2-r1.ebuild
deleted file mode 100644
index ae003f7242d0..000000000000
--- a/dev-python/requests_download/requests_download-0.1.2-r1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 2019-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="A convenient function to download to a file using requests"
-HOMEPAGE="https://github.com/takluyver/requests_download https://pypi.org/project/requests_download/"
-SRC_URI="https://github.com/takluyver/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~mips ~x86"
-
-RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
-BDEPEND="${RDEPEND}"
-
-# there are no tests upstream
-RESTRICT="test"
-
-DOCS=( README.rst )


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/
@ 2024-05-11 13:45 Michał Górny
  0 siblings, 0 replies; 14+ messages in thread
From: Michał Górny @ 2024-05-11 13:45 UTC (permalink / raw
  To: gentoo-commits

commit:     188e31f3ddcf16bcf295e3e994155940c9a1c0b7
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 11 13:45:19 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 11 13:45:19 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=188e31f3

dev-python/requests_download: Fix distfile name

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/requests_download/Manifest                          | 2 +-
 dev-python/requests_download/requests_download-0.1.2-r2.ebuild | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-python/requests_download/Manifest b/dev-python/requests_download/Manifest
index 8951ccff9fd3..85b3c7a8855d 100644
--- a/dev-python/requests_download/Manifest
+++ b/dev-python/requests_download/Manifest
@@ -1 +1 @@
-DIST requests_download-0.1.2.tar.gz 2584 BLAKE2B c6f2eb7a182e0f42ccb7b603dec47a077b1b946bfa93968972dce5267c7c51fa8c4158e15cd35621cbe229e12f6644db9734e52439796d8d8411be16a38e1e9a SHA512 99d4b275200c88befd2730d17a3329c8cbb155fa5cf9600a7466e8ab109f999a9fc9b8c668aa3b389bc2a3deb33b8a3fd390270d71f04bb0a8f998da67cfde82
+DIST requests_download-0.1.2.gh.tar.gz 2584 BLAKE2B c6f2eb7a182e0f42ccb7b603dec47a077b1b946bfa93968972dce5267c7c51fa8c4158e15cd35621cbe229e12f6644db9734e52439796d8d8411be16a38e1e9a SHA512 99d4b275200c88befd2730d17a3329c8cbb155fa5cf9600a7466e8ab109f999a9fc9b8c668aa3b389bc2a3deb33b8a3fd390270d71f04bb0a8f998da67cfde82

diff --git a/dev-python/requests_download/requests_download-0.1.2-r2.ebuild b/dev-python/requests_download/requests_download-0.1.2-r2.ebuild
index add3ccf59527..92aaeeecb585 100644
--- a/dev-python/requests_download/requests_download-0.1.2-r2.ebuild
+++ b/dev-python/requests_download/requests_download-0.1.2-r2.ebuild
@@ -13,7 +13,10 @@ HOMEPAGE="
 	https://github.com/takluyver/requests_download
 	https://pypi.org/project/requests_download/
 "
-SRC_URI="https://github.com/takluyver/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="
+	https://github.com/takluyver/requests_download/archive/${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
 
 LICENSE="MIT"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2024-05-11 13:45 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-02 18:18 [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_download/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-05-11 13:45 Michał Górny
2024-05-11 13:45 Michał Górny
2024-05-11 11:06 Arthur Zamarin
2024-04-24 16:36 Patrick McLean
2022-07-02 19:26 Michał Górny
2022-05-29 18:53 Arthur Zamarin
2022-05-29 18:53 Arthur Zamarin
2022-01-17  5:33 Joshua Kinard
2021-05-24 18:46 Patrick McLean
2020-12-15  6:44 Sam James
2020-12-15  6:44 Sam James
2020-02-05 21:21 Michał Górny
2019-12-07 21:55 Patrick McLean

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox