public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/noseofyeti/
@ 2024-02-14  8:18 Michał Górny
  0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2024-02-14  8:18 UTC (permalink / raw
  To: gentoo-commits

commit:     c84ac3445c7299fd874a2c02ec5ac76c1d3835ea
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 14 08:13:49 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 14 08:18:37 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c84ac344

dev-python/noseofyeti: New package, v2.4.6

NIH test dependency for dev-python/dict2xml.

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

 dev-python/noseofyeti/Manifest                |  1 +
 dev-python/noseofyeti/metadata.xml            | 12 +++++++++
 dev-python/noseofyeti/noseofyeti-2.4.6.ebuild | 39 +++++++++++++++++++++++++++
 3 files changed, 52 insertions(+)

diff --git a/dev-python/noseofyeti/Manifest b/dev-python/noseofyeti/Manifest
new file mode 100644
index 000000000000..30e9c8c79a02
--- /dev/null
+++ b/dev-python/noseofyeti/Manifest
@@ -0,0 +1 @@
+DIST nose-of-yeti-release-2.4.6.gh.tar.gz 44946 BLAKE2B 8a99eb299b389729030d1f5de0f686d4186d1657c41f35aa8712c1a2a8214d808c853e1a435f05a262c676f1f4dcc453fc0541582f45d30f23696a83ec3e9c82 SHA512 276c1ad5d2c67c26ee8d3e3e9184f0881c4084889324e9b45d79897d46d94f64f4fc7267d2578feb76690fd2165633fa217a6bf1588585a5e0cf84dfceaa2a4b

diff --git a/dev-python/noseofyeti/metadata.xml b/dev-python/noseofyeti/metadata.xml
new file mode 100644
index 000000000000..c74af1cdd5de
--- /dev/null
+++ b/dev-python/noseofyeti/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>python@gentoo.org</email>
+	</maintainer>
+	<stabilize-allarches/>
+	<upstream>
+		<remote-id type="github">delfick/nose-of-yeti</remote-id>
+		<remote-id type="pypi">noseOfYeti</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/noseofyeti/noseofyeti-2.4.6.ebuild b/dev-python/noseofyeti/noseofyeti-2.4.6.ebuild
new file mode 100644
index 000000000000..777f4594a622
--- /dev/null
+++ b/dev-python/noseofyeti/noseofyeti-2.4.6.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+MY_P=nose-of-yeti-release-${PV}
+DESCRIPTION="A custom python codec that provides an RSpec style dsl for python"
+HOMEPAGE="
+	https://github.com/delfick/nose-of-yeti/
+	https://pypi.org/project/noseOfYeti/
+"
+SRC_URI="
+	https://github.com/delfick/nose-of-yeti/archive/release-${PV}.tar.gz
+		-> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="
+	test? (
+		dev-python/black[${PYTHON_USEDEP}]
+		dev-python/pytest-helpers-namespace[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+	# requires alt-pytest-asyncio
+	tests/test_using_pytest.py::TestPyTest::test_it_collects_tests_correctly
+)


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

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

commit:     12a139a6b4add9cb2e14ba7fe53a016ee4a9c43f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 14 12:06:44 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 14 12:09:53 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12a139a6

dev-python/noseofyeti: Enable pypy3

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

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

diff --git a/dev-python/noseofyeti/noseofyeti-2.4.7.ebuild b/dev-python/noseofyeti/noseofyeti-2.4.7.ebuild
index 10a1b480c93c..97c4ffc90e9f 100644
--- a/dev-python/noseofyeti/noseofyeti-2.4.7.ebuild
+++ b/dev-python/noseofyeti/noseofyeti-2.4.7.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
 
 inherit distutils-r1 pypi
 


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

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

commit:     f850f1759cf0b2caf1940c7c2a46d85f789194d9
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 14 12:06:32 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 14 12:09:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f850f175

dev-python/noseofyeti: Bump to 2.4.7

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

 dev-python/noseofyeti/Manifest                |  1 +
 dev-python/noseofyeti/noseofyeti-2.4.7.ebuild | 33 +++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/dev-python/noseofyeti/Manifest b/dev-python/noseofyeti/Manifest
index 30e9c8c79a02..f99957b7e1df 100644
--- a/dev-python/noseofyeti/Manifest
+++ b/dev-python/noseofyeti/Manifest
@@ -1 +1,2 @@
 DIST nose-of-yeti-release-2.4.6.gh.tar.gz 44946 BLAKE2B 8a99eb299b389729030d1f5de0f686d4186d1657c41f35aa8712c1a2a8214d808c853e1a435f05a262c676f1f4dcc453fc0541582f45d30f23696a83ec3e9c82 SHA512 276c1ad5d2c67c26ee8d3e3e9184f0881c4084889324e9b45d79897d46d94f64f4fc7267d2578feb76690fd2165633fa217a6bf1588585a5e0cf84dfceaa2a4b
+DIST noseofyeti-2.4.7.tar.gz 35637 BLAKE2B 44524d46ae7a278029ec6a321e4b44085ac9082d0a2fb44726777ff40a575ec100baf5554da29411fef992da0d435cd6c14ff15364ed92d74c98efe32eda56bd SHA512 c6254c54541f9cec2fbe25416013d8f76d0c32c8b403b6ba79b38522460ffbefd29565fc640e8ed54c30efe641755e125a5884a97de4f86a2bd3555bf8f6b294

diff --git a/dev-python/noseofyeti/noseofyeti-2.4.7.ebuild b/dev-python/noseofyeti/noseofyeti-2.4.7.ebuild
new file mode 100644
index 000000000000..10a1b480c93c
--- /dev/null
+++ b/dev-python/noseofyeti/noseofyeti-2.4.7.ebuild
@@ -0,0 +1,33 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A custom python codec that provides an RSpec style dsl for python"
+HOMEPAGE="
+	https://github.com/delfick/nose-of-yeti/
+	https://pypi.org/project/noseOfYeti/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="
+	test? (
+		dev-python/black[${PYTHON_USEDEP}]
+		dev-python/pytest-helpers-namespace[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+	# requires alt-pytest-asyncio
+	tests/test_using_pytest.py::TestPyTest::test_it_collects_tests_correctly
+)


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/noseofyeti/
@ 2024-03-02 10:53 Arthur Zamarin
  0 siblings, 0 replies; 12+ messages in thread
From: Arthur Zamarin @ 2024-03-02 10:53 UTC (permalink / raw
  To: gentoo-commits

commit:     e495c190fce815384cc62bf1508f3980374ed8b6
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  2 10:53:33 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  2 10:53:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e495c190

dev-python/noseofyeti: Stabilize 2.4.7 amd64, #926006

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

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

diff --git a/dev-python/noseofyeti/noseofyeti-2.4.7.ebuild b/dev-python/noseofyeti/noseofyeti-2.4.7.ebuild
index 97c4ffc90e9f..aa6f56d6b284 100644
--- a/dev-python/noseofyeti/noseofyeti-2.4.7.ebuild
+++ b/dev-python/noseofyeti/noseofyeti-2.4.7.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 BDEPEND="
 	test? (


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/noseofyeti/
@ 2024-03-09 16:20 Arthur Zamarin
  0 siblings, 0 replies; 12+ messages in thread
From: Arthur Zamarin @ 2024-03-09 16:20 UTC (permalink / raw
  To: gentoo-commits

commit:     6690c260eb049a1225b0707cc30a586b30776b77
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  9 15:30:39 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  9 16:20:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6690c260

dev-python/noseofyeti: add 2.4.8

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

 dev-python/noseofyeti/Manifest                |  1 +
 dev-python/noseofyeti/noseofyeti-2.4.8.ebuild | 33 +++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/dev-python/noseofyeti/Manifest b/dev-python/noseofyeti/Manifest
index ea164d82d5a2..096745ce2fa7 100644
--- a/dev-python/noseofyeti/Manifest
+++ b/dev-python/noseofyeti/Manifest
@@ -1 +1,2 @@
 DIST noseofyeti-2.4.7.tar.gz 35637 BLAKE2B 44524d46ae7a278029ec6a321e4b44085ac9082d0a2fb44726777ff40a575ec100baf5554da29411fef992da0d435cd6c14ff15364ed92d74c98efe32eda56bd SHA512 c6254c54541f9cec2fbe25416013d8f76d0c32c8b403b6ba79b38522460ffbefd29565fc640e8ed54c30efe641755e125a5884a97de4f86a2bd3555bf8f6b294
+DIST noseofyeti-2.4.8.tar.gz 35866 BLAKE2B 6f11c7eb1db03ed27a8838e8b774cea97189609d8b7204facc3784968119878944b28231ab1f0d42f3eaa2679fee15df465e9069d1b4473ce8e5cd1749ace0b5 SHA512 78c685da52e993dc28c758dbf4395bbd544d0f4e9993f17a7f1ce267d03ba1c4a5e43cfcb2b2110e6fc21dcc60c6fcdd2bafb3f2d8ab2535a9429430ffc9308a

diff --git a/dev-python/noseofyeti/noseofyeti-2.4.8.ebuild b/dev-python/noseofyeti/noseofyeti-2.4.8.ebuild
new file mode 100644
index 000000000000..97c4ffc90e9f
--- /dev/null
+++ b/dev-python/noseofyeti/noseofyeti-2.4.8.ebuild
@@ -0,0 +1,33 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A custom python codec that provides an RSpec style dsl for python"
+HOMEPAGE="
+	https://github.com/delfick/nose-of-yeti/
+	https://pypi.org/project/noseOfYeti/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="
+	test? (
+		dev-python/black[${PYTHON_USEDEP}]
+		dev-python/pytest-helpers-namespace[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+	# requires alt-pytest-asyncio
+	tests/test_using_pytest.py::TestPyTest::test_it_collects_tests_correctly
+)


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/noseofyeti/
@ 2024-03-30 14:25 Michał Górny
  0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2024-03-30 14:25 UTC (permalink / raw
  To: gentoo-commits

commit:     bac79969de39adc183d173a011c2f06574d38ce9
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 30 14:25:01 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 30 14:25:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bac79969

dev-python/noseofyeti: Stabilize 2.4.8 ALLARCHES, #928225

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

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

diff --git a/dev-python/noseofyeti/noseofyeti-2.4.8.ebuild b/dev-python/noseofyeti/noseofyeti-2.4.8.ebuild
index 97c4ffc90e9f..aa6f56d6b284 100644
--- a/dev-python/noseofyeti/noseofyeti-2.4.8.ebuild
+++ b/dev-python/noseofyeti/noseofyeti-2.4.8.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 BDEPEND="
 	test? (


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

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

commit:     4f2a338b8652b24c112dfd89eb32594bd401fc72
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 30 14:27:06 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 30 14:27:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f2a338b

dev-python/noseofyeti: Remove old

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

 dev-python/noseofyeti/Manifest                |  1 -
 dev-python/noseofyeti/noseofyeti-2.4.7.ebuild | 33 ---------------------------
 2 files changed, 34 deletions(-)

diff --git a/dev-python/noseofyeti/Manifest b/dev-python/noseofyeti/Manifest
index 096745ce2fa7..f681ba7520d8 100644
--- a/dev-python/noseofyeti/Manifest
+++ b/dev-python/noseofyeti/Manifest
@@ -1,2 +1 @@
-DIST noseofyeti-2.4.7.tar.gz 35637 BLAKE2B 44524d46ae7a278029ec6a321e4b44085ac9082d0a2fb44726777ff40a575ec100baf5554da29411fef992da0d435cd6c14ff15364ed92d74c98efe32eda56bd SHA512 c6254c54541f9cec2fbe25416013d8f76d0c32c8b403b6ba79b38522460ffbefd29565fc640e8ed54c30efe641755e125a5884a97de4f86a2bd3555bf8f6b294
 DIST noseofyeti-2.4.8.tar.gz 35866 BLAKE2B 6f11c7eb1db03ed27a8838e8b774cea97189609d8b7204facc3784968119878944b28231ab1f0d42f3eaa2679fee15df465e9069d1b4473ce8e5cd1749ace0b5 SHA512 78c685da52e993dc28c758dbf4395bbd544d0f4e9993f17a7f1ce267d03ba1c4a5e43cfcb2b2110e6fc21dcc60c6fcdd2bafb3f2d8ab2535a9429430ffc9308a

diff --git a/dev-python/noseofyeti/noseofyeti-2.4.7.ebuild b/dev-python/noseofyeti/noseofyeti-2.4.7.ebuild
deleted file mode 100644
index aa6f56d6b284..000000000000
--- a/dev-python/noseofyeti/noseofyeti-2.4.7.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="A custom python codec that provides an RSpec style dsl for python"
-HOMEPAGE="
-	https://github.com/delfick/nose-of-yeti/
-	https://pypi.org/project/noseOfYeti/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64"
-
-BDEPEND="
-	test? (
-		dev-python/black[${PYTHON_USEDEP}]
-		dev-python/pytest-helpers-namespace[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-	# requires alt-pytest-asyncio
-	tests/test_using_pytest.py::TestPyTest::test_it_collects_tests_correctly
-)


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/noseofyeti/
@ 2024-04-28  2:37 Michał Górny
  0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2024-04-28  2:37 UTC (permalink / raw
  To: gentoo-commits

commit:     cfdaf72f94a1f6c659d8894ef3f096cfa2b181e9
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 28 02:30:08 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Apr 28 02:37:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfdaf72f

dev-python/noseofyeti: Bump to 2.4.9

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

 dev-python/noseofyeti/Manifest                |  1 +
 dev-python/noseofyeti/noseofyeti-2.4.9.ebuild | 33 +++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/dev-python/noseofyeti/Manifest b/dev-python/noseofyeti/Manifest
index f681ba7520d8..74bdef1796bd 100644
--- a/dev-python/noseofyeti/Manifest
+++ b/dev-python/noseofyeti/Manifest
@@ -1 +1,2 @@
 DIST noseofyeti-2.4.8.tar.gz 35866 BLAKE2B 6f11c7eb1db03ed27a8838e8b774cea97189609d8b7204facc3784968119878944b28231ab1f0d42f3eaa2679fee15df465e9069d1b4473ce8e5cd1749ace0b5 SHA512 78c685da52e993dc28c758dbf4395bbd544d0f4e9993f17a7f1ce267d03ba1c4a5e43cfcb2b2110e6fc21dcc60c6fcdd2bafb3f2d8ab2535a9429430ffc9308a
+DIST noseofyeti-2.4.9.tar.gz 35853 BLAKE2B d0c22bd6ea0cc41b1034dcfe397d2de72284630523a9210bb7c7290a0dd86414876e2c9c6ac3e63cd640eeb72bfed4617feea467f1a983bfd35f2f4239e28452 SHA512 2f6ff27fe08c91957d6c2f6dfea7fb4eba268245fc4444991799a2a102d616e536dcf49099c31962e8c8106564e8545edc1d2238a1a76278e0929d6387117bac

diff --git a/dev-python/noseofyeti/noseofyeti-2.4.9.ebuild b/dev-python/noseofyeti/noseofyeti-2.4.9.ebuild
new file mode 100644
index 000000000000..97c4ffc90e9f
--- /dev/null
+++ b/dev-python/noseofyeti/noseofyeti-2.4.9.ebuild
@@ -0,0 +1,33 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A custom python codec that provides an RSpec style dsl for python"
+HOMEPAGE="
+	https://github.com/delfick/nose-of-yeti/
+	https://pypi.org/project/noseOfYeti/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="
+	test? (
+		dev-python/black[${PYTHON_USEDEP}]
+		dev-python/pytest-helpers-namespace[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+	# requires alt-pytest-asyncio
+	tests/test_using_pytest.py::TestPyTest::test_it_collects_tests_correctly
+)


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/noseofyeti/
@ 2024-05-17  8:46 Arthur Zamarin
  0 siblings, 0 replies; 12+ messages in thread
From: Arthur Zamarin @ 2024-05-17  8:46 UTC (permalink / raw
  To: gentoo-commits

commit:     e3d9e8f1eb027e5bd7d03e87127ef85646738489
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri May 17 08:46:07 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri May 17 08:46:07 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3d9e8f1

dev-python/noseofyeti: Stabilize 2.4.9 ALLARCHES, #932043

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

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

diff --git a/dev-python/noseofyeti/noseofyeti-2.4.9.ebuild b/dev-python/noseofyeti/noseofyeti-2.4.9.ebuild
index 97c4ffc90e9f..aa6f56d6b284 100644
--- a/dev-python/noseofyeti/noseofyeti-2.4.9.ebuild
+++ b/dev-python/noseofyeti/noseofyeti-2.4.9.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 BDEPEND="
 	test? (


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/noseofyeti/
@ 2024-05-17  9:49 Michał Górny
  0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2024-05-17  9:49 UTC (permalink / raw
  To: gentoo-commits

commit:     8eed869300b3c455823b8e4cd022bd1db9679559
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri May 17 09:38:09 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri May 17 09:38:09 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eed8693

dev-python/noseofyeti: Remove old

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

 dev-python/noseofyeti/Manifest                |  1 -
 dev-python/noseofyeti/noseofyeti-2.4.8.ebuild | 33 ---------------------------
 2 files changed, 34 deletions(-)

diff --git a/dev-python/noseofyeti/Manifest b/dev-python/noseofyeti/Manifest
index 74bdef1796bd..1a0fd91a15e3 100644
--- a/dev-python/noseofyeti/Manifest
+++ b/dev-python/noseofyeti/Manifest
@@ -1,2 +1 @@
-DIST noseofyeti-2.4.8.tar.gz 35866 BLAKE2B 6f11c7eb1db03ed27a8838e8b774cea97189609d8b7204facc3784968119878944b28231ab1f0d42f3eaa2679fee15df465e9069d1b4473ce8e5cd1749ace0b5 SHA512 78c685da52e993dc28c758dbf4395bbd544d0f4e9993f17a7f1ce267d03ba1c4a5e43cfcb2b2110e6fc21dcc60c6fcdd2bafb3f2d8ab2535a9429430ffc9308a
 DIST noseofyeti-2.4.9.tar.gz 35853 BLAKE2B d0c22bd6ea0cc41b1034dcfe397d2de72284630523a9210bb7c7290a0dd86414876e2c9c6ac3e63cd640eeb72bfed4617feea467f1a983bfd35f2f4239e28452 SHA512 2f6ff27fe08c91957d6c2f6dfea7fb4eba268245fc4444991799a2a102d616e536dcf49099c31962e8c8106564e8545edc1d2238a1a76278e0929d6387117bac

diff --git a/dev-python/noseofyeti/noseofyeti-2.4.8.ebuild b/dev-python/noseofyeti/noseofyeti-2.4.8.ebuild
deleted file mode 100644
index aa6f56d6b284..000000000000
--- a/dev-python/noseofyeti/noseofyeti-2.4.8.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="A custom python codec that provides an RSpec style dsl for python"
-HOMEPAGE="
-	https://github.com/delfick/nose-of-yeti/
-	https://pypi.org/project/noseOfYeti/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64"
-
-BDEPEND="
-	test? (
-		dev-python/black[${PYTHON_USEDEP}]
-		dev-python/pytest-helpers-namespace[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-	# requires alt-pytest-asyncio
-	tests/test_using_pytest.py::TestPyTest::test_it_collects_tests_correctly
-)


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/noseofyeti/
@ 2024-06-12 17:24 Michał Górny
  0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2024-06-12 17:24 UTC (permalink / raw
  To: gentoo-commits

commit:     3502841473ef8cf94ef14e47449863bbd37f4b5d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 12 16:35:14 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jun 12 17:14:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35028414

dev-python/noseofyeti: Stop installing .pth file

Stop installing the .pth file as we do not need it, and it breaks
builds of dev-lang/python (sigh!).

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

 .../{noseofyeti-2.4.9.ebuild => noseofyeti-2.4.9-r1.ebuild}         | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/dev-python/noseofyeti/noseofyeti-2.4.9.ebuild b/dev-python/noseofyeti/noseofyeti-2.4.9-r1.ebuild
similarity index 81%
rename from dev-python/noseofyeti/noseofyeti-2.4.9.ebuild
rename to dev-python/noseofyeti/noseofyeti-2.4.9-r1.ebuild
index aa6f56d6b284..47214fbcd460 100644
--- a/dev-python/noseofyeti/noseofyeti-2.4.9.ebuild
+++ b/dev-python/noseofyeti/noseofyeti-2.4.9-r1.ebuild
@@ -31,3 +31,9 @@ EPYTEST_DESELECT=(
 	# requires alt-pytest-asyncio
 	tests/test_using_pytest.py::TestPyTest::test_it_collects_tests_correctly
 )
+
+src_install() {
+	distutils-r1_src_install
+	# delete the black .pth thingy, it breaks building CPython (sigh!)
+	find "${ED}" -name '*.pth' -delete || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/noseofyeti/
@ 2024-06-27 14:40 Petr Vaněk
  0 siblings, 0 replies; 12+ messages in thread
From: Petr Vaněk @ 2024-06-27 14:40 UTC (permalink / raw
  To: gentoo-commits

commit:     d1394a3bf5f8bf45cc0920d5f43ea8aad75c4f42
Author:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 27 14:10:07 2024 +0000
Commit:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Thu Jun 27 14:39:23 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1394a3b

dev-python/noseofyeti: enable py3.13

Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>

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

diff --git a/dev-python/noseofyeti/noseofyeti-2.4.9-r1.ebuild b/dev-python/noseofyeti/noseofyeti-2.4.9-r1.ebuild
index 47214fbcd460..e8f0f68040aa 100644
--- a/dev-python/noseofyeti/noseofyeti-2.4.9-r1.ebuild
+++ b/dev-python/noseofyeti/noseofyeti-2.4.9-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
+PYTHON_COMPAT=( pypy3 python3_{10..13} )
 
 inherit distutils-r1 pypi
 


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

end of thread, other threads:[~2024-06-27 14:40 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-09 16:20 [gentoo-commits] repo/gentoo:master commit in: dev-python/noseofyeti/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-06-27 14:40 Petr Vaněk
2024-06-12 17:24 Michał Górny
2024-05-17  9:49 Michał Górny
2024-05-17  8:46 Arthur Zamarin
2024-04-28  2:37 Michał Górny
2024-03-30 14:27 Michał Górny
2024-03-30 14:25 Michał Górny
2024-03-02 10:53 Arthur Zamarin
2024-02-14 12:09 Michał Górny
2024-02-14 12:09 Michał Górny
2024-02-14  8:18 Michał Górny

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