* gnu/packages/java.scm (java-ecj): Do not inherit fields from java-ecj-3.
[arguments]: Merge build phases 'fix-build.xml and 'fix-prop; remove trailing #T.
* gnu/packages/java.scm (ant/java8): Do not inherit from ant-bootstrap.
(ant)[arguments]: Replace to avoid rebuilding.
(jikes, classpath-bootstrap, jamvm-1-bootstrap, ant-bootstrap, ecj-bootstrap,
ecj-javac-wrapper, classpath-0.99, classpath-jamvm-wrappers, classpath-devel,
jamvm, ecj-javac-wrapper-final, ecj4-bootstrap, ecj4-javac-wrapper,
jamvm-with-ecj4): Move these packages from here...
* gnu/packages/java-bootstrap.scm: ...to this new file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Register new file.
* gnu/packages/rust-apps.scm (tectonic): Update to 0.12.0.
* gnu/packages/crates-io.scm (rust-tectonic-bridge-graphite2): Update to
0.2.1.
[arguments]: Do not skip build.
[native-inputs]: Add PKG-CONFIG.
[inputs]: Add GRAPHITE2.
(rust-tectonic-bundles): Update to 0.3.
[arguments]: Do not skip build.
<#:cargo-inputs>: Update RUST-TECTONIC-IO-BASE to 0.4.
[native-inputs]: Add PKG-CONFIG.
[inputs]: Add OPENSSL and ZLIB.
(rust-tectonic-docmodel): Update to 0.2.0.
[arguments]: Do not skip build.
(rust-tectonic-engine-xetex): Update to 0.4.1.
[arguments]: Do not skip build.
<#:cargo-inputs>: Update RUST-TECTONIC-PDF-IO to 0.4 and
RUST-TECTONIC-XETEX-LAYOUT to 0.2.
[native-inputs]: Add PKG-CONFIG.
[inputs]: Add FONTCONFIG, FREETYPE, GRAPHITE2, ICU4C and ZLIB.
(rust-tectonic-engine-xdvipdfmx): Update to 0.4.0.
[arguments]: Do not skip build.
<#:cargo-inputs>: Remove RUST-CBINDGEN, update RUST-TECTONIC-BRIDGE-CORE to
0.3 and RUST-TECTONIC-PDF-IO to 0.4.
[native-inputs]: Add PKG-CONFIG.
[inputs]: Add LIBPNG and ZLIB.
(rust-tectonic-pdf-io): Update to 0.4.
[arguments]: Do not skip build.
<#:cargo-inputs>: Update RUST-TECTONIC-BRIDGE-CORE to 0.3.
(rust-tectonic-xetex-layout): Update to 0.2.1.
[arguments]: Do not skip build.
<#:cargo-inputs>: Update RUST-TECTONIC-BRIDGE-CORE to 0.3.
[native-inputs]: Add PKG-CONFIG.
[inputs]: Add FONTCONFIG, FREETYPE, GRAPHITE2, ICU4C and ZLIB.
This is a follow-up of: 590700ce00.
* gnu/packages/kde-plasma.scm (kwin, plasma-desktop,
plasma-workspace)[inputs]: Switch to pipewire.
* gnu/packages/mpd.scm (mpd)[inputs]: Ditto.
* gnu/packages/linux.scm (pipewire)[inputs]:
Add
- libfdk for ACC support over bluetooth
- libfreeaptx for aptX support over bluetooth
- libsndfile
- libusb for bluetooth support
- lilv for lv2 plugins
- webrtc-audio-processing for noise cancelling
- readline for pw-cli
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
* gnu/packages/linux.scm (pipewire): Update to 0.3.63.
[source]: Update source to official repo.
[inputs]: Remove sdl2. It's only used to build examples.
Co-authored-by: Kevin Boulain <kevinboulain@gmail.com>
Co-authored-by: Brendan Tildesley <mail@brendan.scot>
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
To have this package on the latest version Guix needs to have new Python
build procedure with Hatch https://hatch.pypa.io/.
* gnu/packages/python-xyz.scm (python-jsonschema-next):
[build-system]: Use pyproject-build-system to simplify package.
[native-inputs]: Remove python-pypa-build.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Previously, in a networking-less environment such as 'guix shell -C -D
guix', 'guix refresh --list-updaters' would crash due to a
'gettaddrinfo-error' exception in these predicates.
* guix/gnu-maintenance.scm (%gnu-updater)[pred]: Wrap in
'false-if-networking-error'.
(%gnu-ftp-updater)[pred]: Likewise.
* guix/import/utils.scm (call-with-networking-exception-handler): New
procedure.
(false-if-networking-error): New macro.
* guix/gnu-maintenance.scm (import-html-updatable-release): Use it
instead of inline code.