public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2019-07-27 23:19 Matthew Thode
  0 siblings, 0 replies; 19+ messages in thread
From: Matthew Thode @ 2019-07-27 23:19 UTC (permalink / raw
  To: gentoo-commits

commit:     726ab52ed77898ea0936c5876f62ebd3d9c1a00a
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 23:15:02 2019 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 23:19:04 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=726ab52e

dev-python/publicsuffix: adding for mailman2

Package-Manager: Portage-2.3.66, Repoman-2.3.16
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 dev-python/publicsuffix/Manifest                   |  1 +
 dev-python/publicsuffix/metadata.xml               | 14 ++++++++++++++
 .../publicsuffix/publicsuffix-2.20190205.ebuild    | 22 ++++++++++++++++++++++
 3 files changed, 37 insertions(+)

diff --git a/dev-python/publicsuffix/Manifest b/dev-python/publicsuffix/Manifest
new file mode 100644
index 00000000000..69154581c96
--- /dev/null
+++ b/dev-python/publicsuffix/Manifest
@@ -0,0 +1 @@
+DIST publicsuffix2-2.20190205.tar.gz 84498 BLAKE2B 978b788aee4c40d687aff8d140e426658779bc913c846e420147e48f2837582991ff2900c7a483814c5b908c9771e04e04f41bf35795c2d2d1299c5513840e35 SHA512 359052a2b41f63be3f87b23605b5229424f2dcf06b5bd9e9b5f1988cf9df5171188b94d54ed0be37099d94afd6efe6cfa75be27aef262e6c5af0ded61dfc6258

diff --git a/dev-python/publicsuffix/metadata.xml b/dev-python/publicsuffix/metadata.xml
new file mode 100644
index 00000000000..1de14ee2fdc
--- /dev/null
+++ b/dev-python/publicsuffix/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>python@gentoo.org</email>
+	</maintainer>
+	<maintainer type="person">
+		<email>prometheanfire@gentoo.org</email>
+		<name>Matthew Thode</name>
+	</maintainer>
+	<longdescription lang="en">
+			This module allows you to get the public suffix of a domain name using the Public Suffix List from http://publicsuffix.org
+	</longdescription>
+</pkgmetadata>

diff --git a/dev-python/publicsuffix/publicsuffix-2.20190205.ebuild b/dev-python/publicsuffix/publicsuffix-2.20190205.ebuild
new file mode 100644
index 00000000000..6784ae27aea
--- /dev/null
+++ b/dev-python/publicsuffix/publicsuffix-2.20190205.ebuild
@@ -0,0 +1,22 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_6 python3_7 )
+inherit distutils-r1
+
+DESCRIPTION="Get a public suffix for a domain name using the Public Suffix List."
+HOMEPAGE="https://github.com/nexB/python-publicsuffix2"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}2/${PN}2-${PV}.tar.gz"
+S="${WORKDIR}/${PN}2-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}
+	>=dev-python/requests-2.7.0[${PYTHON_USEDEP}]"
+BDEPEND=""


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2020-03-17 10:13 Michał Górny
  0 siblings, 0 replies; 19+ messages in thread
From: Michał Górny @ 2020-03-17 10:13 UTC (permalink / raw
  To: gentoo-commits

commit:     8f53f0dfa21a5d764394539a44a9bac27278339c
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 17 09:58:22 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Mar 17 10:13:06 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f53f0df

dev-python/publicsuffix: Drop py2

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

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

diff --git a/dev-python/publicsuffix/publicsuffix-2.20190205.ebuild b/dev-python/publicsuffix/publicsuffix-2.20190205.ebuild
index 6784ae27aea..547dfd31006 100644
--- a/dev-python/publicsuffix/publicsuffix-2.20190205.ebuild
+++ b/dev-python/publicsuffix/publicsuffix-2.20190205.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_6 python3_7 )
+PYTHON_COMPAT=( python3_6 python3_7 )
 inherit distutils-r1
 
 DESCRIPTION="Get a public suffix for a domain name using the Public Suffix List."


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2020-04-21 18:21 Matthew Thode
  0 siblings, 0 replies; 19+ messages in thread
