public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2021-07-23  7:03 Joonas Niilola
  0 siblings, 0 replies; 18+ messages in thread
From: Joonas Niilola @ 2021-07-23  7:03 UTC (permalink / raw
  To: gentoo-commits

commit:     969ff155addc46a252ad2e5a6dc4abecab45b97e
Author:     Bernd Waibel <waebbl-gentoo <AT> posteo <DOT> net>
AuthorDate: Tue Jul 20 14:36:55 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jul 23 07:03:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=969ff155

dev-util/codespell: new package v2.1.0

A tool to fix common misspellings in text files. It's designed primarily
checking misspelled words in source code, but can be used with other
text files as well.
Upon request from juippis, move the package from ::guru to ::gentoo.

Closes: https://bugs.gentoo.org/667830
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Bernd Waibel <waebbl-gentoo <AT> posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/21728
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-util/codespell/Manifest               |  1 +
 dev-util/codespell/codespell-2.1.0.ebuild | 43 +++++++++++++++++++++++++++++++
 dev-util/codespell/metadata.xml           | 21 +++++++++++++++
 3 files changed, 65 insertions(+)

diff --git a/dev-util/codespell/Manifest b/dev-util/codespell/Manifest
new file mode 100644
index 00000000000..c0fb3621378
--- /dev/null
+++ b/dev-util/codespell/Manifest
@@ -0,0 +1 @@
+DIST codespell-2.1.0.tar.gz 187490 BLAKE2B 6114aa3a7ad8cd37ab868a3f27f641501dd0cc5bfe80bef0aa5cad0a86f8e2bba6e1f1030d5ac6fb06f78f9e01e37359d0fc17d17eb54608060300f676d3d56c SHA512 16d9a4239ae18fad6a06825a2afae6adc903d50eb90b759cdc61b1e1d145458bbfb1385837c4465b0a9858da100be074c597343c4816ca0260bbf6710d9c84e8

diff --git a/dev-util/codespell/codespell-2.1.0.ebuild b/dev-util/codespell/codespell-2.1.0.ebuild
new file mode 100644
index 00000000000..f2f620ef41d
--- /dev/null
+++ b/dev-util/codespell/codespell-2.1.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Check text files for common misspellings"
+HOMEPAGE="https://github.com/codespell-project/codespell"
+SRC_URI="https://github.com/codespell-project/codespell/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+# Code licensed under GPL-2
+# Dictionary licensed under CC-BY-SA-3.0
+LICENSE="GPL-2 CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="
+	sys-apps/help2man
+	test? ( dev-python/chardet[${PYTHON_USEDEP}] )
+"
+
+distutils_enable_tests --install pytest
+
+python_prepare_all() {
+	distutils-r1_python_prepare_all
+
+	# do not depend on pytest-cov
+	sed -e '/addopts/d' -i setup.cfg || die
+}
+
+python_compile_all() {
+	# generate included man page
+	emake ${PN}.1
+}
+
+python_install_all() {
+	distutils-r1_python_install_all
+
+	doman ${PN}.1
+}

diff --git a/dev-util/codespell/metadata.xml b/dev-util/codespell/metadata.xml
new file mode 100644
index 00000000000..93753e36460
--- /dev/null
+++ b/dev-util/codespell/metadata.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person" proxied="yes">
+	<email>waebbl-gentoo@posteo.net</email>
+	<name>Bernd Waibel</name>
+</maintainer>
+<maintainer type="project" proxied="proxy">
+	<email>proxy-maint@gentoo.org</email>
+	<name>Gentoo Proxy Maintainers</name>
+</maintainer>
+<longdescription lang="en">
+	A tool to fix common misspellings in text files. It's designed primarily
+	checking misspelled words in source code, but can be used with other
+	text files as well.
+</longdescription>
+<upstream>
+	<bugs-to>https://github.com/codespell-project/codespell/issues</bugs-to>
+	<remote-id type="github">codespell-project/codespell</remote-id>
+</upstream>
+</pkgmetadata>


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

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

commit:     07b1c01b61abe04d667b4540f3caa8ec7d00b7be
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  7 22:21:39 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb  7 22:21:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b1c01b

dev-util/codespell: Stabilize 2.1.0 x86, #832860

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

 dev-util/codespell/codespell-2.1.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/codespell/codespell-2.1.0.ebuild b/dev-util/codespell/codespell-2.1.0.ebuild
index f2f620ef41d1..9fc6a9245106 100644
--- a/dev-util/codespell/codespell-2.1.0.ebuild
+++ b/dev-util/codespell/codespell-2.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/codespell-project/codespell/archive/v${PV}.tar.gz ->
 # Dictionary licensed under CC-BY-SA-3.0
 LICENSE="GPL-2 CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 BDEPEND="
 	sys-apps/help2man


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

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

commit:     11ad6400cdf895bc9dbf88b0241b75e29f9bd2f0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  7 22:21:58 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb  7 22:21:58 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11ad6400

dev-util/codespell: Stabilize 2.1.0 amd64, #832860

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

 dev-util/codespell/codespell-2.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/codespell/codespell-2.1.0.ebuild b/dev-util/codespell/codespell-2.1.0.ebuild
index 9fc6a9245106..b8be16867839 100644
--- a/dev-util/codespell/codespell-2.1.0.ebuild
+++ b/dev-util/codespell/codespell-2.1.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/codespell-project/codespell/archive/v${PV}.tar.gz ->
 # Dictionary licensed under CC-BY-SA-3.0
 LICENSE="GPL-2 CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 BDEPEND="
 	sys-apps/help2man


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2022-08-21 18:41 Arthur Zamarin
  0 siblings, 0 replies; 18+ messages in thread
From: Arthur Zamarin @ 2022-08-21 18:41 UTC (permalink / raw
  To: gentoo-commits

commit:     58b73dc815b18493e639f2362c8d01fa1943db41
Author:     Bernd Waibel <waebbl-gentoo <AT> posteo <DOT> net>
AuthorDate: Thu Aug 18 08:48:11 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Aug 21 18:37:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58b73dc8

dev-util/codespell: add 2.2.1

Closes: https://bugs.gentoo.org/865671
Signed-off-by: Bernd Waibel <waebbl-gentoo <AT> posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/26909
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-util/codespell/Manifest               |  1 +
 dev-util/codespell/codespell-2.2.1.ebuild | 44 +++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/dev-util/codespell/Manifest b/dev-util/codespell/Manifest
index c0fb3621378b..b21bfef729c9 100644
--- a/dev-util/codespell/Manifest
+++ b/dev-util/codespell/Manifest
@@ -1 +1,2 @@
 DIST codespell-2.1.0.tar.gz 187490 BLAKE2B 6114aa3a7ad8cd37ab868a3f27f641501dd0cc5bfe80bef0aa5cad0a86f8e2bba6e1f1030d5ac6fb06f78f9e01e37359d0fc17d17eb54608060300f676d3d56c SHA512 16d9a4239ae18fad6a06825a2afae6adc903d50eb90b759cdc61b1e1d145458bbfb1385837c4465b0a9858da100be074c597343c4816ca0260bbf6710d9c84e8
+DIST codespell-2.2.1.tar.gz 211593 BLAKE2B aba431119fd1f16ee51076cd4496ef3f3e80e56a124bbbd4ebbec5dcee5b7e49788db37bcdefd15946d12680596b33ab20ae845fd9a3a3a61ee8c3eed187fe2f SHA512 6c1ce9ed134ba4602cc91c1851a023911ff09ce7d4b1e8a33e655bf821a5b82ae8f0e75defef43e9a8537a6ffc7f0ad7e59af7b200a1294dfe3aff1651869e41

diff --git a/dev-util/codespell/codespell-2.2.1.ebuild b/dev-util/codespell/codespell-2.2.1.ebuild
new file mode 100644
index 000000000000..b323c3f6c7cb
--- /dev/null
+++ b/dev-util/codespell/codespell-2.2.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Check text files for common misspellings"
+HOMEPAGE="https://github.com/codespell-project/codespell"
+SRC_URI="https://github.com/codespell-project/codespell/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+# Code licensed under GPL-2
+# Dictionary licensed under CC-BY-SA-3.0
+LICENSE="GPL-2 CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="
+	sys-apps/help2man
+	test? ( dev-python/chardet[${PYTHON_USEDEP}] )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+	distutils-r1_python_prepare_all
+
+	# do not depend on pytest-cov
+	sed -e '/addopts/d' -i setup.cfg || die
+}
+
+python_compile_all() {
+	# generate included man page
+	emake ${PN}.1
+}
+
+python_install_all() {
+	distutils-r1_python_install_all
+
+	doman ${PN}.1
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2022-09-25  6:13 Joonas Niilola
  0 siblings, 0 replies; 18+ messages in thread
From: Joonas Niilola @ 2022-09-25  6:13 UTC (permalink / raw
  To: gentoo-commits

commit:     9829975c8e2134545c20ea23d699b69fbec37ade
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 25 06:12:18 2022 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 06:13:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9829975c

dev-util/codespell: Stabilize 2.2.1 amd64, #872629

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-util/codespell/codespell-2.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/codespell/codespell-2.2.1.ebuild b/dev-util/codespell/codespell-2.2.1.ebuild
index b323c3f6c7cb..14791cd2415b 100644
--- a/dev-util/codespell/codespell-2.2.1.ebuild
+++ b/dev-util/codespell/codespell-2.2.1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/codespell-project/codespell/archive/refs/tags/v${PV}
 # Dictionary licensed under CC-BY-SA-3.0
 LICENSE="GPL-2 CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 BDEPEND="
 	sys-apps/help2man


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2022-09-25  6:13 Joonas Niilola
  0 siblings, 0 replies; 18+ messages in thread
From: Joonas Niilola @ 2022-09-25  6:13 UTC (permalink / raw
  To: gentoo-commits

commit:     d2f653813bdb0a3253e0d89aea267fdc05008813
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 25 06:13:28 2022 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 06:13:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2f65381

dev-util/codespell: Stabilize 2.2.1 x86, #872629

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-util/codespell/codespell-2.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/codespell/codespell-2.2.1.ebuild b/dev-util/codespell/codespell-2.2.1.ebuild
index 14791cd2415b..fcc89161f545 100644
--- a/dev-util/codespell/codespell-2.2.1.ebuild
+++ b/dev-util/codespell/codespell-2.2.1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/codespell-project/codespell/archive/refs/tags/v${PV}
 # Dictionary licensed under CC-BY-SA-3.0
 LICENSE="GPL-2 CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 BDEPEND="
 	sys-apps/help2man


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2022-10-02 14:53 Florian Schmaus
  0 siblings, 0 replies; 18+ messages in thread
From: Florian Schmaus @ 2022-10-02 14:53 UTC (permalink / raw
  To: gentoo-commits

commit:     243aa18e95906b7296d5a0288d3d13ca9431cb34
Author:     Bernd Waibel <waebbl-gentoo <AT> posteo <DOT> net>
AuthorDate: Sun Sep 25 07:38:29 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Oct  2 14:53:40 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=243aa18e

dev-util/codespell: drop 2.1.0

Signed-off-by: Bernd Waibel <waebbl-gentoo <AT> posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/27438
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 dev-util/codespell/Manifest               |  1 -
 dev-util/codespell/codespell-2.1.0.ebuild | 43 -------------------------------
 2 files changed, 44 deletions(-)

diff --git a/dev-util/codespell/Manifest b/dev-util/codespell/Manifest
index b21bfef729c9..2f1664fdd511 100644
--- a/dev-util/codespell/Manifest
+++ b/dev-util/codespell/Manifest
@@ -1,2 +1 @@
-DIST codespell-2.1.0.tar.gz 187490 BLAKE2B 6114aa3a7ad8cd37ab868a3f27f641501dd0cc5bfe80bef0aa5cad0a86f8e2bba6e1f1030d5ac6fb06f78f9e01e37359d0fc17d17eb54608060300f676d3d56c SHA512 16d9a4239ae18fad6a06825a2afae6adc903d50eb90b759cdc61b1e1d145458bbfb1385837c4465b0a9858da100be074c597343c4816ca0260bbf6710d9c84e8
 DIST codespell-2.2.1.tar.gz 211593 BLAKE2B aba431119fd1f16ee51076cd4496ef3f3e80e56a124bbbd4ebbec5dcee5b7e49788db37bcdefd15946d12680596b33ab20ae845fd9a3a3a61ee8c3eed187fe2f SHA512 6c1ce9ed134ba4602cc91c1851a023911ff09ce7d4b1e8a33e655bf821a5b82ae8f0e75defef43e9a8537a6ffc7f0ad7e59af7b200a1294dfe3aff1651869e41

diff --git a/dev-util/codespell/codespell-2.1.0.ebuild b/dev-util/codespell/codespell-2.1.0.ebuild
deleted file mode 100644
index b8be16867839..000000000000
--- a/dev-util/codespell/codespell-2.1.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Check text files for common misspellings"
-HOMEPAGE="https://github.com/codespell-project/codespell"
-SRC_URI="https://github.com/codespell-project/codespell/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-# Code licensed under GPL-2
-# Dictionary licensed under CC-BY-SA-3.0
-LICENSE="GPL-2 CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-BDEPEND="
-	sys-apps/help2man
-	test? ( dev-python/chardet[${PYTHON_USEDEP}] )
-"
-
-distutils_enable_tests --install pytest
-
-python_prepare_all() {
-	distutils-r1_python_prepare_all
-
-	# do not depend on pytest-cov
-	sed -e '/addopts/d' -i setup.cfg || die
-}
-
-python_compile_all() {
-	# generate included man page
-	emake ${PN}.1
-}
-
-python_install_all() {
-	distutils-r1_python_install_all
-
-	doman ${PN}.1
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2022-10-30  9:35 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2022-10-30  9:35 UTC (permalink / raw
  To: gentoo-commits

commit:     d41810fa6d9c414f274ad6faa0cf7f10b0f5b705
Author:     Bernd Waibel <waebbl-gentoo <AT> posteo <DOT> net>
AuthorDate: Wed Oct 19 14:08:22 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 30 09:33:32 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d41810fa

dev-util/codespell: add 2.2.2

Closes: https://bugs.gentoo.org/877619
Signed-off-by: Bernd Waibel <waebbl-gentoo <AT> posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/27848
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/codespell/Manifest               |  1 +
 dev-util/codespell/codespell-2.2.2.ebuild | 35 +++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/dev-util/codespell/Manifest b/dev-util/codespell/Manifest
index 2f1664fdd511..279d8d249dc7 100644
--- a/dev-util/codespell/Manifest
+++ b/dev-util/codespell/Manifest
@@ -1 +1,2 @@
 DIST codespell-2.2.1.tar.gz 211593 BLAKE2B aba431119fd1f16ee51076cd4496ef3f3e80e56a124bbbd4ebbec5dcee5b7e49788db37bcdefd15946d12680596b33ab20ae845fd9a3a3a61ee8c3eed187fe2f SHA512 6c1ce9ed134ba4602cc91c1851a023911ff09ce7d4b1e8a33e655bf821a5b82ae8f0e75defef43e9a8537a6ffc7f0ad7e59af7b200a1294dfe3aff1651869e41
+DIST codespell-2.2.2.tar.gz 213652 BLAKE2B 2084f6041c6cf9888b661a1b7b8a73696b1dc6309b8d19adbb0dbdc091d87b487464b12c9800cfec893ed5d6ea71f214d0a4262099617b5fe7e60d8ca448973d SHA512 48be00aa32e55a66814193014e97fcb27ff323ea2db0622f68cd2d3ab31ab8be61f60a09ed91fe3425cbd63b2592bcc44ee9b58fe79e2d498bc27a83a4e93ddd

diff --git a/dev-util/codespell/codespell-2.2.2.ebuild b/dev-util/codespell/codespell-2.2.2.ebuild
new file mode 100644
index 000000000000..7e96964cca81
--- /dev/null
+++ b/dev-util/codespell/codespell-2.2.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Check text files for common misspellings"
+HOMEPAGE="https://pypi.org/project/codespell https://github.com/codespell-project/codespell"
+SRC_URI="mirror://pypi/${P::1}/${PN}/${P}.tar.gz"
+
+# Code licensed under GPL-2, dictionary licensed under CC-BY-SA-3.0
+LICENSE="GPL-2 CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="test? ( dev-python/chardet[${PYTHON_USEDEP}] )"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+	distutils-r1_python_prepare_all
+
+	# do not depend on pytest-cov
+	sed -e '/addopts/d' -i setup.cfg || die
+}
+
+python_install() {
+	distutils-r1_python_install
+
+	rm -R "${ED}"/$(python_get_sitedir)/bin || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2022-12-10 14:33 Arthur Zamarin
  0 siblings, 0 replies; 18+ messages in thread
From: Arthur Zamarin @ 2022-12-10 14:33 UTC (permalink / raw
  To: gentoo-commits

commit:     98cfdc946afb4f7639519e25bf0f67494032eb33
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 10 14:32:48 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 14:32:48 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98cfdc94

dev-util/codespell: Stabilize 2.2.2 x86, #885319

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

 dev-util/codespell/codespell-2.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/codespell/codespell-2.2.2.ebuild b/dev-util/codespell/codespell-2.2.2.ebuild
index 7e96964cca81..7289774503d6 100644
--- a/dev-util/codespell/codespell-2.2.2.ebuild
+++ b/dev-util/codespell/codespell-2.2.2.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${P::1}/${PN}/${P}.tar.gz"
 # Code licensed under GPL-2, dictionary licensed under CC-BY-SA-3.0
 LICENSE="GPL-2 CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 BDEPEND="test? ( dev-python/chardet[${PYTHON_USEDEP}] )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2022-12-10 14:33 Arthur Zamarin
  0 siblings, 0 replies; 18+ messages in thread
From: Arthur Zamarin @ 2022-12-10 14:33 UTC (permalink / raw
  To: gentoo-commits

commit:     5bd776da5c1c5565a75c911f1c506b3cb1a1f908
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 10 14:33:03 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 14:33:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bd776da

dev-util/codespell: Stabilize 2.2.2 amd64, #885319

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

 dev-util/codespell/codespell-2.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/codespell/codespell-2.2.2.ebuild b/dev-util/codespell/codespell-2.2.2.ebuild
index 7289774503d6..9dc053e18daf 100644
--- a/dev-util/codespell/codespell-2.2.2.ebuild
+++ b/dev-util/codespell/codespell-2.2.2.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${P::1}/${PN}/${P}.tar.gz"
 # Code licensed under GPL-2, dictionary licensed under CC-BY-SA-3.0
 LICENSE="GPL-2 CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 BDEPEND="test? ( dev-python/chardet[${PYTHON_USEDEP}] )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2023-03-25  4:08 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-03-25  4:08 UTC (permalink / raw
  To: gentoo-commits

commit:     7727f29b77c93d0043d1c7fb96f616a0738f94c7
Author:     Bernd Waibel <waebbl-gentoo <AT> posteo <DOT> net>
AuthorDate: Sat Mar 18 15:53:42 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 25 04:05:36 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7727f29b

dev-util/codespell: drop 2.2.1

Signed-off-by: Bernd Waibel <waebbl-gentoo <AT> posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/30211
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/codespell/Manifest               |  1 -
 dev-util/codespell/codespell-2.2.1.ebuild | 44 -------------------------------
 2 files changed, 45 deletions(-)

diff --git a/dev-util/codespell/Manifest b/dev-util/codespell/Manifest
index ef9e449358ce..aee189894230 100644
--- a/dev-util/codespell/Manifest
+++ b/dev-util/codespell/Manifest
@@ -1,3 +1,2 @@
-DIST codespell-2.2.1.tar.gz 211593 BLAKE2B aba431119fd1f16ee51076cd4496ef3f3e80e56a124bbbd4ebbec5dcee5b7e49788db37bcdefd15946d12680596b33ab20ae845fd9a3a3a61ee8c3eed187fe2f SHA512 6c1ce9ed134ba4602cc91c1851a023911ff09ce7d4b1e8a33e655bf821a5b82ae8f0e75defef43e9a8537a6ffc7f0ad7e59af7b200a1294dfe3aff1651869e41
 DIST codespell-2.2.2.tar.gz 213652 BLAKE2B 2084f6041c6cf9888b661a1b7b8a73696b1dc6309b8d19adbb0dbdc091d87b487464b12c9800cfec893ed5d6ea71f214d0a4262099617b5fe7e60d8ca448973d SHA512 48be00aa32e55a66814193014e97fcb27ff323ea2db0622f68cd2d3ab31ab8be61f60a09ed91fe3425cbd63b2592bcc44ee9b58fe79e2d498bc27a83a4e93ddd
 DIST codespell-2.2.4.tar.gz 241664 BLAKE2B 5f40003fdb840b926615b6eed74df90055b2ee47c534321289c3ed895c47cd2672909b152a53640899cc21960c1b3aa80c41eb344d9e23cea8fd13e998c71af6 SHA512 efbc62a3dd49781565f6d901aa9b08fc1106adf2c516365dd8d3684846e23b23bfda1e65c6530edf0de9462ccafd9d835bd541a8f0e1de14163c723ce041052d

diff --git a/dev-util/codespell/codespell-2.2.1.ebuild b/dev-util/codespell/codespell-2.2.1.ebuild
deleted file mode 100644
index 9b6987df7002..000000000000
--- a/dev-util/codespell/codespell-2.2.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Check text files for common misspellings"
-HOMEPAGE="https://github.com/codespell-project/codespell"
-SRC_URI="https://github.com/codespell-project/codespell/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-# Code licensed under GPL-2
-# Dictionary licensed under CC-BY-SA-3.0
-LICENSE="GPL-2 CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-BDEPEND="
-	sys-apps/help2man
-	test? ( dev-python/chardet[${PYTHON_USEDEP}] )
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-	distutils-r1_python_prepare_all
-
-	# do not depend on pytest-cov
-	sed -e '/addopts/d' -i setup.cfg || die
-}
-
-python_compile_all() {
-	# generate included man page
-	emake ${PN}.1
-}
-
-python_install_all() {
-	distutils-r1_python_install_all
-
-	doman ${PN}.1
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2023-04-25 14:05 Arthur Zamarin
  0 siblings, 0 replies; 18+ messages in thread
From: Arthur Zamarin @ 2023-04-25 14:05 UTC (permalink / raw
  To: gentoo-commits

commit:     6826c4109b2c1bf505cbe59c99f88fa59a636bd3
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 14:05:40 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 14:05:40 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6826c410

dev-util/codespell: Keyword 2.2.4 arm64, #905042

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

 dev-util/codespell/codespell-2.2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/codespell/codespell-2.2.4.ebuild b/dev-util/codespell/codespell-2.2.4.ebuild
index f2af4c1fbbbc..7b9bf108d36c 100644
--- a/dev-util/codespell/codespell-2.2.4.ebuild
+++ b/dev-util/codespell/codespell-2.2.4.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://pypi.org/project/codespell https://github.com/codespell-projec
 # Code licensed under GPL-2, dictionary licensed under CC-BY-SA-3.0
 LICENSE="GPL-2 CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 BDEPEND="test? ( dev-python/chardet[${PYTHON_USEDEP}] )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2023-05-06  9:12 Arthur Zamarin
  0 siblings, 0 replies; 18+ messages in thread
From: Arthur Zamarin @ 2023-05-06  9:12 UTC (permalink / raw
  To: gentoo-commits

commit:     7702eba0633c00a3627e51291a18383c75060db1
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat May  6 09:12:07 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat May  6 09:12:07 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7702eba0

dev-util/codespell: Stabilize 2.2.4 x86, #905801

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

 dev-util/codespell/codespell-2.2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/codespell/codespell-2.2.4.ebuild b/dev-util/codespell/codespell-2.2.4.ebuild
index 7b9bf108d36c..295f67d84e34 100644
--- a/dev-util/codespell/codespell-2.2.4.ebuild
+++ b/dev-util/codespell/codespell-2.2.4.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://pypi.org/project/codespell https://github.com/codespell-projec
 # Code licensed under GPL-2, dictionary licensed under CC-BY-SA-3.0
 LICENSE="GPL-2 CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 x86"
 
 BDEPEND="test? ( dev-python/chardet[${PYTHON_USEDEP}] )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2023-05-06  9:13 Arthur Zamarin
  0 siblings, 0 replies; 18+ messages in thread
From: Arthur Zamarin @ 2023-05-06  9:13 UTC (permalink / raw
  To: gentoo-commits

commit:     dd03a2cc4bc589af0f765916f70267c90ecc25b0
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat May  6 09:13:40 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat May  6 09:13:40 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd03a2cc

dev-util/codespell: Stabilize 2.2.4 amd64, #905801

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

 dev-util/codespell/codespell-2.2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/codespell/codespell-2.2.4.ebuild b/dev-util/codespell/codespell-2.2.4.ebuild
index 295f67d84e34..a55a4b89ece2 100644
--- a/dev-util/codespell/codespell-2.2.4.ebuild
+++ b/dev-util/codespell/codespell-2.2.4.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://pypi.org/project/codespell https://github.com/codespell-projec
 # Code licensed under GPL-2, dictionary licensed under CC-BY-SA-3.0
 LICENSE="GPL-2 CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 BDEPEND="test? ( dev-python/chardet[${PYTHON_USEDEP}] )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2023-05-20 12:32 Joonas Niilola
  0 siblings, 0 replies; 18+ messages in thread
From: Joonas Niilola @ 2023-05-20 12:32 UTC (permalink / raw
  To: gentoo-commits

commit:     bfe0e86c9090fbd8101478ac1215c44ee14c0542
Author:     Bernd Waibel <waebbl-gentoo <AT> posteo <DOT> net>
AuthorDate: Sun May  7 10:10:44 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat May 20 12:13:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfe0e86c

dev-util/codespell: drop 2.2.2

Signed-off-by: Bernd Waibel <waebbl-gentoo <AT> posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/30913
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-util/codespell/Manifest               |  1 -
 dev-util/codespell/codespell-2.2.2.ebuild | 34 -------------------------------
 2 files changed, 35 deletions(-)

diff --git a/dev-util/codespell/Manifest b/dev-util/codespell/Manifest
index aee189894230..66e734ab8f74 100644
--- a/dev-util/codespell/Manifest
+++ b/dev-util/codespell/Manifest
@@ -1,2 +1 @@
-DIST codespell-2.2.2.tar.gz 213652 BLAKE2B 2084f6041c6cf9888b661a1b7b8a73696b1dc6309b8d19adbb0dbdc091d87b487464b12c9800cfec893ed5d6ea71f214d0a4262099617b5fe7e60d8ca448973d SHA512 48be00aa32e55a66814193014e97fcb27ff323ea2db0622f68cd2d3ab31ab8be61f60a09ed91fe3425cbd63b2592bcc44ee9b58fe79e2d498bc27a83a4e93ddd
 DIST codespell-2.2.4.tar.gz 241664 BLAKE2B 5f40003fdb840b926615b6eed74df90055b2ee47c534321289c3ed895c47cd2672909b152a53640899cc21960c1b3aa80c41eb344d9e23cea8fd13e998c71af6 SHA512 efbc62a3dd49781565f6d901aa9b08fc1106adf2c516365dd8d3684846e23b23bfda1e65c6530edf0de9462ccafd9d835bd541a8f0e1de14163c723ce041052d

diff --git a/dev-util/codespell/codespell-2.2.2.ebuild b/dev-util/codespell/codespell-2.2.2.ebuild
deleted file mode 100644
index 5a6e5808a9e5..000000000000
--- a/dev-util/codespell/codespell-2.2.2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Check text files for common misspellings"
-HOMEPAGE="https://pypi.org/project/codespell https://github.com/codespell-project/codespell"
-
-# Code licensed under GPL-2, dictionary licensed under CC-BY-SA-3.0
-LICENSE="GPL-2 CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-BDEPEND="test? ( dev-python/chardet[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-	distutils-r1_python_prepare_all
-
-	# do not depend on pytest-cov
-	sed -e '/addopts/d' -i setup.cfg || die
-}
-
-python_install() {
-	distutils-r1_python_install
-
-	rm -R "${ED}"/$(python_get_sitedir)/bin || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2023-12-17 19:46 Arthur Zamarin
  0 siblings, 0 replies; 18+ messages in thread
From: Arthur Zamarin @ 2023-12-17 19:46 UTC (permalink / raw
  To: gentoo-commits

commit:     9182f48a8369cc7b95a994d8c31549ebad4bfa1b
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 17 19:45:35 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 17 19:46:07 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9182f48a

dev-util/codespell: add 2.2.6

Closes: https://bugs.gentoo.org/911240
Closes: https://bugs.gentoo.org/919800
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-util/codespell/Manifest               |  1 +
 dev-util/codespell/codespell-2.2.6.ebuild | 32 +++++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+)

diff --git a/dev-util/codespell/Manifest b/dev-util/codespell/Manifest
index a7e8b39bac0f..2e077fb9b013 100644
--- a/dev-util/codespell/Manifest
+++ b/dev-util/codespell/Manifest
@@ -1,2 +1,3 @@
 DIST codespell-2.2.4.tar.gz 241664 BLAKE2B 5f40003fdb840b926615b6eed74df90055b2ee47c534321289c3ed895c47cd2672909b152a53640899cc21960c1b3aa80c41eb344d9e23cea8fd13e998c71af6 SHA512 efbc62a3dd49781565f6d901aa9b08fc1106adf2c516365dd8d3684846e23b23bfda1e65c6530edf0de9462ccafd9d835bd541a8f0e1de14163c723ce041052d
 DIST codespell-2.2.5.tar.gz 242918 BLAKE2B 18b4ff620edb54950ba2779ec610f15597d0aef5e4dded3ed2055ce7769e16d70dbac9cf990b2bdb6c216f8f6204e4a7790fe011ec53057553ca6981b4d8c851 SHA512 173eb13695ceccb4bb081907fc8d703e91922ec7adddc150aa2db1629353edff464c2318f2abaf78e8c96ab28f08e510897912f5bd48d69a6c50e025d470b53f
+DIST codespell-2.2.6.tar.gz 300968 BLAKE2B f97aca1c1398cecd6257dc5fc8c0c6e8b35d34a82338e0ede4b03b6df8d030f095fbb8ae77a5bcfe6955f954a556fcea34927b4f44069010becd724b29a07184 SHA512 993734138e017324039a2954fc3559411aa7e3a96b8e6b6b2176985641225755adb9dde7125260211e531a1ecf1f1d82f2294434c21e8a35c7898212f3db3273

diff --git a/dev-util/codespell/codespell-2.2.6.ebuild b/dev-util/codespell/codespell-2.2.6.ebuild
new file mode 100644
index 000000000000..823a11f1e0b6
--- /dev/null
+++ b/dev-util/codespell/codespell-2.2.6.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+inherit distutils-r1 pypi
+
+DESCRIPTION="Check text files for common misspellings"
+HOMEPAGE="https://pypi.org/project/codespell
+	https://github.com/codespell-project/codespell"
+
+# Code licensed under GPL-2, dictionary licensed under CC-BY-SA-3.0
+LICENSE="GPL-2 CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+BDEPEND="
+	test? (
+		dev-python/chardet[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+	distutils-r1_src_prepare
+
+	# Remove bundled dictionary
+	sed -e '/addopts/d' -i pyproject.toml || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2024-01-12 18:06 Arthur Zamarin
  0 siblings, 0 replies; 18+ messages in thread
From: Arthur Zamarin @ 2024-01-12 18:06 UTC (permalink / raw
  To: gentoo-commits

commit:     89c937ccf0dbea6c39cbbbb9f91dfe62744323cc
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 12 18:06:21 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 12 18:06:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89c937cc

dev-util/codespell: Stabilize 2.2.6 x86, #920230

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

 dev-util/codespell/codespell-2.2.6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/codespell/codespell-2.2.6.ebuild b/dev-util/codespell/codespell-2.2.6.ebuild
index 823a11f1e0b6..39d5f3284d1a 100644
--- a/dev-util/codespell/codespell-2.2.6.ebuild
+++ b/dev-util/codespell/codespell-2.2.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -14,7 +14,7 @@ HOMEPAGE="https://pypi.org/project/codespell
 # Code licensed under GPL-2, dictionary licensed under CC-BY-SA-3.0
 LICENSE="GPL-2 CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 x86"
 
 BDEPEND="
 	test? (


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/
@ 2024-01-12 18:06 Arthur Zamarin
  0 siblings, 0 replies; 18+ messages in thread
From: Arthur Zamarin @ 2024-01-12 18:06 UTC (permalink / raw
  To: gentoo-commits

commit:     358c2117133492e6ce693ce397c81efca2d0bb8c
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 12 18:06:22 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 12 18:06:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=358c2117

dev-util/codespell: Stabilize 2.2.6 amd64, #920230

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

 dev-util/codespell/codespell-2.2.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/codespell/codespell-2.2.6.ebuild b/dev-util/codespell/codespell-2.2.6.ebuild
index 39d5f3284d1a..8f3bca17b0dd 100644
--- a/dev-util/codespell/codespell-2.2.6.ebuild
+++ b/dev-util/codespell/codespell-2.2.6.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://pypi.org/project/codespell
 # Code licensed under GPL-2, dictionary licensed under CC-BY-SA-3.0
 LICENSE="GPL-2 CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 BDEPEND="
 	test? (


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

end of thread, other threads:[~2024-01-12 18:06 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-21 18:41 [gentoo-commits] repo/gentoo:master commit in: dev-util/codespell/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-01-12 18:06 Arthur Zamarin
2024-01-12 18:06 Arthur Zamarin
2023-12-17 19:46 Arthur Zamarin
2023-05-20 12:32 Joonas Niilola
2023-05-06  9:13 Arthur Zamarin
2023-05-06  9:12 Arthur Zamarin
2023-04-25 14:05 Arthur Zamarin
2023-03-25  4:08 Sam James
2022-12-10 14:33 Arthur Zamarin
2022-12-10 14:33 Arthur Zamarin
2022-10-30  9:35 Sam James
2022-10-02 14:53 Florian Schmaus
2022-09-25  6:13 Joonas Niilola
2022-09-25  6:13 Joonas Niilola
2022-02-07 22:22 Sam James
2022-02-07 22:22 Sam James
2021-07-23  7:03 Joonas Niilola

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