gnu: python-flit-core-next: Mark as deprecated.

This is a followup to a34d8e4278.

Replace all python-flit-core-next occurrences with python-flit-core.

* gnu/packages/python-build.scm (python-flit-core-next):
  Mark as a deprecated public alias.
* gnu/packages/machine-learning.scm (python-pytorch-geometric)
  [propagated-inputs]: Replace python-flit-core-next
  with python-flit-core.
* gnu/packages/pdf.scm (python-pypdf) [propagated-inputs]:
  Replace python-flit-core-next with python-flit-core.
* gnu/packages/python-check.scm (python-stestr) [propagated-inputs]:
  Replace python-flit-core-next with python-flit-core.
* gnu/packages/python-xyz.scm (python-asyncclick) [propagated-inputs]:
  Replace python-flit-core-next with python-flit-core.

Change-Id: I3a25290f6fd97995b773332addefe33afd016e67
Reviwed-by: Ludovic Courtès <ludo@gnu.org>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nguyễn Gia Phong 2025-09-29 10:17:26 +09:00 committed by Sharlatan Hellseher
parent a969d3cd70
commit 6ebc5d855c
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
5 changed files with 7 additions and 5 deletions

View file

@ -4979,7 +4979,7 @@ in the audio domain.")
python-xxhash)) python-xxhash))
(native-inputs (native-inputs
(list openssl (list openssl
python-flit-core-next python-flit-core
python-pytest python-pytest
python-pytest-cov)) python-pytest-cov))
(home-page "https://pyg.org") (home-page "https://pyg.org")

View file

@ -1484,7 +1484,7 @@ converter using the Poppler and Cairo libraries.")
" and not ")))) " and not "))))
(native-inputs (native-inputs
(list python-flit (list python-flit
python-flit-core-next python-flit-core
python-pytest python-pytest
python-pytest-socket python-pytest-socket
python-pytest-timeout python-pytest-timeout

View file

@ -36,6 +36,7 @@
#:use-module (guix build-system python) #:use-module (guix build-system python)
#:use-module (guix build-system pyproject) #:use-module (guix build-system pyproject)
#:use-module (guix gexp) #:use-module (guix gexp)
#:use-module (guix deprecation)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix git-download) #:use-module (guix git-download)
#:use-module (guix packages)) #:use-module (guix packages))
@ -614,7 +615,8 @@ specified by PEP 517, @code{flit_core.buildapi}.")
(delete "python-toml") (delete "python-toml")
(prepend python-tomli))))) (prepend python-tomli)))))
(define-public python-flit-core-next python-flit-core) (define-deprecated/public-alias python-flit-core-next
python-flit-core) ;may be removed after 2025-12-01
(define-public python-flit-scm (define-public python-flit-scm
(package (package

View file

@ -3783,7 +3783,7 @@ possibly work.")
(native-inputs (native-inputs
(list python-ddt (list python-ddt
python-iso8601 python-iso8601
python-flit-core-next ;requires >=3.12 python-flit-core
python-setuptools)) python-setuptools))
(propagated-inputs (propagated-inputs
(list python-cliff-bootstrap (list python-cliff-bootstrap

View file

@ -411,7 +411,7 @@ APIs to detect, query, and compare them.")
(("from click") "from asyncclick"))))))) (("from click") "from asyncclick")))))))
(native-inputs (native-inputs
(list python-anyio (list python-anyio
python-flit-core-next python-flit-core
python-pytest python-pytest
python-trio)) python-trio))
(home-page "https://github.com/python-trio/asyncclick") (home-page "https://github.com/python-trio/asyncclick")