From: Matthew Thode @ 2020-04-21 18:21 UTC (permalink / raw
  To: gentoo-commits

commit:     e0b606371357f0e6c874e11b6bb2ce9b0a11e7b2
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 21 18:20:30 2020 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Tue Apr 21 18:20:57 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0b60637

dev-python/publicsuffix: bump

Closes: https://bugs.gentoo.org/718770
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 dev-python/publicsuffix/Manifest                   |  1 +
 .../publicsuffix/publicsuffix-2.20191221.ebuild    | 22 ++++++++++++++++++++++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/publicsuffix/Manifest b/dev-python/publicsuffix/Manifest
index 69154581c96..ae5f876ba06 100644
--- a/dev-python/publicsuffix/Manifest
+++ b/dev-python/publicsuffix/Manifest
@@ -1 +1,2 @@
 DIST publicsuffix2-2.20190205.tar.gz 84498 BLAKE2B 978b788aee4c40d687aff8d140e426658779bc913c846e420147e48f2837582991ff2900c7a483814c5b908c9771e04e04f41bf35795c2d2d1299c5513840e35 SHA512 359052a2b41f63be3f87b23605b5229424f2dcf06b5bd9e9b5f1988cf9df5171188b94d54ed0be37099d94afd6efe6cfa75be27aef262e6c5af0ded61dfc6258
+DIST publicsuffix2-2.20191221.tar.gz 99592 BLAKE2B 3e96f2b1d23a70827758eb4440892719deabdb9a67a2144fefd2d4b23e26dec0d19f6d9fd4de504d5d52c0250719ef85e929b4a2b92b7ba8896ed4055480d0d8 SHA512 d863f0937b340958ef7c8bd07d62054aead993ba31b0c2753631f2e75e48f7cea412c6501d8a94d98bf6a97a13eb0716c24a89e336787d5570e9af0386c58320

diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221.ebuild
new file mode 100644
index 00000000000..67cd947dddd
--- /dev/null
+++ b/dev-python/publicsuffix/publicsuffix-2.20191221.ebuild
@@ -0,0 +1,22 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_6 python3_7 python3_8 )
+inherit distutils-r1
+
+DESCRIPTION="Get a public suffix for a domain name using the Public Suffix List."
+HOMEPAGE="https://github.com/nexB/python-publicsuffix2"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}2/${PN}2-${PV}.tar.gz"
+S="${WORKDIR}/${PN}2-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}
+	>=dev-python/requests-2.7.0[${PYTHON_USEDEP}]"
+BDEPEND=""


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

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

commit:     7c1ba9d37829fca6b4be2f0dce660fcfad4932e6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon May  4 11:37:59 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May  4 11:37:59 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c1ba9d3

dev-python/publicsuffix: Remove old

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

 dev-python/publicsuffix/Manifest                   |  1 -
 .../publicsuffix/publicsuffix-2.20190205.ebuild    | 22 ----------------------
 2 files changed, 23 deletions(-)

diff --git a/dev-python/publicsuffix/Manifest b/dev-python/publicsuffix/Manifest
index ae5f876ba06..9eeb3b3d194 100644
--- a/dev-python/publicsuffix/Manifest
+++ b/dev-python/publicsuffix/Manifest
@@ -1,2 +1 @@
-DIST publicsuffix2-2.20190205.tar.gz 84498 BLAKE2B 978b788aee4c40d687aff8d140e426658779bc913c846e420147e48f2837582991ff2900c7a483814c5b908c9771e04e04f41bf35795c2d2d1299c5513840e35 SHA512 359052a2b41f63be3f87b23605b5229424f2dcf06b5bd9e9b5f1988cf9df5171188b94d54ed0be37099d94afd6efe6cfa75be27aef262e6c5af0ded61dfc6258
 DIST publicsuffix2-2.20191221.tar.gz 99592 BLAKE2B 3e96f2b1d23a70827758eb4440892719deabdb9a67a2144fefd2d4b23e26dec0d19f6d9fd4de504d5d52c0250719ef85e929b4a2b92b7ba8896ed4055480d0d8 SHA512 d863f0937b340958ef7c8bd07d62054aead993ba31b0c2753631f2e75e48f7cea412c6501d8a94d98bf6a97a13eb0716c24a89e336787d5570e9af0386c58320

