summary refs log tree commit diff
path: root/gnu
AgeCommit message (Collapse)Author
2023-03-12gnu: ghc-9.2: Adapt testsuite to grep 3.8.Lars-Dominik Braun
Starting with version 3.8, grep emits warning messages when pattern contain spurious slashes: grep '\+' /dev/null grep: warning: stray \ before + GHC’s testsuite does not expect that and fails. * gnu/packages/patches/ghc-9.2-grep-warnings.patch: New file. * gnu/local.mk: Add it. * gnu/packages/haskell.scm (ghc-9.2)[native-inputs]: Add patch.
2023-03-11gnu: python-feedparser: Update to 6.0.10.Andreas Enge
* gnu/packages/web.scm (python-feedparser): Update to 6.0.10.
2023-03-10gnu: libxslt: Really allow cross-compilation.Ludovic Courtès
Commit af916f3f8b5e1191cdcc95dded1e376f51ad9e9b led './configure' to attempt to run a non-native 'python' binary, which would fail unless transparent binfmt_misc QEMU emulation is set up. * gnu/packages/xml.scm (libxslt)[arguments]: Replace #:configure-flags with "--disable-python" when cross-compiling.
2023-03-09gnu: freetype: Fix cross-compilation.Ludovic Courtès
Previously, the 'remove-reference-to-pkg-config' would break when cross-compiling because the "/bin/pkg-config" file would not be found. * gnu/packages/fontutils.scm (freetype)[arguments]: Add alternate 'remove-reference-to-pkg-config' phase for (%current-target-system) as true.
2023-03-09gnu: python-wrapper: Refer to the target Python when cross-compiling.Ludovic Courtès
Previously, "guix build python-wrapper --target=aarch64-linux-gnu" would return a wrapper that symlinks the native programs (e.g., 'python3' for x86_64-linux) instead of the target programs. * gnu/packages/python.scm (wrap-python3)[arguments]: Use gexps. Use 'this-package-input' to refer to Python when cross-compiling.
2023-03-09gnu: libxslt: Allow cross-compilation.Ludovic Courtès
* gnu/packages/xml.scm (libxslt)[arguments]: Rewrite using gexps. Add #:configure-flags.
2023-03-09gnu: make-bootstrap: Fix static linking of tar.Ludovic Courtès
Fixes a regression introduced in 4eda2034201e39edb077f0160554fabbed0e0cdb, which inadvertently commented out those #:configure-flags. * gnu/packages/make-bootstrap.scm (%static-inputs)[tar]: Reinstate 'gl_cv_func_working_mktime=yes' configure flag.
2023-03-09ci: Update the list of GCC versions for the 'core' subset.Ludovic Courtès
* gnu/ci.scm (%core-packages): Remove GCC-8 and GCC-9. Add GCC-12.
2023-03-09gnu: libstdc++: Fix cross-compilation.Ludovic Courtès
* gnu/packages/gcc.scm (make-libstdc++): Adjust 'hide-gcc-headers' for cross-compiled libstdc++.
2023-03-09gnu: guile-static: Adjust to changed input labels.Ludovic Courtès
Fixes a regression introduce in d427ec403800dc5b0b69f3d7c259a7d62eb6c881. * gnu/packages/make-bootstrap.scm (make-guile-static): Replace "libgc", not "bdw-gc".
2023-03-04gnu: mesa: Fix sporadic test failures.Simon South
* gnu/packages/patches/mesa-fix-sporadic-test-failures.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/gl.scm (mesa)[source]: Apply it. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-04gnu: p7zip: Fix build with GCC 11.Simon South
* gnu/packages/patches/p7zip-fix-build-with-gcc-11.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/compression.scm (p7zip)[source]: Apply it. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-04gnu: nss: Update to 3.88.1.Ludovic Courtès
* gnu/packages/nss.scm (nss)[source]: Update to 3.88.1. [replacement]: Remove. [propagated-inputs]: Change 'nspr' to 'nspr-next'. (nss-next, nss/fixed): Remove. * gnu/packages/gnuzilla.scm (icecat-minimal)[inputs]: Change 'nss-next' to 'nss'. (icedove-minimal)[inputs]: Likewise.
2023-03-03gnu: guile: Fix cross-compilation.Ludovic Courtès
Fixes a regression introduced in d427ec403800dc5b0b69f3d7c259a7d62eb6c881, which changed the label of Bash from "bash" to "bash-minimal" when cross-compiling. * gnu/packages/guile.scm (guile-2.0)[arguments]: In 'pre-configure' phase, use 'search-input-file' when (%current-target-system) is true.
2023-03-03gnu: gcc@4.9, gcc@5.5: Build with '-std=c++11'.Ludovic Courtès
These two compilers would fail to build with GCC 11.3.0 because it defaults to C++17, which triggers some incompatibilities. * gnu/packages/gcc.scm (gcc-4.7)[arguments]: Augment #:configure-flags for 4.9 and 5.0. (gcc-4.9)[arguments]: Define 'parent' so that (package-arguments parent) correctly evaluates the version-dependent parts.
2023-03-02gnu: dino: Replace 'pango-next' with 'pango'.Ludovic Courtès
This is a followup to the merge commit in 7df09ee0ab3e7962ef27859ce87e06a323059284. 'pango-next' was removed in dc5fc7d23f0a4b62f8542bb24abb7ac1b589168d on 'core-updates'. * gnu/packages/messaging.scm (dino)[inputs]: Replace 'pango-next' with 'pango'.
2023-03-02gnu: gnome-boxes: Adjust reference to 'vala-next'.Ludovic Courtès
This is a followup to the merge commit in 7df09ee0ab3e7962ef27859ce87e06a323059284. 'vala-next' was removed in 5bbd742067015998fa4728926079f546e5023920 on 'core-updates'. * gnu/packages/gnome.scm (gnome-boxes)[native-inputs]: Replace 'vala-next' with 'vala'.
2023-03-02gnu: libgc: Update to 8.2.2 and remove '--disable-munmap'.Ludovic Courtès
* gnu/packages/bdw-gc.scm (libgc): Update to 8.2.2. [arguments]: Remove "--disable-munmap" from #:configure-flags. * gnu/packages/guile.scm (guile-3.0)[source]: Leave 'test-out-of-memory' test untouched. (guile-next)[arguments]: Likewise, in 'skip-failing-tests' phase. (guile-for-guile-emacs)[arguments]: Likewise, in 'bootstrap' phase.
2023-03-02Merge remote-tracking branch 'savannah/master' into core-updatesChristopher Baines
Conflicts: gnu/local.mk gnu/packages/autotools.scm gnu/packages/cmake.scm gnu/packages/gnuzilla.scm gnu/packages/haskell.scm gnu/packages/pdf.scm gnu/packages/python-xyz.scm gnu/packages/samba.scm gnu/packages/tex.scm gnu/packages/tls.scm gnu/packages/wxwidgets.scm
2023-03-02gnu: pcmanfm-qt: Update to 1.2.1.Juliana Sims
* gnu/packages/lxqt.scm (pcmanfm-qt): Update to 1.2.1. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-03-02gnu: libfm-qt: Update to 1.2.1.Juliana Sims
* gnu/packages/lxqt.scm (libfm-qt): Update to 1.2.1. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-03-02gnu: lxqt-panel: Update to 1.2.1.Juliana Sims
* gnu/packages/lxqt.scm (lxqt-panel): Update to 1.2.1. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-03-01gnu: FFmpeg: Enable libwebp.Ryan Sundberg
* gnu/packages/video.scm (ffmpeg)[inputs]: Add libwebp. [arguments]: Pass '--enable-libwebp' to #:configure-flags. (ffmpeg-2.8)[inputs]: Remove libwebp. Co-authored-by: Leo Famulari <leo@famulari.name>
2023-03-02gnu: gimp: Don't retain reference on GCC.宋文武
Partly fixes <https://issues.guix.gnu.org/57677>. * gnu/packages/gimp.scm (gimp)[arguments]: Add #:modules and #:phases.
2023-03-02gnu: Remove broken xf86 video drivers.宋文武
Those packages build failed with current xorg-server: openchrome: multiple definition of some functions. other: missing headers for xf86RamDac.h, IBM.h, etc. * gnu/packages/xorg.scm (xf86-video-glint, xf86-video-openchrome xf86-video-suncg6, xf86-video-sunffb, xf86-video-tga xf86-video-trident): Remove packages. * gnu/packages/patches/xf86-video-tga-remove-mibstore.patch: Remove patch. * gnu/local.mk (dist_patch_DATA): Remove it.
2023-03-02gnu: cloc: Update to 1.96.1.Philippe SWARTVAGHER
* gnu/packages/code.scm (cloc): Update to 1.96.1. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-03-02gnu: dos2unix: Use new package style.Timotej Lazar
* gnu/packages/textutils.scm (dos2unix)[arguments]: Use gexps. [native-inputs]: Drop labels. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-03-02gnu: dos2unix: Update to 7.4.4.Timotej Lazar
* gnu/packages/textutils.scm (dos2unix): Update to 7.4.4. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-03-02gnu: mympd: Update to 10.2.4.Bruno Victal
* gnu/packages/mpd.scm (mympd): Update to 10.2.4. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-03-02gnu: Add r-maaslin2.Mădălin Ionel Patrașcu
* gnu/packages/bioconductor.scm (r-maaslin2): New variable. Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
2023-03-02gnu: Add r-metagenomeseq.Mădălin Ionel Patrașcu
* gnu/packages/bioconductor.scm (r-metagenomeseq): New variable.
2023-03-02gnu: Add r-chemometrics.Mădălin Ionel Patrașcu
* gnu/packages/cran.scm (r-chemometrics): New variable.
2023-03-02gnu: Add r-som.Mădălin Ionel Patrașcu
* gnu/packages/cran.scm (r-som): New variable.
2023-03-02gnu: Add r-cplm.Mădălin Ionel Patrașcu
* gnu/packages/cran.scm (r-cplm): New variable.
2023-03-02gnu: Add r-biglm.Mădălin Ionel Patrașcu
* gnu/packages/cran.scm (r-biglm): New variable. Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
2023-03-01gnu: emacs-bash-completion: Update to 3.1.1-0.796a806.Maxim Cournoyer
* gnu/packages/emacs-xyz.scm (emacs-bash-completion): Update to 3.1.1-0.796a806. [phases]: Delete make-git-checkout-writable phase.
2023-03-01gnu: sdrangel: Update to 7.10.0.Guillaume Le Vaillant
* gnu/packages/radio.scm (sdrangel): Update to 7.10.0.
2023-03-01gnu: csdr: Update to 0.18.1.Guillaume Le Vaillant
* gnu/packages/radio.scm (csdr): Update to 0.18.1.
2023-03-01gnu: xmrig: Update to 6.19.0.Guillaume Le Vaillant
* gnu/packages/finance.scm (xmrig): Update to 6.19.0.
2023-03-01gnu: monero-gui: Update to 0.18.2.0.Guillaume Le Vaillant
* gnu/packages/finance.scm (monero-gui): Update to 0.18.2.0.
2023-03-01gnu: p2pool: Update to 3.1.Guillaume Le Vaillant
* gnu/packages/finance.scm (p2pool): Update to 3.1. [arguments]: Add 'configure-flags". Add custom 'check' phase and enable tests.
2023-03-01gnu: monero: Update to 0.18.2.0.Guillaume Le Vaillant
* gnu/packages/finance.scm (monero): Update to 0.18.2.0.
2023-03-01gnu: Add emacs-motif.Andy Tai
* gnu/packages/text-editors.scm (emacs-motif): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
2023-03-01gnu: Add ghc-hs-conllu.Alice BRENON
* gnu/packages/haskell-xyz (ghc-hs-conllu): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
2023-03-01gnu: font-google-noto-emoji: Install correct license file.Simon South
* gnu/packages/fonts.scm (font-google-noto-emoji)[arguments]<#:phases>: Add "enter-font-directory" phase; remove now-superfluous prefix from paths in "remove-unsupported" phase. Signed-off-by: Christopher Baines <mail@cbaines.net>
2023-03-01gnu: Add font-apl2741-unicode.B. Wilson
* gnu/packages/apl.scm (font-apl2741-unicode): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
2023-03-01gnu: icecat: Remove unsupported --disable-eme option on aarch64.r0man
* gnu/packages/gnuzilla.scm (icecat): Remove unsupported --disable-eme option on aarch64. Signed-off-by: Christopher Baines <mail@cbaines.net>
2023-03-01gnu: Add python-pypresence.Giacomo Leidi
* gnu/packages/messaging.scm (python-pypresence): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
2023-03-01gnu: Add flat-remix-gnome-theme.Sughosha
* gnu/packages/gnome-xyz.scm (flat-remix-gnome-theme): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
2023-03-01gnu: Add flat-remix-gtk-theme.Sughosha
* gnu/packages/gnome-xyz.scm (flat-remix-gtk-theme): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>