[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2024-07-07 Thread Michał Górny
commit: 7a3f3b251d8ecf799ebf986fa4e365cb5abc6f00
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jul  7 16:05:50 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul  7 16:17:22 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a3f3b25

dev-python/pyspelling: Enable py3.13

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

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

diff --git a/dev-python/pyspelling/pyspelling-2.10.ebuild 
b/dev-python/pyspelling/pyspelling-2.10.ebuild
index 012a10ab9750..d288bb13f41e 100644
--- a/dev-python/pyspelling/pyspelling-2.10.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.10.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 DISTUTILS_USE_PEP517=hatchling
 
 DOCS_BUILDER="mkdocs"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2024-01-29 Thread Michał Górny
commit: 0c31c220ba8c6e944f4502a5bdf3590577f294c4
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 29 10:09:52 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 29 10:09:52 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c31c220

dev-python/pyspelling: Remove old

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

 dev-python/pyspelling/Manifest  |  1 -
 dev-python/pyspelling/pyspelling-2.9.ebuild | 67 -
 2 files changed, 68 deletions(-)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index de8f00e7b5b4..ce788e5aad75 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1,2 +1 @@
 DIST pyspelling-2.10.gh.tar.gz 152528 BLAKE2B 
47ef182fb09bc3ec44b6c15da76f0d53266276ec807036378a3f5ae94daf98d3b3a49995ce2d12044c81743ee76d8b79547d84ae3c820be1f30161c75a654ba4
 SHA512 
dfe0d0c211555331dd6d97e06ce64ac2efbe5cc6172f684ca3b1802a8454b957781022375a9a53a2f522f4bd3bbf4e5892ab6be266bcfbe69c4861d95db00ab0
-DIST pyspelling-2.9.gh.tar.gz 151600 BLAKE2B 
c706767917e9ba3368f9670a492a2233b6a4c13c4dde6a594a06193d856b3fbad007988acb27486b8b8f62edfeb5a0b030ead3db712baa24b0ff3301cf776937
 SHA512 
b14d29dff4f7791d9223d20b490f4a48ba5a6a7613dc18fc3083a3b6bf810f9a42fcac94bfe72f92023802fc8c1fe0e6432d491af2f274a138ddc56db5550ea5

diff --git a/dev-python/pyspelling/pyspelling-2.9.ebuild 
b/dev-python/pyspelling/pyspelling-2.9.ebuild
deleted file mode 100644
index 391dfcdb9bc4..
--- a/dev-python/pyspelling/pyspelling-2.9.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-DISTUTILS_USE_PEP517=hatchling
-
-DOCS_BUILDER="mkdocs"
-DOCS_DEPEND="
-   >=dev-python/mkdocs-pymdownx-material-extras-2.1
-   dev-python/mkdocs-git-revision-date-localized-plugin
-   dev-python/mkdocs-minify-plugin
-"
-
-inherit distutils-r1 docs
-
-DESCRIPTION="Spell checker automation tool"
-HOMEPAGE="
-   https://github.com/facelessuser/pyspelling/
-   https://pypi.org/project/pyspelling/
-"
-SRC_URI="
-   https://github.com/facelessuser/pyspelling/archive/${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86"
-
-RDEPEND="
-   || ( app-text/aspell app-text/hunspell )
-
-   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
-   dev-python/html5lib[${PYTHON_USEDEP}]
-   dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/markdown[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
-   >=dev-python/wcmatch-6.5[${PYTHON_USEDEP}]
-"
-# The package can use either aspell or hunspell but tests both if both
-# are installed.  Therefore, we need to ensure that both have English
-# dictionary installed.
-BDEPEND="
-   test? (
-   app-dicts/aspell-en
-   app-dicts/myspell-en
-   dev-vcs/git
-   )
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # mkdocs-git-revision-date-localized-plugin needs git repo
-   if use doc; then
-   git init -q || die
-   git config --global user.email "y...@example.com" || die
-   git config --global user.name "Your Name" || die
-   git add . || die
-   git commit -q -m 'init' || die
-   fi
-
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2024-01-29 Thread Joonas Niilola
commit: 3ed2d5688675a055ce3db6c5481cca7382c2e093
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Jan 29 08:00:17 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Jan 29 08:00:17 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ed2d568

dev-python/pyspelling: Stabilize 2.10 ALLARCHES, #923215

Signed-off-by: Joonas Niilola  gentoo.org>

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

diff --git a/dev-python/pyspelling/pyspelling-2.10.ebuild 
b/dev-python/pyspelling/pyspelling-2.10.ebuild
index 15d322559263..012a10ab9750 100644
--- a/dev-python/pyspelling/pyspelling-2.10.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.10.ebuild
@@ -27,7 +27,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86"
 
 RDEPEND="
|| ( app-text/aspell app-text/hunspell )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2024-01-13 Thread Michał Górny
commit: 4ad87b42ff3efb5cda20078726ab6da98c675ba9
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan 13 06:56:32 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan 13 08:19:52 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ad87b42

dev-python/pyspelling: Bump to 2.10

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

 dev-python/pyspelling/Manifest   |  1 +
 dev-python/pyspelling/pyspelling-2.10.ebuild | 67 
 2 files changed, 68 insertions(+)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index d63c2bca40f3..de8f00e7b5b4 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1 +1,2 @@
+DIST pyspelling-2.10.gh.tar.gz 152528 BLAKE2B 
47ef182fb09bc3ec44b6c15da76f0d53266276ec807036378a3f5ae94daf98d3b3a49995ce2d12044c81743ee76d8b79547d84ae3c820be1f30161c75a654ba4
 SHA512 
dfe0d0c211555331dd6d97e06ce64ac2efbe5cc6172f684ca3b1802a8454b957781022375a9a53a2f522f4bd3bbf4e5892ab6be266bcfbe69c4861d95db00ab0
 DIST pyspelling-2.9.gh.tar.gz 151600 BLAKE2B 
c706767917e9ba3368f9670a492a2233b6a4c13c4dde6a594a06193d856b3fbad007988acb27486b8b8f62edfeb5a0b030ead3db712baa24b0ff3301cf776937
 SHA512 
b14d29dff4f7791d9223d20b490f4a48ba5a6a7613dc18fc3083a3b6bf810f9a42fcac94bfe72f92023802fc8c1fe0e6432d491af2f274a138ddc56db5550ea5

diff --git a/dev-python/pyspelling/pyspelling-2.10.ebuild 
b/dev-python/pyspelling/pyspelling-2.10.ebuild
new file mode 100644
index ..15d322559263
--- /dev/null
+++ b/dev-python/pyspelling/pyspelling-2.10.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_USE_PEP517=hatchling
+
+DOCS_BUILDER="mkdocs"
+DOCS_DEPEND="
+   >=dev-python/mkdocs-pymdownx-material-extras-2.1
+   dev-python/mkdocs-git-revision-date-localized-plugin
+   dev-python/mkdocs-minify-plugin
+"
+
+inherit distutils-r1 docs
+
+DESCRIPTION="Spell checker automation tool"
+HOMEPAGE="
+   https://github.com/facelessuser/pyspelling/
+   https://pypi.org/project/pyspelling/
+"
+SRC_URI="
+   https://github.com/facelessuser/pyspelling/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   || ( app-text/aspell app-text/hunspell )
+
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/html5lib[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/markdown[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
+   >=dev-python/wcmatch-6.5[${PYTHON_USEDEP}]
+"
+# The package can use either aspell or hunspell but tests both if both
+# are installed.  Therefore, we need to ensure that both have English
+# dictionary installed.
+BDEPEND="
+   test? (
+   app-dicts/aspell-en
+   app-dicts/myspell-en
+   dev-vcs/git
+   )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # mkdocs-git-revision-date-localized-plugin needs git repo
+   if use doc; then
+   git init -q || die
+   git config --global user.email "y...@example.com" || die
+   git config --global user.name "Your Name" || die
+   git add . || die
+   git commit -q -m 'init' || die
+   fi
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2023-12-19 Thread Michał Górny
commit: 2d51cd50f61b26aa958e448dfb1508c46d08970c
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec 19 16:33:10 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec 19 16:33:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d51cd50

dev-python/pyspelling: Add test dep on English dictionaries

Bug: https://bugs.gentoo.org/918329
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pyspelling/pyspelling-2.9.ebuild | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/dev-python/pyspelling/pyspelling-2.9.ebuild 
b/dev-python/pyspelling/pyspelling-2.9.ebuild
index c541c4c3db44..5cb7f5346224 100644
--- a/dev-python/pyspelling/pyspelling-2.9.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.9.ebuild
@@ -40,9 +40,13 @@ RDEPEND="
>=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
>=dev-python/wcmatch-6.5[${PYTHON_USEDEP}]
 "
-
+# The package can use either aspell or hunspell but tests both if both
+# are installed.  Therefore, we need to ensure that both have English
+# dictionary installed.
 BDEPEND="
test? (
+   app-dicts/aspell-en
+   app-dicts/myspell-en
dev-vcs/git
)
 "
@@ -52,11 +56,11 @@ distutils_enable_tests pytest
 python_prepare_all() {
# mkdocs-git-revision-date-localized-plugin needs git repo
if use doc; then
-   git init || die
+   git init -q || die
git config --global user.email "y...@example.com" || die
git config --global user.name "Your Name" || die
git add . || die
-   git commit -m 'init' || die
+   git commit -q -m 'init' || die
fi
 
distutils-r1_python_prepare_all



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2023-10-14 Thread Michał Górny
commit: d675af35fe8be3805b9e50ed31f9b9af7bc3aecf
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Oct 14 18:31:18 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Oct 14 18:32:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d675af35

dev-python/pyspelling: Remove old

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

 dev-python/pyspelling/Manifest|  1 -
 dev-python/pyspelling/pyspelling-2.8.2.ebuild | 63 ---
 2 files changed, 64 deletions(-)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index ad31b18800b9..d63c2bca40f3 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1,2 +1 @@
-DIST pyspelling-2.8.2.gh.tar.gz 150733 BLAKE2B 
1bb96679ce54d48967ee57a7dde00131884e2801a8a4f4e016f9a552b92d435650314ae66a356c90e3e4c585d2701bfc5e63f19b92347c8fada4de64e9a982b6
 SHA512 
0bb4fbacbc72935d4fb2fa0608d675fd0eec85f178c0994d341bc8635b53f39a4c82a1d50e43446cd39873a877e75b1530eafc36450f37d8f08cc174ba39e440
 DIST pyspelling-2.9.gh.tar.gz 151600 BLAKE2B 
c706767917e9ba3368f9670a492a2233b6a4c13c4dde6a594a06193d856b3fbad007988acb27486b8b8f62edfeb5a0b030ead3db712baa24b0ff3301cf776937
 SHA512 
b14d29dff4f7791d9223d20b490f4a48ba5a6a7613dc18fc3083a3b6bf810f9a42fcac94bfe72f92023802fc8c1fe0e6432d491af2f274a138ddc56db5550ea5

diff --git a/dev-python/pyspelling/pyspelling-2.8.2.ebuild 
b/dev-python/pyspelling/pyspelling-2.8.2.ebuild
deleted file mode 100644
index f42a7989253e..
--- a/dev-python/pyspelling/pyspelling-2.8.2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-DISTUTILS_USE_PEP517=hatchling
-
-DOCS_BUILDER="mkdocs"
-DOCS_DEPEND="
-   >=dev-python/mkdocs-pymdownx-material-extras-2.1
-   dev-python/mkdocs-git-revision-date-localized-plugin
-   dev-python/mkdocs-minify-plugin
-"
-
-inherit distutils-r1 docs
-
-DESCRIPTION="Spell checker automation tool"
-HOMEPAGE="
-   https://github.com/facelessuser/pyspelling/
-   https://pypi.org/project/pyspelling/
-"
-SRC_URI="
-   https://github.com/facelessuser/pyspelling/archive/${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86"
-
-RDEPEND="
-   || ( app-text/aspell app-text/hunspell )
-
-   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
-   dev-python/html5lib[${PYTHON_USEDEP}]
-   dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/markdown[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
-   >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-   test? (
-   dev-vcs/git
-   )
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # mkdocs-git-revision-date-localized-plugin needs git repo
-   if use doc; then
-   git init || die
-   git config --global user.email "y...@example.com" || die
-   git config --global user.name "Your Name" || die
-   git add . || die
-   git commit -m 'init' || die
-   fi
-
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2023-10-14 Thread Arthur Zamarin
commit: 9def8082cff36cd227ab9330b395fef328a09935
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Oct 14 16:50:37 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Oct 14 16:50:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9def8082

dev-python/pyspelling: Stabilize 2.9 ALLARCHES, #915754

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pyspelling/pyspelling-2.9.ebuild 
b/dev-python/pyspelling/pyspelling-2.9.ebuild
index 921df21e8e39..c541c4c3db44 100644
--- a/dev-python/pyspelling/pyspelling-2.9.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.9.ebuild
@@ -27,7 +27,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86"
 
 RDEPEND="
|| ( app-text/aspell app-text/hunspell )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2023-09-14 Thread Andrew Ammerlaan
commit: 44b7847627d48ff2c7e6f24a80cbe9560112a1df
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:16:20 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44b78476

dev-python/pyspelling: drop myself as a maintainer

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/pyspelling/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-python/pyspelling/metadata.xml 
b/dev-python/pyspelling/metadata.xml
index f2f1fdc55a35..146f18f871be 100644
--- a/dev-python/pyspelling/metadata.xml
+++ b/dev-python/pyspelling/metadata.xml
@@ -5,10 +5,6 @@
lssndrbarbi...@gmail.com
Alessandro Barbieri

-   
-   andrewammerl...@gentoo.org
-   Andrew Ammerlaan
-   

proxy-ma...@gentoo.org
Proxy Maintainers



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2023-09-14 Thread Andrew Ammerlaan
commit: 00fe800a693a38f9f23ba0cb18794020c1c21f9f
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:16:06 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00fe800a

dev-python/pyspelling: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/pyspelling/pyspelling-2.9.ebuild 
b/dev-python/pyspelling/pyspelling-2.9.ebuild
index d491558b8691..921df21e8e39 100644
--- a/dev-python/pyspelling/pyspelling-2.9.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.9.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=hatchling
 
 DOCS_BUILDER="mkdocs"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2023-09-02 Thread Michał Górny
commit: afa90f02f49e792c4b56c6a85be2f70f3de20085
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Sep  3 04:09:27 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Sep  3 04:12:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afa90f02

dev-python/pyspelling: Bump to 2.9

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

 dev-python/pyspelling/Manifest  |  1 +
 dev-python/pyspelling/pyspelling-2.9.ebuild | 63 +
 2 files changed, 64 insertions(+)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index c59be4962736..ad31b18800b9 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1 +1,2 @@
 DIST pyspelling-2.8.2.gh.tar.gz 150733 BLAKE2B 
1bb96679ce54d48967ee57a7dde00131884e2801a8a4f4e016f9a552b92d435650314ae66a356c90e3e4c585d2701bfc5e63f19b92347c8fada4de64e9a982b6
 SHA512 
0bb4fbacbc72935d4fb2fa0608d675fd0eec85f178c0994d341bc8635b53f39a4c82a1d50e43446cd39873a877e75b1530eafc36450f37d8f08cc174ba39e440
+DIST pyspelling-2.9.gh.tar.gz 151600 BLAKE2B 
c706767917e9ba3368f9670a492a2233b6a4c13c4dde6a594a06193d856b3fbad007988acb27486b8b8f62edfeb5a0b030ead3db712baa24b0ff3301cf776937
 SHA512 
b14d29dff4f7791d9223d20b490f4a48ba5a6a7613dc18fc3083a3b6bf810f9a42fcac94bfe72f92023802fc8c1fe0e6432d491af2f274a138ddc56db5550ea5

diff --git a/dev-python/pyspelling/pyspelling-2.9.ebuild 
b/dev-python/pyspelling/pyspelling-2.9.ebuild
new file mode 100644
index ..d491558b8691
--- /dev/null
+++ b/dev-python/pyspelling/pyspelling-2.9.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_PEP517=hatchling
+
+DOCS_BUILDER="mkdocs"
+DOCS_DEPEND="
+   >=dev-python/mkdocs-pymdownx-material-extras-2.1
+   dev-python/mkdocs-git-revision-date-localized-plugin
+   dev-python/mkdocs-minify-plugin
+"
+
+inherit distutils-r1 docs
+
+DESCRIPTION="Spell checker automation tool"
+HOMEPAGE="
+   https://github.com/facelessuser/pyspelling/
+   https://pypi.org/project/pyspelling/
+"
+SRC_URI="
+   https://github.com/facelessuser/pyspelling/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   || ( app-text/aspell app-text/hunspell )
+
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/html5lib[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/markdown[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
+   >=dev-python/wcmatch-6.5[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   dev-vcs/git
+   )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # mkdocs-git-revision-date-localized-plugin needs git repo
+   if use doc; then
+   git init || die
+   git config --global user.email "y...@example.com" || die
+   git config --global user.name "Your Name" || die
+   git add . || die
+   git commit -m 'init' || die
+   fi
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2023-04-14 Thread Sam James
commit: 79d1671e1f0d3855913bf5179c318ee02667add5
Author: Sam James  gentoo  org>
AuthorDate: Fri Apr 14 19:37:33 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Apr 14 19:37:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79d1671e

dev-python/pyspelling: Keyword 2.8.2 ppc64, #888513

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/pyspelling/pyspelling-2.8.2.ebuild 
b/dev-python/pyspelling/pyspelling-2.8.2.ebuild
index 2d218fdb2a75..f42a7989253e 100644
--- a/dev-python/pyspelling/pyspelling-2.8.2.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.8.2.ebuild
@@ -27,7 +27,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~riscv x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86"
 
 RDEPEND="
|| ( app-text/aspell app-text/hunspell )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2023-04-13 Thread Sam James
commit: 08b63c06c16653eeabada6d46b194b0a5c2a9ee9
Author: Sam James  gentoo  org>
AuthorDate: Fri Apr 14 04:03:05 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Apr 14 04:03:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08b63c06

dev-python/pyspelling: Keyword 2.8.2 arm64, #888513

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/pyspelling/pyspelling-2.8.2.ebuild 
b/dev-python/pyspelling/pyspelling-2.8.2.ebuild
index 03913d2033b5..2d218fdb2a75 100644
--- a/dev-python/pyspelling/pyspelling-2.8.2.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.8.2.ebuild
@@ -27,7 +27,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~riscv x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~riscv x86"
 
 RDEPEND="
|| ( app-text/aspell app-text/hunspell )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2023-03-30 Thread Michał Górny
commit: c3a8359ce797077288d247f8fbd9c1ba61fecfce
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 30 16:09:58 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 30 16:19:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3a8359c

dev-python/pyspelling: Remove old

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

 dev-python/pyspelling/Manifest|  1 -
 dev-python/pyspelling/pyspelling-2.8.1.ebuild | 63 ---
 2 files changed, 64 deletions(-)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index 200c80125eff..c59be4962736 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1,2 +1 @@
-DIST pyspelling-2.8.1.gh.tar.gz 150813 BLAKE2B 
53df7ae453180007af08fe3928274f9a468f7d24cc5f00b85efbda0febe9532f7b57805b54c2e28c3580e34de383a249bb293b1f89905d2b09c1a70853d12fd3
 SHA512 
24e9b03b3f5c911e2cd32a5594813fad5fce3fe5cc8c570fdaf4a025aebe8d02d2b77542d6e940cb03350df3203f1a9961a3f446fd60d66250a3cff7c54534de
 DIST pyspelling-2.8.2.gh.tar.gz 150733 BLAKE2B 
1bb96679ce54d48967ee57a7dde00131884e2801a8a4f4e016f9a552b92d435650314ae66a356c90e3e4c585d2701bfc5e63f19b92347c8fada4de64e9a982b6
 SHA512 
0bb4fbacbc72935d4fb2fa0608d675fd0eec85f178c0994d341bc8635b53f39a4c82a1d50e43446cd39873a877e75b1530eafc36450f37d8f08cc174ba39e440

diff --git a/dev-python/pyspelling/pyspelling-2.8.1.ebuild 
b/dev-python/pyspelling/pyspelling-2.8.1.ebuild
deleted file mode 100644
index 0e4fb80a6ac3..
--- a/dev-python/pyspelling/pyspelling-2.8.1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-DISTUTILS_USE_PEP517=hatchling
-
-DOCS_BUILDER="mkdocs"
-DOCS_DEPEND="
-   >=dev-python/mkdocs_pymdownx_material_extras-2.1
-   dev-python/mkdocs-git-revision-date-localized-plugin
-   dev-python/mkdocs-minify-plugin
-"
-
-inherit distutils-r1 docs
-
-DESCRIPTION="Spell checker automation tool"
-HOMEPAGE="
-   https://github.com/facelessuser/pyspelling/
-   https://pypi.org/project/pyspelling/
-"
-SRC_URI="
-   https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~riscv x86"
-
-RDEPEND="
-   || ( app-text/aspell app-text/hunspell )
-
-   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
-   dev-python/html5lib[${PYTHON_USEDEP}]
-   dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/markdown[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
-   >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-   test? (
-   dev-vcs/git
-   )
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # mkdocs-git-revision-date-localized-plugin needs git repo
-   if use doc; then
-   git init || die
-   git config --global user.email "y...@example.com" || die
-   git config --global user.name "Your Name" || die
-   git add . || die
-   git commit -m 'init' || die
-   fi
-
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2023-03-30 Thread Arthur Zamarin
commit: 1cdbb565d2d8c9f6e60c8ea0b6dba279629c320c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Mar 30 15:58:17 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Mar 30 15:58:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cdbb565

dev-python/pyspelling: Stabilize 2.8.2 ALLARCHES, #903225

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pyspelling/pyspelling-2.8.2.ebuild 
b/dev-python/pyspelling/pyspelling-2.8.2.ebuild
index e6e5fc522f8f..39b4dd5d22e9 100644
--- a/dev-python/pyspelling/pyspelling-2.8.2.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.8.2.ebuild
@@ -27,7 +27,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~riscv x86"
 
 RDEPEND="
|| ( app-text/aspell app-text/hunspell )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2023-02-24 Thread Arthur Zamarin
commit: c7e174849733b5f224c47e8c5ff8f0ea98436ba1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Feb 25 05:46:57 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Feb 25 05:46:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7e17484

dev-python/pyspelling: Keyword 2.8.2 arm, #888513

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pyspelling/pyspelling-2.8.2.ebuild 
b/dev-python/pyspelling/pyspelling-2.8.2.ebuild
index bc8625e26b3e..e6e5fc522f8f 100644
--- a/dev-python/pyspelling/pyspelling-2.8.2.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.8.2.ebuild
@@ -27,7 +27,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~riscv ~x86"
 
 RDEPEND="
|| ( app-text/aspell app-text/hunspell )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2023-02-17 Thread Michał Górny
commit: 0413293af4a3bf3ff0040e2c0f0c6801394daf17
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 16:59:07 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 18:51:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0413293a

dev-python/pyspelling: Bump to 2.8.2

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

 dev-python/pyspelling/Manifest|  1 +
 dev-python/pyspelling/pyspelling-2.8.2.ebuild | 63 +++
 2 files changed, 64 insertions(+)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index 762afccb68e7..200c80125eff 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1 +1,2 @@
 DIST pyspelling-2.8.1.gh.tar.gz 150813 BLAKE2B 
53df7ae453180007af08fe3928274f9a468f7d24cc5f00b85efbda0febe9532f7b57805b54c2e28c3580e34de383a249bb293b1f89905d2b09c1a70853d12fd3
 SHA512 
24e9b03b3f5c911e2cd32a5594813fad5fce3fe5cc8c570fdaf4a025aebe8d02d2b77542d6e940cb03350df3203f1a9961a3f446fd60d66250a3cff7c54534de
+DIST pyspelling-2.8.2.gh.tar.gz 150733 BLAKE2B 
1bb96679ce54d48967ee57a7dde00131884e2801a8a4f4e016f9a552b92d435650314ae66a356c90e3e4c585d2701bfc5e63f19b92347c8fada4de64e9a982b6
 SHA512 
0bb4fbacbc72935d4fb2fa0608d675fd0eec85f178c0994d341bc8635b53f39a4c82a1d50e43446cd39873a877e75b1530eafc36450f37d8f08cc174ba39e440

diff --git a/dev-python/pyspelling/pyspelling-2.8.2.ebuild 
b/dev-python/pyspelling/pyspelling-2.8.2.ebuild
new file mode 100644
index ..bc8625e26b3e
--- /dev/null
+++ b/dev-python/pyspelling/pyspelling-2.8.2.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+DISTUTILS_USE_PEP517=hatchling
+
+DOCS_BUILDER="mkdocs"
+DOCS_DEPEND="
+   >=dev-python/mkdocs_pymdownx_material_extras-2.1
+   dev-python/mkdocs-git-revision-date-localized-plugin
+   dev-python/mkdocs-minify-plugin
+"
+
+inherit distutils-r1 docs
+
+DESCRIPTION="Spell checker automation tool"
+HOMEPAGE="
+   https://github.com/facelessuser/pyspelling/
+   https://pypi.org/project/pyspelling/
+"
+SRC_URI="
+   https://github.com/facelessuser/pyspelling/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~riscv ~x86"
+
+RDEPEND="
+   || ( app-text/aspell app-text/hunspell )
+
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/html5lib[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/markdown[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
+   >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   dev-vcs/git
+   )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # mkdocs-git-revision-date-localized-plugin needs git repo
+   if use doc; then
+   git init || die
+   git config --global user.email "y...@example.com" || die
+   git config --global user.name "Your Name" || die
+   git add . || die
+   git commit -m 'init' || die
+   fi
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2023-01-14 Thread Arthur Zamarin
commit: fd9168d09673bc12a8de3de506c54f68f12256da
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jan 14 09:59:57 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jan 14 09:59:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd9168d0

dev-python/pyspelling: Keyword 2.8.1 ppc, #888513

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pyspelling/pyspelling-2.8.1.ebuild 
b/dev-python/pyspelling/pyspelling-2.8.1.ebuild
index a152ea4c3a00..a15863533cc7 100644
--- a/dev-python/pyspelling/pyspelling-2.8.1.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.8.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -27,7 +27,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
+KEYWORDS="amd64 ~ppc ~riscv x86"
 
 RDEPEND="
|| ( app-text/aspell app-text/hunspell )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2022-08-19 Thread Michał Górny
commit: 9937cfa9112ac16709e91e712886f4f6f96cc6d8
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Aug 19 09:01:49 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Aug 19 09:27:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9937cfa9

dev-python/pyspelling: Remove old

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

 dev-python/pyspelling/Manifest|  1 -
 dev-python/pyspelling/pyspelling-2.7.3.ebuild | 53 ---
 2 files changed, 54 deletions(-)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index 1d761802f7da..762afccb68e7 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1,2 +1 @@
-DIST pyspelling-2.7.3.tar.gz 151244 BLAKE2B 
bdfb40c6f39dc5adcc31691ef75b2582e78e8d0ed800ef0e263f8f98987ce3911650cb08085315c617c185e6ef183a11508fde4608349d0dad435b9f4fe1da98
 SHA512 
6903b620993933e80dfef320c0218c6372ee37f1db958b489d273aca24dd91bcc86fd12967848b8e31c2d7d458fb5fbfb521f41328c5955a1914f7d552ae7341
 DIST pyspelling-2.8.1.gh.tar.gz 150813 BLAKE2B 
53df7ae453180007af08fe3928274f9a468f7d24cc5f00b85efbda0febe9532f7b57805b54c2e28c3580e34de383a249bb293b1f89905d2b09c1a70853d12fd3
 SHA512 
24e9b03b3f5c911e2cd32a5594813fad5fce3fe5cc8c570fdaf4a025aebe8d02d2b77542d6e940cb03350df3203f1a9961a3f446fd60d66250a3cff7c54534de

diff --git a/dev-python/pyspelling/pyspelling-2.7.3.ebuild 
b/dev-python/pyspelling/pyspelling-2.7.3.ebuild
deleted file mode 100644
index baecf3bf8bfd..
--- a/dev-python/pyspelling/pyspelling-2.7.3.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-DISTUTILS_USE_PEP517=setuptools
-
-DOCS_BUILDER="mkdocs"
-DOCS_DEPEND="
-   ~dev-python/mkdocs_pymdownx_material_extras-1.1.3
-   dev-python/mkdocs-git-revision-date-localized-plugin
-   dev-python/mkdocs-minify-plugin
-"
-
-inherit distutils-r1 docs
-
-DESCRIPTION="Spell checker automation tool"
-HOMEPAGE="https://github.com/facelessuser/pyspelling";
-SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
-
-RDEPEND="
-   || ( app-text/aspell app-text/hunspell )
-
-   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
-   dev-python/html5lib[${PYTHON_USEDEP}]
-   dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/markdown[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
-   >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}]
-"
-
-BDEPEND="test? ( dev-vcs/git )"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # mkdocs-git-revision-date-localized-plugin needs git repo
-   if use doc; then
-   git init || die
-   git config --global user.email "y...@example.com" || die
-   git config --global user.name "Your Name" || die
-   git add . || die
-   git commit -m 'init' || die
-   fi
-
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2022-08-19 Thread Joonas Niilola
commit: ee492034ab1b1d796e46c65ebed7ba5f97dfae6c
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Aug 19 08:08:13 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Aug 19 08:15:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee492034

dev-python/pyspelling: Stabilize 2.8.1 ALLARCHES, #865761

Signed-off-by: Joonas Niilola  gentoo.org>

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

diff --git a/dev-python/pyspelling/pyspelling-2.8.1.ebuild 
b/dev-python/pyspelling/pyspelling-2.8.1.ebuild
index f28ee2f060ea..a152ea4c3a00 100644
--- a/dev-python/pyspelling/pyspelling-2.8.1.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.8.1.ebuild
@@ -27,7 +27,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv ~x86"
+KEYWORDS="amd64 ~riscv x86"
 
 RDEPEND="
|| ( app-text/aspell app-text/hunspell )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2022-07-19 Thread Michał Górny
commit: 4409bf1c86d7f56a5c34315df3a16d7fed55e2dc
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jul 19 07:03:14 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jul 19 07:03:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4409bf1c

dev-python/pyspelling: Bump to 2.8.1

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

 dev-python/pyspelling/Manifest|  1 +
 dev-python/pyspelling/pyspelling-2.8.1.ebuild | 63 +++
 2 files changed, 64 insertions(+)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index 5ff63dc7..1d761802f7da 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1 +1,2 @@
 DIST pyspelling-2.7.3.tar.gz 151244 BLAKE2B 
bdfb40c6f39dc5adcc31691ef75b2582e78e8d0ed800ef0e263f8f98987ce3911650cb08085315c617c185e6ef183a11508fde4608349d0dad435b9f4fe1da98
 SHA512 
6903b620993933e80dfef320c0218c6372ee37f1db958b489d273aca24dd91bcc86fd12967848b8e31c2d7d458fb5fbfb521f41328c5955a1914f7d552ae7341
+DIST pyspelling-2.8.1.gh.tar.gz 150813 BLAKE2B 
53df7ae453180007af08fe3928274f9a468f7d24cc5f00b85efbda0febe9532f7b57805b54c2e28c3580e34de383a249bb293b1f89905d2b09c1a70853d12fd3
 SHA512 
24e9b03b3f5c911e2cd32a5594813fad5fce3fe5cc8c570fdaf4a025aebe8d02d2b77542d6e940cb03350df3203f1a9961a3f446fd60d66250a3cff7c54534de

diff --git a/dev-python/pyspelling/pyspelling-2.8.1.ebuild 
b/dev-python/pyspelling/pyspelling-2.8.1.ebuild
new file mode 100644
index ..f28ee2f060ea
--- /dev/null
+++ b/dev-python/pyspelling/pyspelling-2.8.1.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_USE_PEP517=hatchling
+
+DOCS_BUILDER="mkdocs"
+DOCS_DEPEND="
+   >=dev-python/mkdocs_pymdownx_material_extras-2.1
+   dev-python/mkdocs-git-revision-date-localized-plugin
+   dev-python/mkdocs-minify-plugin
+"
+
+inherit distutils-r1 docs
+
+DESCRIPTION="Spell checker automation tool"
+HOMEPAGE="
+   https://github.com/facelessuser/pyspelling/
+   https://pypi.org/project/pyspelling/
+"
+SRC_URI="
+   https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
+
+RDEPEND="
+   || ( app-text/aspell app-text/hunspell )
+
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/html5lib[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/markdown[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
+   >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   dev-vcs/git
+   )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # mkdocs-git-revision-date-localized-plugin needs git repo
+   if use doc; then
+   git init || die
+   git config --global user.email "y...@example.com" || die
+   git config --global user.name "Your Name" || die
+   git add . || die
+   git commit -m 'init' || die
+   fi
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2022-06-04 Thread Michał Górny
commit: b4d7af2122ad0af04f52291f436fa51747f2e1ad
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun  5 05:39:40 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun  5 05:40:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4d7af21

dev-python/pyspelling: Add python@ as co-maint.

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

 dev-python/pyspelling/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/pyspelling/metadata.xml 
b/dev-python/pyspelling/metadata.xml
index 4acf9d94155e..f2f1fdc55a35 100644
--- a/dev-python/pyspelling/metadata.xml
+++ b/dev-python/pyspelling/metadata.xml
@@ -13,6 +13,10 @@
proxy-ma...@gentoo.org
Proxy Maintainers

+   
+   pyt...@gentoo.org
+   Python
+   


facelessuser/pyspelling



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2022-05-17 Thread Andrew Ammerlaan
commit: 56786ee3b927959527a671d6056e946ecf6c8640
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Tue May 17 11:29:45 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue May 17 12:19:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56786ee3

dev-python/pyspelling: enable py3.11

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/pyspelling/pyspelling-2.7.3.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-python/pyspelling/pyspelling-2.7.3.ebuild 
b/dev-python/pyspelling/pyspelling-2.7.3.ebuild
index 9a2227b6667c..baecf3bf8bfd 100644
--- a/dev-python/pyspelling/pyspelling-2.7.3.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.7.3.ebuild
@@ -1,9 +1,10 @@
-# 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} )
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_USE_PEP517=setuptools
 
 DOCS_BUILDER="mkdocs"
 DOCS_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2021-10-10 Thread Michał Górny
commit: 3de575e9fb508a71ef305e8b1844385da5680481
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct 10 16:17:59 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct 10 16:17:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3de575e9

dev-python/pyspelling: Remove old

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

 dev-python/pyspelling/Manifest|  1 -
 dev-python/pyspelling/pyspelling-2.7.2.ebuild | 54 ---
 2 files changed, 55 deletions(-)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index 74bf61f4aef..5ff63dc 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1,2 +1 @@
-DIST pyspelling-2.7.2.tar.gz 150911 BLAKE2B 
813eca2c4bdf377fd7babec376dd2991713db59c66b509c656cb24a314776c2cc360ec9ff884baec6607f27cae3169672746580d3c58abad35dbfe9f605fc51e
 SHA512 
2937c1985ec6f27713275d9f31d3529e35f219df211be0ac9f1ae89d5c92a1e52c51b982291be7bd25375eb6404f52ac0ad893afbe73aada1fb03923dc09f721
 DIST pyspelling-2.7.3.tar.gz 151244 BLAKE2B 
bdfb40c6f39dc5adcc31691ef75b2582e78e8d0ed800ef0e263f8f98987ce3911650cb08085315c617c185e6ef183a11508fde4608349d0dad435b9f4fe1da98
 SHA512 
6903b620993933e80dfef320c0218c6372ee37f1db958b489d273aca24dd91bcc86fd12967848b8e31c2d7d458fb5fbfb521f41328c5955a1914f7d552ae7341

diff --git a/dev-python/pyspelling/pyspelling-2.7.2.ebuild 
b/dev-python/pyspelling/pyspelling-2.7.2.ebuild
deleted file mode 100644
index ad241ebe9e0..000
--- a/dev-python/pyspelling/pyspelling-2.7.2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-DOCS_BUILDER="mkdocs"
-DOCS_DEPEND="
-   ~dev-python/mkdocs_pymdownx_material_extras-1.1.3
-   dev-python/mkdocs-git-revision-date-localized-plugin
-   dev-python/mkdocs-minify-plugin
-"
-
-inherit distutils-r1 docs
-
-DESCRIPTION="Spell checker automation tool"
-HOMEPAGE="https://github.com/facelessuser/pyspelling";
-SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   || ( app-text/aspell app-text/hunspell )
-
-   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
-   dev-python/html5lib[${PYTHON_USEDEP}]
-   dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/markdown[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
-   >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}]
-"
-
-BDEPEND="test? ( dev-vcs/git )"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # mkdocs-git-revision-date-localized-plugin needs git repo
-   if use doc; then
-   git init || die
-   git config --global user.email "y...@example.com" || die
-   git config --global user.name "Your Name" || die
-   git add . || die
-   git commit -m 'init' || die
-   fi
-
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2021-10-10 Thread Agostino Sarubbo
commit: edd90d6b8f111ccacd4ffb47fe5535e1e2e575d4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Oct 10 15:30:22 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Oct 10 15:30:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edd90d6b

dev-python/pyspelling: amd64/x86 stable (ALLARCHES policy) wrt bug #817083

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/pyspelling/pyspelling-2.7.3.ebuild 
b/dev-python/pyspelling/pyspelling-2.7.3.ebuild
index 409cf76eca5..9a2227b6667 100644
--- a/dev-python/pyspelling/pyspelling-2.7.3.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.7.3.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv ~x86"
+KEYWORDS="amd64 ~riscv x86"
 
 RDEPEND="
|| ( app-text/aspell app-text/hunspell )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2021-09-23 Thread Marek Szuba
commit: d980275a7a88da277e388753a3765d3bb4b61ed8
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Sep 23 15:20:39 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Sep 23 15:35:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d980275a

dev-python/pyspelling: keyword 2.7.3 for ~riscv

Signed-off-by: Marek Szuba  gentoo.org>

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

diff --git a/dev-python/pyspelling/pyspelling-2.7.3.ebuild 
b/dev-python/pyspelling/pyspelling-2.7.3.ebuild
index ecc4d516891..409cf76eca5 100644
--- a/dev-python/pyspelling/pyspelling-2.7.3.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.7.3.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~riscv ~x86"
 
 RDEPEND="
|| ( app-text/aspell app-text/hunspell )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2021-08-06 Thread Michał Górny
commit: 1747de31277d5310d5627b4362e79591f90fda8f
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Aug  7 05:50:43 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Aug  7 06:33:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1747de31

dev-python/pyspelling: Bump to 2.7.3

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

 dev-python/pyspelling/Manifest|  1 +
 dev-python/pyspelling/pyspelling-2.7.3.ebuild | 52 +++
 2 files changed, 53 insertions(+)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index 455a601fa85..74bf61f4aef 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1 +1,2 @@
 DIST pyspelling-2.7.2.tar.gz 150911 BLAKE2B 
813eca2c4bdf377fd7babec376dd2991713db59c66b509c656cb24a314776c2cc360ec9ff884baec6607f27cae3169672746580d3c58abad35dbfe9f605fc51e
 SHA512 
2937c1985ec6f27713275d9f31d3529e35f219df211be0ac9f1ae89d5c92a1e52c51b982291be7bd25375eb6404f52ac0ad893afbe73aada1fb03923dc09f721
+DIST pyspelling-2.7.3.tar.gz 151244 BLAKE2B 
bdfb40c6f39dc5adcc31691ef75b2582e78e8d0ed800ef0e263f8f98987ce3911650cb08085315c617c185e6ef183a11508fde4608349d0dad435b9f4fe1da98
 SHA512 
6903b620993933e80dfef320c0218c6372ee37f1db958b489d273aca24dd91bcc86fd12967848b8e31c2d7d458fb5fbfb521f41328c5955a1914f7d552ae7341

diff --git a/dev-python/pyspelling/pyspelling-2.7.3.ebuild 
b/dev-python/pyspelling/pyspelling-2.7.3.ebuild
new file mode 100644
index 000..73d0ffb1984
--- /dev/null
+++ b/dev-python/pyspelling/pyspelling-2.7.3.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+DOCS_BUILDER="mkdocs"
+DOCS_DEPEND="
+   ~dev-python/mkdocs_pymdownx_material_extras-1.1.3
+   dev-python/mkdocs-git-revision-date-localized-plugin
+   dev-python/mkdocs-minify-plugin
+"
+
+inherit distutils-r1 docs
+
+DESCRIPTION="Spell checker automation tool"
+HOMEPAGE="https://github.com/facelessuser/pyspelling";
+SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   || ( app-text/aspell app-text/hunspell )
+
+   dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+   dev-python/html5lib[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/markdown[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
+   >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}]
+"
+
+BDEPEND="test? ( dev-vcs/git )"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # mkdocs-git-revision-date-localized-plugin needs git repo
+   if use doc; then
+   git init || die
+   git config --global user.email "y...@example.com" || die
+   git config --global user.name "Your Name" || die
+   git add . || die
+   git commit -m 'init' || die
+   fi
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2021-07-15 Thread Agostino Sarubbo
commit: 22330df1cf1d8a3192f8b48f2614974b06a21a47
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jul 15 07:37:07 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jul 15 07:37:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22330df1

dev-python/pyspelling: amd64/x86 stable (ALLARCHES policy) wrt bug #794619

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/pyspelling/pyspelling-2.7.2.ebuild 
b/dev-python/pyspelling/pyspelling-2.7.2.ebuild
index 3d26b00785e..c22deee77ee 100644
--- a/dev-python/pyspelling/pyspelling-2.7.2.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.7.2.ebuild
@@ -22,7 +22,7 @@ 
SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
|| ( app-text/aspell app-text/hunspell )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2021-07-08 Thread Andrew Ammerlaan
commit: 6b067efb323e80d03fd27ca6e4648429465a4c88
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Jul  8 10:31:12 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Jul  8 11:07:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b067efb

dev-python/pyspelling: cleanup old

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/pyspelling/Manifest|  1 -
 dev-python/pyspelling/pyspelling-2.7.1.ebuild | 54 ---
 2 files changed, 55 deletions(-)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index 403b1c61851..455a601fa85 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1,2 +1 @@
-DIST pyspelling-2.7.1.tar.gz 149449 BLAKE2B 
a5faefac163850d327d64b75776b5f360ad1e1337cb3784c8d0a167e1240e92a202f4ecbe86d768341a7512b36c83981b5fbf4058a2142a5b627f40c0e60c09f
 SHA512 
be0cc9be343e2d5d2c16b2dc9cb6f83fd5f60eba81c709711fef37b880363db8b76e86ec048b57ab270be59803b101696709bd474d4f0267c99f55c906ec7857
 DIST pyspelling-2.7.2.tar.gz 150911 BLAKE2B 
813eca2c4bdf377fd7babec376dd2991713db59c66b509c656cb24a314776c2cc360ec9ff884baec6607f27cae3169672746580d3c58abad35dbfe9f605fc51e
 SHA512 
2937c1985ec6f27713275d9f31d3529e35f219df211be0ac9f1ae89d5c92a1e52c51b982291be7bd25375eb6404f52ac0ad893afbe73aada1fb03923dc09f721

diff --git a/dev-python/pyspelling/pyspelling-2.7.1.ebuild 
b/dev-python/pyspelling/pyspelling-2.7.1.ebuild
deleted file mode 100644
index fd08ac4dbfe..000
--- a/dev-python/pyspelling/pyspelling-2.7.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-DOCS_BUILDER="mkdocs"
-DOCS_DEPEND="
-   ~dev-python/mkdocs_pymdownx_material_extras-1.1.3
-   dev-python/mkdocs-git-revision-date-localized-plugin
-   dev-python/mkdocs-minify-plugin
-"
-
-inherit distutils-r1 docs
-
-DESCRIPTION="Spell checker automation tool"
-HOMEPAGE="https://github.com/facelessuser/pyspelling";
-SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   || ( app-text/aspell app-text/hunspell )
-
-   dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
-   dev-python/html5lib[${PYTHON_USEDEP}]
-   dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/markdown[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
-   >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}]
-"
-
-BDEPEND="test? ( dev-vcs/git )"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # mkdocs-git-revision-date-localized-plugin needs git repo
-   if use doc; then
-   git init || die
-   git config --global user.email "y...@example.com" || die
-   git config --global user.name "Your Name" || die
-   git add . || die
-   git commit -m 'init' || die
-   fi
-
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2021-03-21 Thread Joonas Niilola
commit: f6d4244cc475e8887ffded807a245a9ffb432b9c
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Fri Mar 19 09:07:50 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Mar 21 13:35:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6d4244c

dev-python/pyspelling: version bump 2.7.2, add py3.9

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pyspelling/Manifest|  1 +
 dev-python/pyspelling/pyspelling-2.7.2.ebuild | 54 +++
 2 files changed, 55 insertions(+)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index bef7a333b22..b007473e024 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1,2 +1,3 @@
 DIST pyspelling-2.7.0.tar.gz 149425 BLAKE2B 
f8e600a41ebd4ec290562307306e7fd5c67d384b9186de037b98d50d58016ded19c426caa892497ca44e309fb3db04292b890612afbe25a34f9f6b06985d3740
 SHA512 
2fcd225a66cb02fff10d5ca652e523a01bd0488a005dafa32ba1151fba9afe73809781501c957d6df00927baa9fb6779872973b32e2d3fe8a09306fdc4191995
 DIST pyspelling-2.7.1.tar.gz 149449 BLAKE2B 
a5faefac163850d327d64b75776b5f360ad1e1337cb3784c8d0a167e1240e92a202f4ecbe86d768341a7512b36c83981b5fbf4058a2142a5b627f40c0e60c09f
 SHA512 
be0cc9be343e2d5d2c16b2dc9cb6f83fd5f60eba81c709711fef37b880363db8b76e86ec048b57ab270be59803b101696709bd474d4f0267c99f55c906ec7857
+DIST pyspelling-2.7.2.tar.gz 150911 BLAKE2B 
813eca2c4bdf377fd7babec376dd2991713db59c66b509c656cb24a314776c2cc360ec9ff884baec6607f27cae3169672746580d3c58abad35dbfe9f605fc51e
 SHA512 
2937c1985ec6f27713275d9f31d3529e35f219df211be0ac9f1ae89d5c92a1e52c51b982291be7bd25375eb6404f52ac0ad893afbe73aada1fb03923dc09f721

diff --git a/dev-python/pyspelling/pyspelling-2.7.2.ebuild 
b/dev-python/pyspelling/pyspelling-2.7.2.ebuild
new file mode 100644
index 000..3d26b00785e
--- /dev/null
+++ b/dev-python/pyspelling/pyspelling-2.7.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+DOCS_BUILDER="mkdocs"
+DOCS_DEPEND="
+   ~dev-python/mkdocs_pymdownx_material_extras-1.1.3
+   dev-python/mkdocs-git-revision-date-localized-plugin
+   dev-python/mkdocs-minify-plugin
+"
+
+inherit distutils-r1 docs
+
+DESCRIPTION="Spell checker automation tool"
+HOMEPAGE="https://github.com/facelessuser/pyspelling";
+SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   || ( app-text/aspell app-text/hunspell )
+
+   dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+   dev-python/html5lib[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/markdown[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
+   >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}]
+"
+
+BDEPEND="test? ( dev-vcs/git )"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # mkdocs-git-revision-date-localized-plugin needs git repo
+   if use doc; then
+   git init || die
+   git config --global user.email "y...@example.com" || die
+   git config --global user.name "Your Name" || die
+   git add . || die
+   git commit -m 'init' || die
+   fi
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2021-03-21 Thread Joonas Niilola
commit: b0f79b9543af2825120ac29a09346ce70cb56d56
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Fri Mar 19 09:08:13 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Mar 21 13:35:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0f79b95

dev-python/pyspelling: remove old

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pyspelling/Manifest|  1 -
 dev-python/pyspelling/metadata.xml|  1 +
 dev-python/pyspelling/pyspelling-2.7.0.ebuild | 54 ---
 3 files changed, 1 insertion(+), 55 deletions(-)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index b007473e024..403b1c61851 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1,3 +1,2 @@
-DIST pyspelling-2.7.0.tar.gz 149425 BLAKE2B 
f8e600a41ebd4ec290562307306e7fd5c67d384b9186de037b98d50d58016ded19c426caa892497ca44e309fb3db04292b890612afbe25a34f9f6b06985d3740
 SHA512 
2fcd225a66cb02fff10d5ca652e523a01bd0488a005dafa32ba1151fba9afe73809781501c957d6df00927baa9fb6779872973b32e2d3fe8a09306fdc4191995
 DIST pyspelling-2.7.1.tar.gz 149449 BLAKE2B 
a5faefac163850d327d64b75776b5f360ad1e1337cb3784c8d0a167e1240e92a202f4ecbe86d768341a7512b36c83981b5fbf4058a2142a5b627f40c0e60c09f
 SHA512 
be0cc9be343e2d5d2c16b2dc9cb6f83fd5f60eba81c709711fef37b880363db8b76e86ec048b57ab270be59803b101696709bd474d4f0267c99f55c906ec7857
 DIST pyspelling-2.7.2.tar.gz 150911 BLAKE2B 
813eca2c4bdf377fd7babec376dd2991713db59c66b509c656cb24a314776c2cc360ec9ff884baec6607f27cae3169672746580d3c58abad35dbfe9f605fc51e
 SHA512 
2937c1985ec6f27713275d9f31d3529e35f219df211be0ac9f1ae89d5c92a1e52c51b982291be7bd25375eb6404f52ac0ad893afbe73aada1fb03923dc09f721

diff --git a/dev-python/pyspelling/metadata.xml 
b/dev-python/pyspelling/metadata.xml
index b29a76e72b3..a28ed69c911 100644
--- a/dev-python/pyspelling/metadata.xml
+++ b/dev-python/pyspelling/metadata.xml
@@ -13,6 +13,7 @@
proxy-ma...@gentoo.org
Proxy Maintainers

+   

facelessuser/pyspelling
pyspelling

diff --git a/dev-python/pyspelling/pyspelling-2.7.0.ebuild 
b/dev-python/pyspelling/pyspelling-2.7.0.ebuild
deleted file mode 100644
index 8aea3245861..000
--- a/dev-python/pyspelling/pyspelling-2.7.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-DOCS_BUILDER="mkdocs"
-DOCS_DEPEND="
-   ~dev-python/mkdocs_pymdownx_material_extras-1.1.3
-   dev-python/mkdocs-git-revision-date-localized-plugin
-   dev-python/mkdocs-minify-plugin
-"
-
-inherit distutils-r1 docs
-
-DESCRIPTION="Spell checker automation tool"
-HOMEPAGE="https://github.com/facelessuser/pyspelling";
-SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   || ( app-text/aspell app-text/hunspell )
-
-   dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
-   dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/html5lib[${PYTHON_USEDEP}]
-   dev-python/markdown[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
-   >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}]
-"
-
-BDEPEND="test? ( dev-vcs/git )"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # mkdocs-git-revision-date-localized-plugin needs git repo
-   if use doc; then
-   git init || die
-   git config --global user.email "y...@example.com" || die
-   git config --global user.name "Your Name" || die
-   git add . || die
-   git commit -m 'init' || die
-   fi
-
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2021-03-10 Thread Joonas Niilola
commit: 14c85882f7b0de015ff886b43b9159c98ba44570
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Mon Jan 25 19:29:21 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Mar 11 07:17:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14c85882

dev-python/pyspelling: add version 2.7.1

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pyspelling/Manifest|  1 +
 dev-python/pyspelling/pyspelling-2.7.1.ebuild | 54 +++
 2 files changed, 55 insertions(+)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
index b85ac18e568..bef7a333b22 100644
--- a/dev-python/pyspelling/Manifest
+++ b/dev-python/pyspelling/Manifest
@@ -1 +1,2 @@
 DIST pyspelling-2.7.0.tar.gz 149425 BLAKE2B 
f8e600a41ebd4ec290562307306e7fd5c67d384b9186de037b98d50d58016ded19c426caa892497ca44e309fb3db04292b890612afbe25a34f9f6b06985d3740
 SHA512 
2fcd225a66cb02fff10d5ca652e523a01bd0488a005dafa32ba1151fba9afe73809781501c957d6df00927baa9fb6779872973b32e2d3fe8a09306fdc4191995
+DIST pyspelling-2.7.1.tar.gz 149449 BLAKE2B 
a5faefac163850d327d64b75776b5f360ad1e1337cb3784c8d0a167e1240e92a202f4ecbe86d768341a7512b36c83981b5fbf4058a2142a5b627f40c0e60c09f
 SHA512 
be0cc9be343e2d5d2c16b2dc9cb6f83fd5f60eba81c709711fef37b880363db8b76e86ec048b57ab270be59803b101696709bd474d4f0267c99f55c906ec7857

diff --git a/dev-python/pyspelling/pyspelling-2.7.1.ebuild 
b/dev-python/pyspelling/pyspelling-2.7.1.ebuild
new file mode 100644
index 000..fd08ac4dbfe
--- /dev/null
+++ b/dev-python/pyspelling/pyspelling-2.7.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8} )
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+DOCS_BUILDER="mkdocs"
+DOCS_DEPEND="
+   ~dev-python/mkdocs_pymdownx_material_extras-1.1.3
+   dev-python/mkdocs-git-revision-date-localized-plugin
+   dev-python/mkdocs-minify-plugin
+"
+
+inherit distutils-r1 docs
+
+DESCRIPTION="Spell checker automation tool"
+HOMEPAGE="https://github.com/facelessuser/pyspelling";
+SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   || ( app-text/aspell app-text/hunspell )
+
+   dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+   dev-python/html5lib[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/markdown[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
+   >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}]
+"
+
+BDEPEND="test? ( dev-vcs/git )"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # mkdocs-git-revision-date-localized-plugin needs git repo
+   if use doc; then
+   git init || die
+   git config --global user.email "y...@example.com" || die
+   git config --global user.name "Your Name" || die
+   git add . || die
+   git commit -m 'init' || die
+   fi
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2020-12-07 Thread Joonas Niilola
commit: cdc6da9d80f268045574be784c8ca3855ad2d5c0
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Dec  8 05:50:27 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Dec  8 05:53:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdc6da9d

dev-python/pyspelling: add missing dies

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pyspelling/pyspelling-2.7.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/pyspelling/pyspelling-2.7.0.ebuild 
b/dev-python/pyspelling/pyspelling-2.7.0.ebuild
index 97c7dbb77ba..8aea3245861 100644
--- a/dev-python/pyspelling/pyspelling-2.7.0.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.7.0.ebuild
@@ -43,11 +43,11 @@ distutils_enable_tests pytest
 python_prepare_all() {
# mkdocs-git-revision-date-localized-plugin needs git repo
if use doc; then
-   git init
+   git init || die
git config --global user.email "y...@example.com" || die
git config --global user.name "Your Name" || die
-   git add .
-   git commit -m 'init'
+   git add . || die
+   git commit -m 'init' || die
fi
 
distutils-r1_python_prepare_all



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2020-12-07 Thread Joonas Niilola
commit: a9550c280e92e0ec825815b34f0d0d4059d1fd8c
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Dec  8 05:46:16 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Dec  8 05:53:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9550c28

dev-python/pyspelling: add missing test dep

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pyspelling/pyspelling-2.7.0.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/pyspelling/pyspelling-2.7.0.ebuild 
b/dev-python/pyspelling/pyspelling-2.7.0.ebuild
index f350d6f3873..97c7dbb77ba 100644
--- a/dev-python/pyspelling/pyspelling-2.7.0.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.7.0.ebuild
@@ -36,6 +36,8 @@ RDEPEND="
>=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}]
 "
 
+BDEPEND="test? ( dev-vcs/git )"
+
 distutils_enable_tests pytest
 
 python_prepare_all() {



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/

2020-12-07 Thread Joonas Niilola
commit: 87fd664911b4b1661053dbca2121cab93c38e7b4
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Apr 11 08:51:14 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Dec  8 05:53:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87fd6649

dev-python/pyspelling: Spell checker automation tool

Package-Manager: Portage-2.3.98, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pyspelling/Manifest|  1 +
 dev-python/pyspelling/metadata.xml| 28 +++
 dev-python/pyspelling/pyspelling-2.7.0.ebuild | 52 +++
 3 files changed, 81 insertions(+)

diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
new file mode 100644
index 000..b85ac18e568
--- /dev/null
+++ b/dev-python/pyspelling/Manifest
@@ -0,0 +1 @@
+DIST pyspelling-2.7.0.tar.gz 149425 BLAKE2B 
f8e600a41ebd4ec290562307306e7fd5c67d384b9186de037b98d50d58016ded19c426caa892497ca44e309fb3db04292b890612afbe25a34f9f6b06985d3740
 SHA512 
2fcd225a66cb02fff10d5ca652e523a01bd0488a005dafa32ba1151fba9afe73809781501c957d6df00927baa9fb6779872973b32e2d3fe8a09306fdc4191995

diff --git a/dev-python/pyspelling/metadata.xml 
b/dev-python/pyspelling/metadata.xml
new file mode 100644
index 000..e649e6dcff7
--- /dev/null
+++ b/dev-python/pyspelling/metadata.xml
@@ -0,0 +1,28 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+
+   
+   lssndrbarbi...@gmail.com
+   Alessandro Barbieri
+   
+   
+   andrewammerl...@riseup.net
+   Andrew Ammerlaan
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   facelessuser/pyspelling
+   
+   
+PySpelling is a module to help with automating spell checking in a project 
with Aspell or 
+Hunspell. It is essentially a wrapper around the command line utility of these 
two spell 
+checking tools, and allows you to setup different spelling tasks for different 
file types. 
+You can apply specific and different filters and options to each task. 
PySpelling can also 
+be used in CI environments to fail the build if there are misspelled words.
+Aspell and Hunspell are very good spell checking tools. Aspell particularly 
comes with a couple of filters, but the filters are limited in types and aren't 
extremely flexible. PySpelling was created to work around Aspell's and 
Hunspell's filtering shortcomings by creating a wrapper around them that could 
be extended to handle more kinds of file formats and provide more advanced 
filtering. If you need to filter out specific HTML tags with specific IDs or 
class names, PySpelling can do it. If you want to scan Python files for 
docstrings, but also avoid specific content within the docstring, you can do 
that as well. If PySpelling doesn't have a filter you need, with access to so 
many available Python modules, you can easily write your own.
+
+

diff --git a/dev-python/pyspelling/pyspelling-2.7.0.ebuild 
b/dev-python/pyspelling/pyspelling-2.7.0.ebuild
new file mode 100644
index 000..f350d6f3873
--- /dev/null
+++ b/dev-python/pyspelling/pyspelling-2.7.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8} )
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+DOCS_BUILDER="mkdocs"
+DOCS_DEPEND="
+   ~dev-python/mkdocs_pymdownx_material_extras-1.1.3
+   dev-python/mkdocs-git-revision-date-localized-plugin
+   dev-python/mkdocs-minify-plugin
+"
+
+inherit distutils-r1 docs
+
+DESCRIPTION="Spell checker automation tool"
+HOMEPAGE="https://github.com/facelessuser/pyspelling";
+SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   || ( app-text/aspell app-text/hunspell )
+
+   dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/html5lib[${PYTHON_USEDEP}]
+   dev-python/markdown[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
+   >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # mkdocs-git-revision-date-localized-plugin needs git repo
+   if use doc; then
+   git init
+   git config --global user.email "y...@example.com" || die
+   git config --global user.name "Your Name" || die
+   git add .
+   git commit -m 'init'
+   fi
+
+   distutils-r1_python_prepare_all
+}