diff --git a/dev-python/publicsuffix/publicsuffix-2.20190205.ebuild b/dev-python/publicsuffix/publicsuffix-2.20190205.ebuild
deleted file mode 100644
index 547dfd31006..00000000000
--- a/dev-python/publicsuffix/publicsuffix-2.20190205.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_6 python3_7 )
-inherit distutils-r1
-
-DESCRIPTION="Get a public suffix for a domain name using the Public Suffix List."
-HOMEPAGE="https://github.com/nexB/python-publicsuffix2"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}2/${PN}2-${PV}.tar.gz"
-S="${WORKDIR}/${PN}2-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE=""
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}
-	>=dev-python/requests-2.7.0[${PYTHON_USEDEP}]"
-BDEPEND=""


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2020-11-05 12:32 Joonas Niilola
  0 siblings, 0 replies; 19+ messages in thread
From: Joonas Niilola @ 2020-11-05 12:32 UTC (permalink / raw
  To: gentoo-commits

commit:     dcb6235f02b6c735f3e86eaa1f39dbd09db478b5
Author:     Matt Smith <matt <AT> offtopica <DOT> uk>
AuthorDate: Sun Nov  1 19:43:53 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Nov  5 12:32:03 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcb6235f

dev-python/publicsuffix: Add Python 3.9 to PYTHON_COMPAT

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Matt Smith <matt <AT> offtopica.uk>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

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

diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221.ebuild
index 67cd947dddd..250aa4234c4 100644
--- a/dev-python/publicsuffix/publicsuffix-2.20191221.ebuild
+++ b/dev-python/publicsuffix/publicsuffix-2.20191221.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_6 python3_7 python3_8 )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 inherit distutils-r1
 
 DESCRIPTION="Get a public suffix for a domain name using the Public Suffix List."


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2021-03-01  9:20 Agostino Sarubbo
  0 siblings, 0 replies; 19+ messages in thread
From: Agostino Sarubbo @ 2021-03-01  9:20 UTC (permalink / raw
  To: gentoo-commits

commit:     c706e063e71053df1f8928fad98f15da7d810fc1
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  1 09:19:45 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Mar  1 09:19:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c706e063

dev-python/publicsuffix: amd64 stable wrt bug #769872

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

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

diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221.ebuild
index eca5b2ff79d..70e340f60a4 100644
--- a/dev-python/publicsuffix/publicsuffix-2.20191221.ebuild
+++ b/dev-python/publicsuffix/publicsuffix-2.20191221.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}2-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2021-09-02 19:06 Arthur Zamarin
  0 siblings, 0 replies; 19+ messages in thread
