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

commit:     221bfbe1ac29af5c557328c4b60410f4cbc56eea
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  5 18:49:47 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr  5 18:51:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=221bfbe1

dev-python/lazy-loader: Bump to 0.4

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

 dev-python/lazy-loader/Manifest               |  1 +
 dev-python/lazy-loader/lazy-loader-0.4.ebuild | 25 +++++++++++++++++++++++++
 dev-python/lazy-loader/metadata.xml           |  2 +-
 3 files changed, 27 insertions(+), 1 deletion(-)

diff --git a/dev-python/lazy-loader/Manifest b/dev-python/lazy-loader/Manifest
index d48894649f58..5b84c0cdfed2 100644
--- a/dev-python/lazy-loader/Manifest
+++ b/dev-python/lazy-loader/Manifest
@@ -1 +1,2 @@
 DIST lazy_loader-0.3.tar.gz 12268 BLAKE2B b4b38202fa5c4558934dc6e2090b0585d9245a69824fb9548f5f24c3538232ce35fc1096978c4bb385bbc19b1008487cbe5b2e5a81f672acc790bfc1ac4b1bd7 SHA512 282efef8a20321bda07be382871fa3314ebf6c59f2451b33e613a72dd5b875fe7a7b8ea1336c879d79bf78cb808e1220a68ba30cd4e948d8c10ab0ca9ec23938
+DIST lazy_loader-0.4.tar.gz 15431 BLAKE2B 6b6eee0ac8976b224cc16e09e3317197164b547b4be834711bacffefcd186fe98cdde3237d5093ca41a80ab7d5db043fc3dbbae50416bb771b27ee6b0934037d SHA512 29e3589929869351ea62cf7cbba86b581bd7935918b54cfd5ac107cbf7cc427d6d4e050ec1f9bef084587e55286d7afa31d5cdb6deb7d072d25493d19d6bbce6

diff --git a/dev-python/lazy-loader/lazy-loader-0.4.ebuild b/dev-python/lazy-loader/lazy-loader-0.4.ebuild
new file mode 100644
index 000000000000..1f89c455db85
--- /dev/null
+++ b/dev-python/lazy-loader/lazy-loader-0.4.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Populate library namespace without incurring immediate import costs"
+HOMEPAGE="
+	https://github.com/scientific-python/lazy_loader
+	https://pypi.org/project/lazy-loader/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+distutils_enable_tests pytest
+
+RDEPEND="
+	dev-python/packaging[${PYTHON_USEDEP}]
+"

diff --git a/dev-python/lazy-loader/metadata.xml b/dev-python/lazy-loader/metadata.xml
index 55037c181b9e..be659ac63cdb 100644
--- a/dev-python/lazy-loader/metadata.xml
+++ b/dev-python/lazy-loader/metadata.xml
@@ -6,7 +6,7 @@
     <name>Gentoo Science Project</name>
   </maintainer>
   <upstream>
-    <remote-id type="pypi">lazy_loader</remote-id>
+    <remote-id type="pypi">lazy-loader</remote-id>
     <remote-id type="github">scientific-python/lazy_loader</remote-id>
   </upstream>
 </pkgmetadata>


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

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

commit:     4098d0a41d66d555972a446e70a386f59918b719
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 18 05:41:37 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 18 05:50:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4098d0a4

dev-python/lazy-loader: Enable py3.13

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

 dev-python/lazy-loader/lazy-loader-0.4.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/lazy-loader/lazy-loader-0.4.ebuild b/dev-python/lazy-loader/lazy-loader-0.4.ebuild
index 1f89c455db85..d72746629473 100644
--- a/dev-python/lazy-loader/lazy-loader-0.4.ebuild
+++ b/dev-python/lazy-loader/lazy-loader-0.4.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit distutils-r1 pypi
 
@@ -18,8 +18,8 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~x86"
 
-distutils_enable_tests pytest
-
 RDEPEND="
 	dev-python/packaging[${PYTHON_USEDEP}]
 "
+
+distutils_enable_tests pytest


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

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

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-05 18:52 [gentoo-commits] repo/gentoo:master commit in: dev-python/lazy-loader/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2024-05-18  5:50 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