summaryrefslogtreecommitdiff
path: root/gnu/packages/gnome.scm
Commit message (Collapse)AuthorAge
* Merge remote-tracking branch 'signed/master' into core-updatesMathieu Othacehe2021-12-10
|\
| * gnu: lollypop: Update to 1.4.24.Marius Bakke2021-12-08
| | | | | | | | | | * gnu/packages/gnome.scm (lollypop): Update to 1.4.24. [native-inputs]: Remove INTLTOOL and ITSTOOL. Add GETTEXT-MINIMAL.
* | gnu: lollypop: Build with libsoup@2.Marius Bakke2021-12-08
| | | | | | | | | | * gnu/packages/gnome.scm (lollypop)[inputs]: Change from LIBSOUP to LIBSOUP-MINIMAL-2.
* | gnu: rhythmbox: Adjust inputs.Marius Bakke2021-12-08
| | | | | | | | | | * gnu/packages/gnome.scm (rhythmbox)[inputs]: Change from PYTHON2-PYGOBJECT to PYTHON-PYGOBJECT. Add LIBSOUP-MINIMAL-2.
* | gnu: libsoup: Simplify inputs.Ludovic Courtès2021-12-05
| | | | | | | | | | | | | | | | Obtained by running "guix style --input-simplification=always" and by using 'modify-inputs' instead of list primitives. * gnu/packages/gnome.scm (libsoup-minimal, libsoup-minimal-2, libsoup): Simplify inputs.
* | gnu: librsvg: Simplify inputs.Ludovic Courtès2021-12-05
| | | | | | | | | | | | Obtained by running "guix style --input-simplification=always". * gnu/packages/gnome.scm (librsvg, librsvg-2.40): Simplify inputs.
* | gnu: libsoup: Remove unneeded dependency on PHP.Ludovic Courtès2021-12-05
| | | | | | | | * gnu/packages/gnome.scm (libsoup-minimal)[native-inputs]: Remove PHP.
* | gnu: gtk+: Use 'librsvg-for-system'.Ludovic Courtès2021-12-05
| | | | | | | | | | | | | | | | | | | | | | This brings back SVG support on non-x86_64 platforms. * gnu/packages/gtk.scm (gtk+)[inputs]: Use 'librsvg-for-system' unconditionally. [arguments]: In 'disable-failing-tests' phase, remove conditional substitutions aimed for non-x86_64 targets lacking librsvg support. * gnu/packages/gnome.scm (libhandy)[arguments]: Likewise, remove 'skip-test-that-requires-svg' phase.
* | gnu: librsvg@2.40: Depend on the default Pango version.Ludovic Courtès2021-12-05
| | | | | | | | | | | | | | | | | | | | This avoids conflicts where, say, gtk+ would pull pango@1.44 whereas mate-control-center would additionally pull pango@1.42 via librsvg@2.40 on i686-linux. * gnu/packages/gnome.scm (librsvg-2.40)[arguments]: In 'remove-failing-tests' phase, remove two additional tests. [inputs]: Change PANGO-1.42 to PANGO.
* | gnu: gtranslator: Fix URL.Ludovic Courtès2021-12-05
| | | | | | | | | | | | | | Reported by Vivien Kraus. * gnu/packages/gnome.scm (gtranslator)[source]: Change 'version-major+minor' to 'version-major'.
* | Merge remote-tracking branch 'origin/master' into core-updates-frozenRicardo Wurmus2021-12-05
|\|
| * gnu: geary: Remove trailing #T.Ricardo Wurmus2021-11-24
| | | | | | | | | | * gnu/packages/gnome.scm (geary)[arguments]: Remove trailing #T from 'check phase.
| * gnu: geary: Add missing input.Ricardo Wurmus2021-11-24
| | | | | | | | | | * gnu/packages/gnome.scm (geary)[native-inputs]: Add gsettings-desktop-schemas for tests.
* | gnu: evolution: Build with libsoup 2.Vivien Kraus2021-12-05
| | | | | | | | | | | | | | | | * gnu/packages/gnome.scm (evolution) [phase adjust-webkitgtk-version]: Remove it. [inputs]: Depend on webkitgtk-with-libsoup2 instead of webkitgtk. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
* | gnu: libhandy: Skip test that requires librsvg on non-x86_64.Ludovic Courtès2021-12-04
| | | | | | | | | | * gnu/packages/gnome.scm (libhandy)[arguments]: Add 'skip-test-that-requires-svg' phase on non-x86_64.
* | gnu: gtranslator: Update to 40.0.Ludovic Courtès2021-12-04
| | | | | | | | | | * gnu/packages/gnome.scm (gtranslator): Update to 40.0. [inputs]: Add LIBHANDY.
* | gnu: gtranslator: Fix compilation.Ludovic Courtès2021-12-04
| | | | | | | | | | | | * gnu/packages/gnome.scm (gtranslator)[inputs]: Replace LIBSOUP with LIBSOUP-MINIMAL-2. [arguments]: Pass #:meson.
* | gnu: libgda: Do not use the bundled sqlite.Ludovic Courtès2021-12-04
| | | | | | | | | | | | * gnu/packages/gnome.scm (libgda)[source]: Add snippet. [arguments]: Pass "--enable-system-sqlite". [inputs]: Add SQLITE.
* | gnu: glade: Remove dependency on GJS on non-x86_64.Ludovic Courtès2021-12-02
| | | | | | | | | | | | * gnu/packages/gnome.scm (glade3)[arguments]: Add optional 'skip-gjs-test' phase. [native-inputs]: Provide GJS only when 'target-x86-64?'.
* | gnu: librsvg: Add 'librsvg-for-system' procedure.Ludovic Courtès2021-12-02
| | | | | | | | * gnu/packages/gnome.scm (librsvg-for-system): New procedure.
* | gnu: librsvg: Reintroduce version 2.40.Ludovic Courtès2021-12-02
| | | | | | | | * gnu/packages/gnome.scm (librsvg-2.40): New variable.
* | gnu: gnome-shell: Do not wrap in LD_LIBRARY_PATH.Ricardo Wurmus2021-12-02
| | | | | | | | | | | | | | Fixes <https://bugs.gnu.org/37123>. * gnu/packages/gnome.scm (gnome-shell)[arguments]: Remove LD_LIBRARY_PATH from wrapper.
* | gnu: gnome-builder: Use libsoup 2.Vivien Kraus2021-12-01
| | | | | | | | | | | | | | | | | | * gnu/packages/gnome.scm (gnome-builder) [phase 'patch-meson]: Don’t search for webkit2gtk-4.1. [inputs]: Replace devhelp with devhelp-with-libsoup2 and webkit with webkit-with-libsoup2. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
* | gnu: devhelp: Add a libsoup 2 variant.Vivien Kraus2021-12-01
| | | | | | | | | | | | * gnu/packages/gnome.scm (devhelp-with-libsoup2): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
* | gnu: gnome-boxes: Add Guix logo support.Mathieu Othacehe2021-11-27
| | | | | | | | | | | | * gnu/packages/patches/gnome-boxes-add-guix-logo.patch: New patch. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/gnome.scm (gnome-boxes): Use it.
* | gnu: evolution-data-server: Fix build.Guillaume Le Vaillant2021-11-26
| | | | | | | | | | | | * gnu/packages/gnome.scm (evolution-data-server)[inputs]: Replace webkitgtk by webkitgtk-with-libsoup2. [arguments]: Remove 'adjust-webkitgtk-version' phase.
* | gnu: libsoup: Disable the hsts test.Maxim Cournoyer2021-11-26
| | | | | | | | | | | | | | The test was found to fail on i686-linux. * gnu/packages/gnome.scm (libsoup-minimal)[phases] {adjust-tests}: De-register the hsts test.
* | gnu: adwaita-icon-theme: Fix the conditional native input.Maxim Cournoyer2021-11-25
| | | | | | | | | | | | | | This is a follow up to commit 16afb35ac9. * gnu/packages/gnome.scm (adwaita-icon-theme)[native-inputs]: Add an extra layer of parenthesizes on the conditional input to be spliced.
* | gnu: libsoup: Update to 3.0.3.Maxim Cournoyer2021-11-25
| | | | | | | | | | | | | | This resolves test failures on 32 bit platforms (see: https://gitlab.gnome.org/GNOME/libsoup/-/issues/236). * gnu/packages/gnome.scm (libsoup): Update to 3.0.3.
* | gnu: adwaita-icon-theme: Fix build on non-x86_64 targets.Maxim Cournoyer2021-11-25
| | | | | | | | | | * gnu/packages/gnome.scm (adwaita-icon-theme)[native-inputs]: Do not provide use 'gtk-encode-symbolic-svg' unless building for x86_64.
* | gnu: vinagre: Build with '-O2'.Ludovic Courtès2021-11-25
| | | | | | | | * gnu/packages/gnome.scm (vinagre)[arguments]: Pass "-O2 -g".
* | gnu: glib-networking: Update to 2.70.0.Maxim Cournoyer2021-11-25
| | | | | | | | | | | | | | It was erroneously thought when updating to 2.70rc in commit 60e2a3bd5e1dca1b520ea16e8967fd85795fe3ef that 2.70.0 was not yet released. * gnu/packages/gnome.scm (glib-networking): Update to 2.70.0.
* | gnu: shotwell: Build with libsoup 2.Leo Famulari2021-11-24
| | | | | | | | | | * gnu/packages/gnome.scm (shotwell)[inputs]: Remove libsoup@3. Replace webkitgtk with webkitgtk-with-libsoup2.
* | gnu: glib-networking: Work around test failure on 32-bit platforms.Ludovic Courtès2021-11-24
| | | | | | | | | | | | | | | | | | | | | | | | On 32-bit platforms with a 32-bit 'time_t', we'd get this test failure: GLib-Net:ERROR:../glib-networking-2.70.rc/tls/tests/certificate.c:689:test_certificate_not_valid_after: assertion failed (actual_str == EXPECTED_NOT_VALID_AFTER): ("2037-12-31T23:23:23Z" == "2046-07-25T18:13:10Z") This commit includes the workaround implemented upstream. * gnu/packages/patches/glib-networking-32-bit-time.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/gnome.scm (glib-networking)[arguments]: New field.
* | gnu: gdm: Pass GDK_PIXBUF_MODULE_FILE to sessions.Josselin Poiret2021-11-24
| | | | | | | | | | | | | | | | | | | | * gnu/packages/patches/gdm-pass-gdk-pixbuf-loader-env.patch: Add patch. * gnu/local.mk (dist_patch_DATA): List it. * gnu/packages/gnome.scm (gdm): Use it. * gnu/services/xorg.scm (gdm-shepherd-service): Pass GDK_PIXBUF_MODULE_FILE. Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
* | Merge branch 'master' into core-updates-frozenLudovic Courtès2021-11-23
|\|
| * gnu: piper: Update to 0.6.Brendan Tildesley2021-11-23
| | | | | | | | | | | | | | * gnu/packages/gnome.scm (piper): Update to 0.6. [inputs]: Add libratbag. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| * gnu: libratbag: Update to 0.16.Brendan Tildesley2021-11-23
| | | | | | | | | | | | * gnu/packages/gnome.scm (libratbag): Update to 0.16. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* | gnu: gupnp-igd: Set HOME before 'check' phase.Ludovic Courtès2021-11-22
| | | | | | | | * gnu/packages/gnome.scm (gupnp-igd)[arguments]: Add 'set-home' phase.
* | gnu: network-manager: Build with Meson 0.60.Ludovic Courtès2021-11-21
| | | | | | | | | | | | | | | | | | | | | | This is another way to address <https://github.com/mesonbuild/meson/issues/9492> as suggested by Nirbheek Chauhan and Paolo Bonzini. * gnu/packages/patches/network-manager-meson.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/gnome.scm (network-manager)[source]: Use it. [arguments]: Remove #:meson.
* | gnu: nautilus: Update to 41.0.Vivien Kraus2021-11-21
| | | | | | | | | | | | | | * gnu/packages/gnome.scm (nautilus): Upgrade to 41.0. * gnu/packages/gnome.scm (nautilus) [arguments]: Use meson 0.59. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
* | gnu: gnome-autoar: Update to 0.4.1.Vivien Kraus2021-11-21
| | | | | | | | | | | | | | | | | | * gnu/packages/gnome.scm (gnome-autoar): Update to 0.4.1. * gnu/packages/gnome.scm (gnome-autoar) [build-system]: Switch to meson. * gnu/packages/gnome.scm (gnome-autoar) [native-inputs]: Add glib:bin for glib-mkenums. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
* | gnu: gnome-session: Restore elogind support.Timothy Sample2021-11-21
| | | | | | | | | | | | | | | | | | | | * gnu/packages/patches/gnome-session-support-elogind.patch: New file. * gnu/local.mk: Add it. * gnu/packages/gnome.scm (gnome-session)[source]: Use it. [arguments]: Add "-Delogind=true" to #:configure-flags; remove phases that patch in old-style elogind support. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
* | gnu: gnome-shell: Update to 41.0.Maxim Cournoyer2021-11-20
| | | | | | | | | | | | | | | | * gnu/packages/gnome.scm (gnome-shell): Update to 41.0. [origin]: Remove patches and modules fields. [phases]{pre-check}: Set HOME. * gnu/packages/patches/gnome-shell-disable-test.patch: Delete file. * gnu/local.mk (dist_patch_DATA): De-register it.
* | gnu: gsettings-desktop-schemas: Update to 41.0.Maxim Cournoyer2021-11-20
| | | | | | | | | | | | * gnu/packages/gnome.scm (gsettings-desktop-schemas): Update to 41.0. Reformat synopsis and description. [origin]: Fix indentation.
* | gnu: gjs: Update to 1.70.0.Maxim Cournoyer2021-11-20
| | | | | | | | * gnu/packages/gnome.scm (gjs): Update to 1.70.0.
* | gnu: mutter: Update to 41.0 and enable tests.Maxim Cournoyer2021-11-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/gnome.scm (mutter): Update to 41.0. [imported-modules, modules]: New arguments. [configure-flags]: Specify the gles2_libname, egl_device and wayland_eglstream options. Enable the profiler by removing the option. [phases]{patch-dlopen-calls}: New phase. {disable-problematic-tests}: Likewise. {check}: Override phase. [native-inputs]{xorg-server-for-tests}: Replace with... {xvfb-run}: ... this. {adwaita-icon-theme, libxcursor, pipewire-0.3} {python-dbus, python-dbusmock, tini}: New native inputs. [propagated-inputs]: Add libxcvt. [inputs]: Add egl-wayland and sysprof.
* | gnu: geary: Upgrade to 40.0Vivien Kraus2021-11-19
| | | | | | | | | | | | * gnu/packages/gnome.scm (geary): Upgrade to 40.0. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* | gnu: libdmapsharing: Build against libsoup 2.Ludovic Courtès2021-11-18
| | | | | | | | | | * gnu/packages/gnome.scm (libdmapsharing)[propagated-inputs]: Change LIBSOUP to LIBSOUP-MINIMAL-2.
* | gnu: gthumb: Build with Meson 0.59.Ludovic Courtès2021-11-18
| | | | | | | | * gnu/packages/gnome.scm (gthumb)[arguments]: Pass #:meson.