From: Arthur Zamarin @ 2021-09-02 19:06 UTC (permalink / raw
  To: gentoo-commits

commit:     df9bad88486462996919aea65d0b171adfa5f8b9
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  2 18:57:24 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Sep  2 19:05:20 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df9bad88

dev-python/publicsuffix: add github upstream metadata

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

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

diff --git a/dev-python/publicsuffix/metadata.xml b/dev-python/publicsuffix/metadata.xml
index c604e58d98f..9083738bd3b 100644
--- a/dev-python/publicsuffix/metadata.xml
+++ b/dev-python/publicsuffix/metadata.xml
@@ -13,5 +13,6 @@
 	</longdescription>
 	<upstream>
 		<remote-id type="pypi">publicsuffix</remote-id>
+		<remote-id type="github">nexB/python-publicsuffix2</remote-id>
 	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2021-09-02 19:06 Arthur Zamarin
  0 siblings, 0 replies; 19+ messages in thread
From: Arthur Zamarin @ 2021-09-02 19:06 UTC (permalink / raw
  To: gentoo-commits

commit:     5e5f3c08a6fb4d0619c0cdf140f068f53f4fa365
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  2 18:57:53 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Sep  2 19:05:21 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e5f3c08

dev-python/publicsuffix: mark ALLARCHES

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

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

diff --git a/dev-python/publicsuffix/metadata.xml b/dev-python/publicsuffix/metadata.xml
index 9083738bd3b..0ed83041516 100644
--- a/dev-python/publicsuffix/metadata.xml
+++ b/dev-python/publicsuffix/metadata.xml
@@ -11,6 +11,7 @@
 	<longdescription lang="en">
 			This module allows you to get the public suffix of a domain name using the Public Suffix List from http://publicsuffix.org
 	</longdescription>
+	<stabilize-allarches/>
 	<upstream>
 		<remote-id type="pypi">publicsuffix</remote-id>
 		<remote-id type="github">nexB/python-publicsuffix2</remote-id>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2021-09-02 19:06 Arthur Zamarin
  0 siblings, 0 replies; 19+ messages in thread
From: Arthur Zamarin @ 2021-09-02 19:06 UTC (permalink / raw
  To: gentoo-commits

commit:     b6c2d8831b8d3e810e829a42c5139703aaa030f6
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  2 18:56:13 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Sep  2 19:05:19 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6c2d883

dev-python/publicsuffix: enable py3.10, enable tests

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

 dev-python/publicsuffix/Manifest                   |  1 +
 .../publicsuffix/publicsuffix-2.20191221-r1.ebuild | 25 ++++++++++++++++++++++
 2 files changed, 26 insertions(+)

diff --git a/dev-python/publicsuffix/Manifest b/dev-python/publicsuffix/Manifest
index 9eeb3b3d194..ced5546f504 100644
--- a/dev-python/publicsuffix/Manifest
+++ b/dev-python/publicsuffix/Manifest
@@ -1 +1,2 @@
+DIST publicsuffix-2.20191221.gh.tar.gz 98142 BLAKE2B 21b0dabb253175ecf427a51bcc7df2de7fa3fc9fe7d9032cc378160c4c53e75efa4c0e657efc93d48bb58f786160d89cb2fd7301e3c270f73802a926c31ea378 SHA512 983bdb17b76d10eb73cf69f0ba7590806bf6786ae0c30526593ce1ab97f3b22c967f9acae83b880dd56be41a29eae9cca5726926667eb74013d0d1078433bf05
 DIST publicsuffix2-2.20191221.tar.gz 99592 BLAKE2B 3e96f2b1d23a70827758eb4440892719deabdb9a67a2144fefd2d4b23e26dec0d19f6d9fd4de504d5d52c0250719ef85e929b4a2b92b7ba8896ed4055480d0d8 SHA512 d863f0937b340958ef7c8bd07d62054aead993ba31b0c2753631f2e75e48f7cea412c6501d8a94d98bf6a97a13eb0716c24a89e336787d5570e9af0386c58320

diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221-r1.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221-r1.ebuild
new file mode 100644
index 00000000000..b42bc58bf1a
--- /dev/null
+++ b/dev-python/publicsuffix/publicsuffix-2.20191221-r1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+MY_PV=release-2.2019-12-21
+
+DESCRIPTION="Get a public suffix for a domain name using the Public Suffix List."
+HOMEPAGE="https://github.com/nexB/python-publicsuffix2"
+SRC_URI="
+	https://github.com/nexB/python-publicsuffix2/archive/${MY_PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+S="${WORKDIR}/python-${PN}2-${MY_PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND=">=dev-python/requests-2.7.0[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2021-10-03 18:48 Sam James
  0 siblings, 0 replies; 19+ messages in thread
From: Sam James @ 2021-10-03 18:48 UTC (permalink / raw
  To: gentoo-commits

commit:     8a2b9d63f052a1364e87a5674dbdea3b062fa027
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  3 18:47:23 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct  3 18:47:23 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a2b9d63

dev-python/publicsuffix: Stabilize 2.20191221-r1 ALLARCHES, #815976

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

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

diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221-r1.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221-r1.ebuild
index b42bc58bf1a..31198616efe 100644
--- a/dev-python/publicsuffix/publicsuffix-2.20191221-r1.ebuild
+++ b/dev-python/publicsuffix/publicsuffix-2.20191221-r1.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/python-${PN}2-${MY_PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 
 RDEPEND=">=dev-python/requests-2.7.0[${PYTHON_USEDEP}]"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2021-10-03 19:27 Michał Górny
  0 siblings, 0 replies; 19+ messages in thread
From: Michał Górny @ 2021-10-03 19:27 UTC (permalink / raw
  To: gentoo-commits

commit:     65b818da991b348a88dc805cb656e242b606b652
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  3 19:24:53 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct  3 19:24:53 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65b818da

dev-python/publicsuffix: Remove old

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

 dev-python/publicsuffix/Manifest                   |  1 -
 .../publicsuffix/publicsuffix-2.20191221.ebuild    | 22 ----------------------
 2 files changed, 23 deletions(-)

diff --git a/dev-python/publicsuffix/Manifest b/dev-python/publicsuffix/Manifest
index ced5546f504..28575fb6fe7 100644
--- a/dev-python/publicsuffix/Manifest
+++ b/dev-python/publicsuffix/Manifest
@@ -1,2 +1 @@
 DIST publicsuffix-2.20191221.gh.tar.gz 98142 BLAKE2B 21b0dabb253175ecf427a51bcc7df2de7fa3fc9fe7d9032cc378160c4c53e75efa4c0e657efc93d48bb58f786160d89cb2fd7301e3c270f73802a926c31ea378 SHA512 983bdb17b76d10eb73cf69f0ba7590806bf6786ae0c30526593ce1ab97f3b22c967f9acae83b880dd56be41a29eae9cca5726926667eb74013d0d1078433bf05
-DIST publicsuffix2-2.20191221.tar.gz 99592 BLAKE2B 3e96f2b1d23a70827758eb4440892719deabdb9a67a2144fefd2d4b23e26dec0d19f6d9fd4de504d5d52c0250719ef85e929b4a2b92b7ba8896ed4055480d0d8 SHA512 d863f0937b340958ef7c8bd07d62054aead993ba31b0c2753631f2e75e48f7cea412c6501d8a94d98bf6a97a13eb0716c24a89e336787d5570e9af0386c58320

diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221.ebuild
deleted file mode 100644
index 70e340f60a4..00000000000
--- a/dev-python/publicsuffix/publicsuffix-2.20191221.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-inherit distutils-r1
-
-DESCRIPTION="Get a public suffix for a domain name using the Public Suffix List."
-HOMEPAGE="https://github.com/nexB/python-publicsuffix2"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}2/${PN}2-${PV}.tar.gz"
-S="${WORKDIR}/${PN}2-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
-IUSE=""
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}
-	>=dev-python/requests-2.7.0[${PYTHON_USEDEP}]"
-BDEPEND=""


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

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

commit:     c6a1c33c6bcd2431565cd982413dcc0f2bf2246f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 18 07:56:37 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Apr 18 08:19:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6a1c33c

dev-python/publicsuffix: PEP517, unhardcode version

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

 dev-python/publicsuffix/Manifest                   |  1 +
 .../publicsuffix/publicsuffix-2.20191221-r2.ebuild | 33 ++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/dev-python/publicsuffix/Manifest b/dev-python/publicsuffix/Manifest
index 28575fb6fe7b..04970e107ee2 100644
--- a/dev-python/publicsuffix/Manifest
+++ b/dev-python/publicsuffix/Manifest
@@ -1 +1,2 @@
 DIST publicsuffix-2.20191221.gh.tar.gz 98142 BLAKE2B 21b0dabb253175ecf427a51bcc7df2de7fa3fc9fe7d9032cc378160c4c53e75efa4c0e657efc93d48bb58f786160d89cb2fd7301e3c270f73802a926c31ea378 SHA512 983bdb17b76d10eb73cf69f0ba7590806bf6786ae0c30526593ce1ab97f3b22c967f9acae83b880dd56be41a29eae9cca5726926667eb74013d0d1078433bf05
+DIST python-publicsuffix2-release-2.2019-12-21.gh.tar.gz 98142 BLAKE2B 21b0dabb253175ecf427a51bcc7df2de7fa3fc9fe7d9032cc378160c4c53e75efa4c0e657efc93d48bb58f786160d89cb2fd7301e3c270f73802a926c31ea378 SHA512 983bdb17b76d10eb73cf69f0ba7590806bf6786ae0c30526593ce1ab97f3b22c967f9acae83b880dd56be41a29eae9cca5726926667eb74013d0d1078433bf05

diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
new file mode 100644
index 000000000000..f33a01dd2239
--- /dev/null
+++ b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+PV_DATE=$(ver_cut 2)
+MY_PV=release-$(ver_cut 1).${PV_DATE::4}-${PV_DATE:4:2}-${PV_DATE:6:2}
+MY_P=python-publicsuffix2-${MY_PV}
+
+DESCRIPTION="Get a public suffix for a domain name using the Public Suffix List"
+HOMEPAGE="
+	https://github.com/nexB/python-publicsuffix2/
+"
+SRC_URI="
+	https://github.com/nexB/python-publicsuffix2/archive/${MY_PV}.tar.gz
+		-> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+	>=dev-python/requests-2.7.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2022-05-21 17:35 Jakov Smolić
  0 siblings, 0 replies; 19+ messages in thread
From: Jakov Smolić @ 2022-05-21 17:35 UTC (permalink / raw
  To: gentoo-commits

commit:     44749c609361c08265ef7555c8987dda12f36fc5
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat May 21 17:34:54 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat May 21 17:34:54 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44749c60

dev-python/publicsuffix: Stabilize 2.20191221-r2 ALLARCHES, #846731

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

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

diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
index f33a01dd2239..1816feb33417 100644
--- a/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
+++ b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
@@ -24,7 +24,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 
 RDEPEND="
 	>=dev-python/requests-2.7.0[${PYTHON_USEDEP}]


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

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

commit:     5592885a6ccf434dc309595556b45222f62d1791
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 21 19:23:52 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 21 19:25:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5592885a

dev-python/publicsuffix: Remove old

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

 dev-python/publicsuffix/Manifest                   |  1 -
 .../publicsuffix/publicsuffix-2.20191221-r1.ebuild | 25 ----------------------
 2 files changed, 26 deletions(-)

diff --git a/dev-python/publicsuffix/Manifest b/dev-python/publicsuffix/Manifest
index 04970e107ee2..eff37a5b4ff7 100644
--- a/dev-python/publicsuffix/Manifest
+++ b/dev-python/publicsuffix/Manifest
@@ -1,2 +1 @@
-DIST publicsuffix-2.20191221.gh.tar.gz 98142 BLAKE2B 21b0dabb253175ecf427a51bcc7df2de7fa3fc9fe7d9032cc378160c4c53e75efa4c0e657efc93d48bb58f786160d89cb2fd7301e3c270f73802a926c31ea378 SHA512 983bdb17b76d10eb73cf69f0ba7590806bf6786ae0c30526593ce1ab97f3b22c967f9acae83b880dd56be41a29eae9cca5726926667eb74013d0d1078433bf05
 DIST python-publicsuffix2-release-2.2019-12-21.gh.tar.gz 98142 BLAKE2B 21b0dabb253175ecf427a51bcc7df2de7fa3fc9fe7d9032cc378160c4c53e75efa4c0e657efc93d48bb58f786160d89cb2fd7301e3c270f73802a926c31ea378 SHA512 983bdb17b76d10eb73cf69f0ba7590806bf6786ae0c30526593ce1ab97f3b22c967f9acae83b880dd56be41a29eae9cca5726926667eb74013d0d1078433bf05

diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221-r1.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221-r1.ebuild
deleted file mode 100644
index cbf7f3a521d4..000000000000
--- a/dev-python/publicsuffix/publicsuffix-2.20191221-r1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-MY_PV=release-2.2019-12-21
-
-DESCRIPTION="Get a public suffix for a domain name using the Public Suffix List"
-HOMEPAGE="https://github.com/nexB/python-publicsuffix2"
-SRC_URI="
-	https://github.com/nexB/python-publicsuffix2/archive/${MY_PV}.tar.gz
-		-> ${P}.gh.tar.gz
-"
-S="${WORKDIR}/python-${PN}2-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
-
-RDEPEND=">=dev-python/requests-2.7.0[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2022-06-11 11:32 Yixun Lan
  0 siblings, 0 replies; 19+ messages in thread
From: Yixun Lan @ 2022-06-11 11:32 UTC (permalink / raw
  To: gentoo-commits

commit:     971d0fab6bed025586cf620aed48e5dd82412f88
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Mon Jun  6 14:34:28 2022 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sat Jun 11 11:31:50 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=971d0fab

dev-python/publicsuffix: keyword 2.20191221-r2 for ~riscv

Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

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

diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
index 1816feb33417..8cad00faec6d 100644
--- a/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
+++ b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
@@ -24,7 +24,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv ~x86"
 
 RDEPEND="
 	>=dev-python/requests-2.7.0[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2023-01-27 16:13 Arthur Zamarin
  0 siblings, 0 replies; 19+ messages in thread
From: Arthur Zamarin @ 2023-01-27 16:13 UTC (permalink / raw
  To: gentoo-commits

commit:     9b53ddb12bea69db2be14d5194d1dd5e0d4694b9
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 27 16:12:13 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 27 16:12:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b53ddb1

dev-python/publicsuffix: enable py3.11

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

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

diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
index b4afc64726ad..bca1482cc1a5 100644
--- a/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
+++ b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2023-06-01 13:40 Michał Górny
  0 siblings, 0 replies; 19+ messages in thread
From: Michał Górny @ 2023-06-01 13:40 UTC (permalink / raw
  To: gentoo-commits

commit:     8ac5b0888b445ba0506357a14be9416753a57f75
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  1 13:33:49 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jun  1 13:33:49 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ac5b088

dev-python/publicsuffix: Enable py3.12

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

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

diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
index bca1482cc1a5..ba61d144be7f 100644
--- a/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
+++ b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2023-11-24 16:26 Michał Górny
  0 siblings, 0 replies; 19+ messages in thread
From: Michał Górny @ 2023-11-24 16:26 UTC (permalink / raw
  To: gentoo-commits

commit:     19a6e011d3420175ac40cdea5e8c5b0429c3f199
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 24 16:25:54 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Nov 24 16:25:54 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19a6e011

dev-python/publicsuffix: Stabilize 2.20191221-r2 arm64, #918310

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

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

diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
index ba61d144be7f..7131666153e2 100644
--- a/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
+++ b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
@@ -24,7 +24,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv ~x86"
 
 RDEPEND="
 	>=dev-python/requests-2.7.0[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/
@ 2024-05-18  7:26 Michał Górny
  0 siblings, 0 replies; 19+ messages in thread
From: Michał Górny @ 2024-05-18  7:26 UTC (permalink / raw
  To: gentoo-commits

commit:     50607c428dabc366cfefbf14c3fa15995ba780ad
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 18 07:18:55 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 18 07:25:59 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50607c42

dev-python/publicsuffix: Enable py3.13

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

 dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
index 7131666153e2..52ebe30b3867 100644
--- a/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
+++ b/dev-python/publicsuffix/publicsuffix-2.20191221-r2.ebuild
@@ -1,10 +1,10 @@
-# Copyright 2020-2023 Gentoo Authors
+# Copyright 2020-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit distutils-r1
 
@@ -15,6 +15,7 @@ MY_P=python-publicsuffix2-${MY_PV}
 DESCRIPTION="Get a public suffix for a domain name using the Public Suffix List"
 HOMEPAGE="
 	https://github.com/nexB/python-publicsuffix2/
+	https://pypi.org/project/publicsuffix2/
 "
 SRC_URI="
 	https://github.com/nexB/python-publicsuffix2/archive/${MY_PV}.tar.gz


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

end of thread, other threads:[~2024-05-18  7:26 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-02 19:06 [gentoo-commits] repo/gentoo:master commit in: dev-python/publicsuffix/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-05-18  7:26 Michał Górny
2023-11-24 16:26 Michał Górny
2023-06-01 13:40 Michał Górny
2023-01-27 16:13 Arthur Zamarin
2022-06-11 11:32 Yixun Lan
2022-05-21 19:25 Michał Górny
2022-05-21 17:35 Jakov Smolić
2022-04-18  8:19 Michał Górny
2021-10-03 19:27 Michał Górny
2021-10-03 18:48 Sam James
2021-09-02 19:06 Arthur Zamarin
2021-09-02 19:06 Arthur Zamarin
2021-03-01  9:20 Agostino Sarubbo
2020-11-05 12:32 Joonas Niilola
2020-05-04 11:39 Michał Górny
2020-04-21 18:21 Matthew Thode
2020-03-17 10:13 Michał Górny
2019-07-27 23:19 Matthew Thode

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