* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/w3lib/
@ 2021-11-15 19:59 Aisha Tammy
0 siblings, 0 replies; 10+ messages in thread
From: Aisha Tammy @ 2021-11-15 19:59 UTC (permalink / raw
To: gentoo-commits
commit: ef88ccfc12cdcbab47e4a42faadf121b2451d807
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Mon Nov 15 15:11:07 2021 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Mon Nov 15 15:11:07 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ef88ccfc
dev-python/w3lib: library of web-related functions
dependency for dev-python/scrapy
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-python/w3lib/Manifest | 1 +
dev-python/w3lib/metadata.xml | 8 ++++++++
dev-python/w3lib/w3lib-1.22.0.ebuild | 25 +++++++++++++++++++++++++
3 files changed, 34 insertions(+)
diff --git a/dev-python/w3lib/Manifest b/dev-python/w3lib/Manifest
new file mode 100644
index 000000000..a87ce2e41
--- /dev/null
+++ b/dev-python/w3lib/Manifest
@@ -0,0 +1 @@
+DIST w3lib-1.22.0.tar.gz 42682 BLAKE2B 72e5a8f5313a5552d619c4d9ab3784f0575da46a23828ceeb0b4dd939607be2777f8d1e73fb98dc04aae3da2a8e6d48064ad4063ad3b178fa1d53e8eec345e1c SHA512 14e12726ca46a60d0a86f670f8b19415c2a6e304eeb9a152008a2d1ea81267ddc5ff36b47fdd308bb4764869ffff61e2c243c20cfe85f79a8eb7e31ba85d46dd
diff --git a/dev-python/w3lib/metadata.xml b/dev-python/w3lib/metadata.xml
new file mode 100644
index 000000000..65ac1f205
--- /dev/null
+++ b/dev-python/w3lib/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gentoo@aisha.cc</email>
+ <name>Aisha Tammy</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/dev-python/w3lib/w3lib-1.22.0.ebuild b/dev-python/w3lib/w3lib-1.22.0.ebuild
new file mode 100644
index 000000000..a525694be
--- /dev/null
+++ b/dev-python/w3lib/w3lib-1.22.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_9 )
+inherit distutils-r1
+
+DESCRIPTION="Library of web-related functions"
+HOMEPAGE="https://scrapy.org/"
+SRC_URI="https://github.com/scrapy/w3lib/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT=0
+KEYWORDS="~amd64"
+
+DEPEND="${PYTHON_DEPS}"
+RDEPEND="${DEPEND}"
+
+distutils_enable_tests pytest
+
+python_test(){
+ # https://github.com/scrapy/w3lib/issues/164
+ py.test -k "not test_add_or_replace_parameter" || die
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/w3lib/
@ 2021-12-06 16:10 Anna Vyalkova
0 siblings, 0 replies; 10+ messages in thread
From: Anna Vyalkova @ 2021-12-06 16:10 UTC (permalink / raw
To: gentoo-commits
commit: b3ccc9e84e4a015e91285aac780bd93d11117417
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Mon Dec 6 12:55:45 2021 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Mon Dec 6 12:55:50 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b3ccc9e8
dev-python/w3lib: fix deps
Closes: https://bugs.gentoo.org/825438
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-python/w3lib/metadata.xml | 2 +-
dev-python/w3lib/w3lib-1.22.0.ebuild | 15 +++++++--------
2 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/dev-python/w3lib/metadata.xml b/dev-python/w3lib/metadata.xml
index 65ac1f205..10a288b0b 100644
--- a/dev-python/w3lib/metadata.xml
+++ b/dev-python/w3lib/metadata.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>gentoo@aisha.cc</email>
diff --git a/dev-python/w3lib/w3lib-1.22.0.ebuild b/dev-python/w3lib/w3lib-1.22.0.ebuild
index a525694be..1693f3352 100644
--- a/dev-python/w3lib/w3lib-1.22.0.ebuild
+++ b/dev-python/w3lib/w3lib-1.22.0.ebuild
@@ -1,25 +1,24 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-PYTHON_COMPAT=( python3_9 )
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
inherit distutils-r1
DESCRIPTION="Library of web-related functions"
HOMEPAGE="https://scrapy.org/"
-SRC_URI="https://github.com/scrapy/w3lib/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/scrapy/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT=0
KEYWORDS="~amd64"
-DEPEND="${PYTHON_DEPS}"
-RDEPEND="${DEPEND}"
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
distutils_enable_tests pytest
-python_test(){
+EPYTEST_DESELECT=(
# https://github.com/scrapy/w3lib/issues/164
- py.test -k "not test_add_or_replace_parameter" || die
-}
+ tests/test_url.py::UrlTests::test_add_or_replace_parameter
+)
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/w3lib/
@ 2022-08-13 14:40 Aisha Tammy
0 siblings, 0 replies; 10+ messages in thread
From: Aisha Tammy @ 2022-08-13 14:40 UTC (permalink / raw
To: gentoo-commits
commit: 938f3921f2ab8cca5f74b9c136ac705d4c131079
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sat Aug 13 14:40:42 2022 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Sat Aug 13 14:40:42 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=938f3921
dev-python/w3lib: add 2.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-python/w3lib/Manifest | 1 +
dev-python/w3lib/w3lib-2.0.1.ebuild | 24 ++++++++++++++++++++++++
2 files changed, 25 insertions(+)
diff --git a/dev-python/w3lib/Manifest b/dev-python/w3lib/Manifest
index a87ce2e41..120f9925e 100644
--- a/dev-python/w3lib/Manifest
+++ b/dev-python/w3lib/Manifest
@@ -1 +1,2 @@
DIST w3lib-1.22.0.tar.gz 42682 BLAKE2B 72e5a8f5313a5552d619c4d9ab3784f0575da46a23828ceeb0b4dd939607be2777f8d1e73fb98dc04aae3da2a8e6d48064ad4063ad3b178fa1d53e8eec345e1c SHA512 14e12726ca46a60d0a86f670f8b19415c2a6e304eeb9a152008a2d1ea81267ddc5ff36b47fdd308bb4764869ffff61e2c243c20cfe85f79a8eb7e31ba85d46dd
+DIST w3lib-2.0.1.tar.gz 43905 BLAKE2B 35d5ef1b326074a86f98341c50ed08f8ec8bc3e13433b7dc8ee6db453375fa0a1958f0f83d4274eeef89b95a177c3f92994c0927367c420d5a03c8400420cc91 SHA512 c4c1a00ad6d0c8f9a3a3a6581fb513328f89bfd9f797bf6289133580581c2579b04da8a2c815d14214bc0dbc87839de3d9f7949ad9398402312d3c522361414e
diff --git a/dev-python/w3lib/w3lib-2.0.1.ebuild b/dev-python/w3lib/w3lib-2.0.1.ebuild
new file mode 100644
index 000000000..1693f3352
--- /dev/null
+++ b/dev-python/w3lib/w3lib-2.0.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+inherit distutils-r1
+
+DESCRIPTION="Library of web-related functions"
+HOMEPAGE="https://scrapy.org/"
+SRC_URI="https://github.com/scrapy/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT=0
+KEYWORDS="~amd64"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+ # https://github.com/scrapy/w3lib/issues/164
+ tests/test_url.py::UrlTests::test_add_or_replace_parameter
+)
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/w3lib/
@ 2022-11-22 7:32 Anna Vyalkova
0 siblings, 0 replies; 10+ messages in thread
From: Anna Vyalkova @ 2022-11-22 7:32 UTC (permalink / raw
To: gentoo-commits
commit: 2f852fb59d0804e3d7de616aa17f236b1846b01e
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue Nov 22 06:22:25 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Tue Nov 22 06:22:28 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2f852fb5
dev-python/w3lib: enable py3.11
update HOMEPAGE, SRC_URI
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-python/w3lib/Manifest | 2 +-
dev-python/w3lib/w3lib-2.0.1.ebuild | 17 +++++++++++++----
2 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/dev-python/w3lib/Manifest b/dev-python/w3lib/Manifest
index 120f9925e..34b031804 100644
--- a/dev-python/w3lib/Manifest
+++ b/dev-python/w3lib/Manifest
@@ -1,2 +1,2 @@
DIST w3lib-1.22.0.tar.gz 42682 BLAKE2B 72e5a8f5313a5552d619c4d9ab3784f0575da46a23828ceeb0b4dd939607be2777f8d1e73fb98dc04aae3da2a8e6d48064ad4063ad3b178fa1d53e8eec345e1c SHA512 14e12726ca46a60d0a86f670f8b19415c2a6e304eeb9a152008a2d1ea81267ddc5ff36b47fdd308bb4764869ffff61e2c243c20cfe85f79a8eb7e31ba85d46dd
-DIST w3lib-2.0.1.tar.gz 43905 BLAKE2B 35d5ef1b326074a86f98341c50ed08f8ec8bc3e13433b7dc8ee6db453375fa0a1958f0f83d4274eeef89b95a177c3f92994c0927367c420d5a03c8400420cc91 SHA512 c4c1a00ad6d0c8f9a3a3a6581fb513328f89bfd9f797bf6289133580581c2579b04da8a2c815d14214bc0dbc87839de3d9f7949ad9398402312d3c522361414e
+DIST w3lib-2.0.1.tar.gz 43324 BLAKE2B cb3b16da08b37ff224a94c37987fab3da752490eec081dece6c9576067590e0012585f9c26d0af2bb86c99fc6ba0cf47213cb32d51847513ee1d35bf48bdb66b SHA512 6d271d1d2858f2aef843cb3e99ca46cadef3d866f920a55696d7189c8b7da3ca3f9adbb066272301c9b5332a414ff4554222a044efa58ec622be8a3da79c04e3
diff --git a/dev-python/w3lib/w3lib-2.0.1.ebuild b/dev-python/w3lib/w3lib-2.0.1.ebuild
index 1693f3352..f5f9bec11 100644
--- a/dev-python/w3lib/w3lib-2.0.1.ebuild
+++ b/dev-python/w3lib/w3lib-2.0.1.ebuild
@@ -1,14 +1,19 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Library of web-related functions"
-HOMEPAGE="https://scrapy.org/"
-SRC_URI="https://github.com/scrapy/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+HOMEPAGE="
+ https://scrapy.org/
+ https://pypi.org/project/w3lib/
+ https://github.com/scrapy/w3lib
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT=0
@@ -18,6 +23,10 @@ RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+ dev-python/sphinx-hoverxref \
+ dev-python/sphinx-notfound-page
+
EPYTEST_DESELECT=(
# https://github.com/scrapy/w3lib/issues/164
tests/test_url.py::UrlTests::test_add_or_replace_parameter
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/w3lib/
@ 2023-02-24 14:07 Aisha Tammy
0 siblings, 0 replies; 10+ messages in thread
From: Aisha Tammy @ 2023-02-24 14:07 UTC (permalink / raw
To: gentoo-commits
commit: 742cdad2482182a1afd910cbf0bc2d9771e9cd47
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri Feb 24 14:07:19 2023 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Fri Feb 24 14:07:23 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=742cdad2
dev-python/w3lib: add 2.1.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-python/w3lib/Manifest | 1 +
dev-python/w3lib/w3lib-2.1.1.ebuild | 33 +++++++++++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/dev-python/w3lib/Manifest b/dev-python/w3lib/Manifest
index 34b031804..824e552ba 100644
--- a/dev-python/w3lib/Manifest
+++ b/dev-python/w3lib/Manifest
@@ -1,2 +1,3 @@
DIST w3lib-1.22.0.tar.gz 42682 BLAKE2B 72e5a8f5313a5552d619c4d9ab3784f0575da46a23828ceeb0b4dd939607be2777f8d1e73fb98dc04aae3da2a8e6d48064ad4063ad3b178fa1d53e8eec345e1c SHA512 14e12726ca46a60d0a86f670f8b19415c2a6e304eeb9a152008a2d1ea81267ddc5ff36b47fdd308bb4764869ffff61e2c243c20cfe85f79a8eb7e31ba85d46dd
DIST w3lib-2.0.1.tar.gz 43324 BLAKE2B cb3b16da08b37ff224a94c37987fab3da752490eec081dece6c9576067590e0012585f9c26d0af2bb86c99fc6ba0cf47213cb32d51847513ee1d35bf48bdb66b SHA512 6d271d1d2858f2aef843cb3e99ca46cadef3d866f920a55696d7189c8b7da3ca3f9adbb066272301c9b5332a414ff4554222a044efa58ec622be8a3da79c04e3
+DIST w3lib-2.1.1.tar.gz 48471 BLAKE2B f510cb66c19c56260d7c196d46a2d44a5f8eb3e0204869f9ccd68b84dbdfdd5f4a8ec731b1c4c3f8d2e0549fba4dac3877200c9018b55ae6f454a2c2518df872 SHA512 f720ec4ded534474ef8f18df388fdaad56ccd48de797c0ec6145737479bc3d589a0e376316aab08c5f4ffe5f0fa07a383d655e3feedc1d1ba51c4cf9ee9639ac
diff --git a/dev-python/w3lib/w3lib-2.1.1.ebuild b/dev-python/w3lib/w3lib-2.1.1.ebuild
new file mode 100644
index 000000000..f5f9bec11
--- /dev/null
+++ b/dev-python/w3lib/w3lib-2.1.1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="Library of web-related functions"
+HOMEPAGE="
+ https://scrapy.org/
+ https://pypi.org/project/w3lib/
+ https://github.com/scrapy/w3lib
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT=0
+KEYWORDS="~amd64"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest
+
+distutils_enable_sphinx docs \
+ dev-python/sphinx-hoverxref \
+ dev-python/sphinx-notfound-page
+
+EPYTEST_DESELECT=(
+ # https://github.com/scrapy/w3lib/issues/164
+ tests/test_url.py::UrlTests::test_add_or_replace_parameter
+)
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/w3lib/
@ 2023-03-01 1:16 Anna Vyalkova
0 siblings, 0 replies; 10+ messages in thread
From: Anna Vyalkova @ 2023-03-01 1:16 UTC (permalink / raw
To: gentoo-commits
commit: 508f106f029bf04710c053e0f5e898dbca27abae
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Mar 1 01:15:58 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Wed Mar 1 01:16:19 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=508f106f
dev-python/w3lib: drop 1.22.0
Closes: https://bugs.gentoo.org/897598
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-python/w3lib/Manifest | 1 -
dev-python/w3lib/w3lib-1.22.0.ebuild | 24 ------------------------
2 files changed, 25 deletions(-)
diff --git a/dev-python/w3lib/Manifest b/dev-python/w3lib/Manifest
index 824e552ba..06d1c7131 100644
--- a/dev-python/w3lib/Manifest
+++ b/dev-python/w3lib/Manifest
@@ -1,3 +1,2 @@
-DIST w3lib-1.22.0.tar.gz 42682 BLAKE2B 72e5a8f5313a5552d619c4d9ab3784f0575da46a23828ceeb0b4dd939607be2777f8d1e73fb98dc04aae3da2a8e6d48064ad4063ad3b178fa1d53e8eec345e1c SHA512 14e12726ca46a60d0a86f670f8b19415c2a6e304eeb9a152008a2d1ea81267ddc5ff36b47fdd308bb4764869ffff61e2c243c20cfe85f79a8eb7e31ba85d46dd
DIST w3lib-2.0.1.tar.gz 43324 BLAKE2B cb3b16da08b37ff224a94c37987fab3da752490eec081dece6c9576067590e0012585f9c26d0af2bb86c99fc6ba0cf47213cb32d51847513ee1d35bf48bdb66b SHA512 6d271d1d2858f2aef843cb3e99ca46cadef3d866f920a55696d7189c8b7da3ca3f9adbb066272301c9b5332a414ff4554222a044efa58ec622be8a3da79c04e3
DIST w3lib-2.1.1.tar.gz 48471 BLAKE2B f510cb66c19c56260d7c196d46a2d44a5f8eb3e0204869f9ccd68b84dbdfdd5f4a8ec731b1c4c3f8d2e0549fba4dac3877200c9018b55ae6f454a2c2518df872 SHA512 f720ec4ded534474ef8f18df388fdaad56ccd48de797c0ec6145737479bc3d589a0e376316aab08c5f4ffe5f0fa07a383d655e3feedc1d1ba51c4cf9ee9639ac
diff --git a/dev-python/w3lib/w3lib-1.22.0.ebuild b/dev-python/w3lib/w3lib-1.22.0.ebuild
deleted file mode 100644
index 1693f3352..000000000
--- a/dev-python/w3lib/w3lib-1.22.0.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="Library of web-related functions"
-HOMEPAGE="https://scrapy.org/"
-SRC_URI="https://github.com/scrapy/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT=0
-KEYWORDS="~amd64"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
- # https://github.com/scrapy/w3lib/issues/164
- tests/test_url.py::UrlTests::test_add_or_replace_parameter
-)
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/w3lib/
@ 2023-03-17 13:01 Anna Vyalkova
0 siblings, 0 replies; 10+ messages in thread
From: Anna Vyalkova @ 2023-03-17 13:01 UTC (permalink / raw
To: gentoo-commits
commit: 5f1d40fec0f962f1bbe760c356c1a4487c6ceb0f
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Mar 17 12:49:45 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Fri Mar 17 12:58:52 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5f1d40fe
dev-python/w3lib: Use pypi.eclass
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-python/w3lib/w3lib-2.1.1.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dev-python/w3lib/w3lib-2.1.1.ebuild b/dev-python/w3lib/w3lib-2.1.1.ebuild
index 0454d4dc8..67f4a056f 100644
--- a/dev-python/w3lib/w3lib-2.1.1.ebuild
+++ b/dev-python/w3lib/w3lib-2.1.1.ebuild
@@ -5,7 +5,7 @@ EAPI=8
PYTHON_COMPAT=( python3_{9..11} pypy3 )
DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1
+inherit distutils-r1 pypi
DESCRIPTION="Library of web-related functions"
HOMEPAGE="
@@ -13,7 +13,6 @@ HOMEPAGE="
https://pypi.org/project/w3lib/
https://github.com/scrapy/w3lib
"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT=0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/w3lib/
@ 2023-12-29 2:12 Aisha Tammy
0 siblings, 0 replies; 10+ messages in thread
From: Aisha Tammy @ 2023-12-29 2:12 UTC (permalink / raw
To: gentoo-commits
commit: 3167fb9be469341e8689c26697c40b31201d26f8
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri Dec 29 02:00:13 2023 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Fri Dec 29 02:11:37 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3167fb9b
dev-python/w3lib: drop 2.0.1, 2.1.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-python/w3lib/Manifest | 2 --
dev-python/w3lib/w3lib-2.0.1.ebuild | 32 --------------------------------
dev-python/w3lib/w3lib-2.1.1.ebuild | 32 --------------------------------
3 files changed, 66 deletions(-)
diff --git a/dev-python/w3lib/Manifest b/dev-python/w3lib/Manifest
index 6b04668360..2d046d151d 100644
--- a/dev-python/w3lib/Manifest
+++ b/dev-python/w3lib/Manifest
@@ -1,3 +1 @@
-DIST w3lib-2.0.1.tar.gz 43324 BLAKE2B cb3b16da08b37ff224a94c37987fab3da752490eec081dece6c9576067590e0012585f9c26d0af2bb86c99fc6ba0cf47213cb32d51847513ee1d35bf48bdb66b SHA512 6d271d1d2858f2aef843cb3e99ca46cadef3d866f920a55696d7189c8b7da3ca3f9adbb066272301c9b5332a414ff4554222a044efa58ec622be8a3da79c04e3
-DIST w3lib-2.1.1.tar.gz 48471 BLAKE2B f510cb66c19c56260d7c196d46a2d44a5f8eb3e0204869f9ccd68b84dbdfdd5f4a8ec731b1c4c3f8d2e0549fba4dac3877200c9018b55ae6f454a2c2518df872 SHA512 f720ec4ded534474ef8f18df388fdaad56ccd48de797c0ec6145737479bc3d589a0e376316aab08c5f4ffe5f0fa07a383d655e3feedc1d1ba51c4cf9ee9639ac
DIST w3lib-2.1.2.tar.gz 48715 BLAKE2B 8ec3514351634430b348d19a87e21fc95fbb230bac51b59801f692c4d2dc8426bd9740db49949efb2df80eda69026fb202ea0ae80fba45506a366c0b66bc8b29 SHA512 cfff2520cab24b84c93223125de3fb813e4d40d23a022f7fc34196c3033adb5dfc01358d62566dcc4b763d40b271e1428eba0250ba997228d07f35cd3721e37e
diff --git a/dev-python/w3lib/w3lib-2.0.1.ebuild b/dev-python/w3lib/w3lib-2.0.1.ebuild
deleted file mode 100644
index 08c95fca3e..0000000000
--- a/dev-python/w3lib/w3lib-2.0.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} pypy3 )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1 pypi
-
-DESCRIPTION="Library of web-related functions"
-HOMEPAGE="
- https://scrapy.org/
- https://pypi.org/project/w3lib/
- https://github.com/scrapy/w3lib
-"
-
-LICENSE="BSD"
-SLOT=0
-KEYWORDS="~amd64"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-distutils_enable_sphinx docs \
- dev-python/sphinx-hoverxref \
- dev-python/sphinx-notfound-page
-
-EPYTEST_DESELECT=(
- # https://github.com/scrapy/w3lib/issues/164
- tests/test_url.py::UrlTests::test_add_or_replace_parameter
-)
diff --git a/dev-python/w3lib/w3lib-2.1.1.ebuild b/dev-python/w3lib/w3lib-2.1.1.ebuild
deleted file mode 100644
index 08c95fca3e..0000000000
--- a/dev-python/w3lib/w3lib-2.1.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} pypy3 )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1 pypi
-
-DESCRIPTION="Library of web-related functions"
-HOMEPAGE="
- https://scrapy.org/
- https://pypi.org/project/w3lib/
- https://github.com/scrapy/w3lib
-"
-
-LICENSE="BSD"
-SLOT=0
-KEYWORDS="~amd64"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-distutils_enable_sphinx docs \
- dev-python/sphinx-hoverxref \
- dev-python/sphinx-notfound-page
-
-EPYTEST_DESELECT=(
- # https://github.com/scrapy/w3lib/issues/164
- tests/test_url.py::UrlTests::test_add_or_replace_parameter
-)
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/w3lib/
@ 2023-12-29 2:12 Aisha Tammy
0 siblings, 0 replies; 10+ messages in thread
From: Aisha Tammy @ 2023-12-29 2:12 UTC (permalink / raw
To: gentoo-commits
commit: 6e053357bd4d90e8be09dbfc8a4be724be2dcb20
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri Dec 29 01:53:16 2023 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Fri Dec 29 02:11:31 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6e053357
dev-python/w3lib: add 2.1.2
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-python/w3lib/Manifest | 1 +
dev-python/w3lib/w3lib-2.1.2.ebuild | 32 ++++++++++++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/dev-python/w3lib/Manifest b/dev-python/w3lib/Manifest
index 06d1c71315..6b04668360 100644
--- a/dev-python/w3lib/Manifest
+++ b/dev-python/w3lib/Manifest
@@ -1,2 +1,3 @@
DIST w3lib-2.0.1.tar.gz 43324 BLAKE2B cb3b16da08b37ff224a94c37987fab3da752490eec081dece6c9576067590e0012585f9c26d0af2bb86c99fc6ba0cf47213cb32d51847513ee1d35bf48bdb66b SHA512 6d271d1d2858f2aef843cb3e99ca46cadef3d866f920a55696d7189c8b7da3ca3f9adbb066272301c9b5332a414ff4554222a044efa58ec622be8a3da79c04e3
DIST w3lib-2.1.1.tar.gz 48471 BLAKE2B f510cb66c19c56260d7c196d46a2d44a5f8eb3e0204869f9ccd68b84dbdfdd5f4a8ec731b1c4c3f8d2e0549fba4dac3877200c9018b55ae6f454a2c2518df872 SHA512 f720ec4ded534474ef8f18df388fdaad56ccd48de797c0ec6145737479bc3d589a0e376316aab08c5f4ffe5f0fa07a383d655e3feedc1d1ba51c4cf9ee9639ac
+DIST w3lib-2.1.2.tar.gz 48715 BLAKE2B 8ec3514351634430b348d19a87e21fc95fbb230bac51b59801f692c4d2dc8426bd9740db49949efb2df80eda69026fb202ea0ae80fba45506a366c0b66bc8b29 SHA512 cfff2520cab24b84c93223125de3fb813e4d40d23a022f7fc34196c3033adb5dfc01358d62566dcc4b763d40b271e1428eba0250ba997228d07f35cd3721e37e
diff --git a/dev-python/w3lib/w3lib-2.1.2.ebuild b/dev-python/w3lib/w3lib-2.1.2.ebuild
new file mode 100644
index 0000000000..08c95fca3e
--- /dev/null
+++ b/dev-python/w3lib/w3lib-2.1.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} pypy3 )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1 pypi
+
+DESCRIPTION="Library of web-related functions"
+HOMEPAGE="
+ https://scrapy.org/
+ https://pypi.org/project/w3lib/
+ https://github.com/scrapy/w3lib
+"
+
+LICENSE="BSD"
+SLOT=0
+KEYWORDS="~amd64"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest
+
+distutils_enable_sphinx docs \
+ dev-python/sphinx-hoverxref \
+ dev-python/sphinx-notfound-page
+
+EPYTEST_DESELECT=(
+ # https://github.com/scrapy/w3lib/issues/164
+ tests/test_url.py::UrlTests::test_add_or_replace_parameter
+)
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/w3lib/
@ 2023-12-29 2:12 Aisha Tammy
0 siblings, 0 replies; 10+ messages in thread
From: Aisha Tammy @ 2023-12-29 2:12 UTC (permalink / raw
To: gentoo-commits
commit: 1f20c7a030c5d12dcca17157b8d4c003938c2251
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri Dec 29 01:59:31 2023 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Fri Dec 29 02:11:33 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1f20c7a0
dev-python/w3lib: enable py3.12
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-python/w3lib/w3lib-2.1.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/w3lib/w3lib-2.1.2.ebuild b/dev-python/w3lib/w3lib-2.1.2.ebuild
index 08c95fca3e..a6c954743c 100644
--- a/dev-python/w3lib/w3lib-2.1.2.ebuild
+++ b/dev-python/w3lib/w3lib-2.1.2.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{10..11} pypy3 )
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-12-29 2:12 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-06 16:10 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/w3lib/ Anna Vyalkova
-- strict thread matches above, loose matches on Subject: below --
2023-12-29 2:12 Aisha Tammy
2023-12-29 2:12 Aisha Tammy
2023-12-29 2:12 Aisha Tammy
2023-03-17 13:01 Anna Vyalkova
2023-03-01 1:16 Anna Vyalkova
2023-02-24 14:07 Aisha Tammy
2022-11-22 7:32 Anna Vyalkova
2022-08-13 14:40 Aisha Tammy
2021-11-15 19:59 Aisha Tammy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox