gnu: Adjust users of deprecated packages.

* gnu/packages/databases.scm (apache-arrow-0.16)[inputs]: Change from
GOOGLE-BROTLI to BROTLI.
* gnu/packages/image.scm (libjxl)[propagated-inputs]: Likewise.
* gnu/packages/python-xyz.scm (python-logbook)[native-inputs]: Change from
PYTHON-GOOGLE-BROTLI to PYTHON-BROTLI.
This commit is contained in:
Marius Bakke 2022-11-17 19:05:27 +01:00
parent 28074f1e09
commit bb4d32b655
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA
3 changed files with 3 additions and 3 deletions

View file

@ -4390,7 +4390,7 @@ (define-public apache-arrow-0.16
"-DARROW_BUILD_STATIC=OFF")))
(inputs
`(("boost" ,boost)
("brotli" ,google-brotli)
("brotli" ,brotli)
("double-conversion" ,double-conversion)
("snappy" ,snappy)
("gflags" ,gflags)

View file

@ -2278,7 +2278,7 @@ (define-public libjxl
openexr))
;; These are in Requires.private of libjxl.pc.
(propagated-inputs
(list google-brotli google-highway))
(list brotli google-highway))
(home-page "https://github.com/libjxl/libjxl")
(synopsis "JPEG XL image format reference implementation")
(description "This package contains a reference implementation of JPEG XL

View file

@ -439,7 +439,7 @@ (define-public python-logbook
(invoke "pytest" "--cov=logbook" "-r" "s" "tests")))))))
(native-inputs
(list python-cython python-mock python-pytest python-pytest-cov
python-google-brotli))
python-brotli))
(home-page "https://github.com/getlogbook/logbook")
(synopsis "Logbook is a logging replacement for Python")
(description