[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/13: gnu: gnome-user-share: Update to 43.0.
From: |
guix-commits |
Subject: |
02/13: gnu: gnome-user-share: Update to 43.0. |
Date: |
Sun, 9 Apr 2023 12:57:14 -0400 (EDT) |
apteryx pushed a commit to branch core-updates
in repository guix.
commit cf34f40420990e57c267131af21d38b0f2557d84
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Apr 8 11:01:47 2023 -0400
gnu: gnome-user-share: Update to 43.0.
* gnu/packages/gnome.scm (gnome-user-share): Update to 43.0.
[source]: Update URL.
[arguments]: Remove #:meson argument. Use gexps. Remove
"-Dnautilus_extension=true" configure flag.
[native-inputs]: Remove labels.
[inputs]: Remove gnome-bluetooth, libcanberra, libnotify and nautilus.
---
gnu/packages/gnome.scm | 65 ++++++++++++++++++++++----------------------------
1 file changed, 28 insertions(+), 37 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 42bac783b6..632f20ef38 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -39,7 +39,7 @@
;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autistici.org>
;;; Copyright © 2019 Jelle Licht <jlicht@fsfe.org>
;;; Copyright © 2019 Jonathan Frederickson <jonathan@terracrypt.net>
-;;; Copyright © 2019, 2020, 2021, 2022 Maxim Cournoyer
<maxim.cournoyer@gmail.com>
+;;; Copyright © 2019, 2020, 2021, 2022, 2023 Maxim Cournoyer
<maxim.cournoyer@gmail.com>
;;; Copyright © 2019, 2020 Martin Becze <mjbecze@riseup.net>
;;; Copyright © 2019 David Wilson <david@daviwil.com>
;;; Copyright © 2019, 2020 Raghav Gururajan <raghavgururajan@disroot.org>
@@ -1649,44 +1649,35 @@ tour of all gnome components and allows the user to set
them up.")
(define-public gnome-user-share
(package
- (name "gnome-user-share")
- (version "3.34.0")
- (source (origin
- (method url-fetch)
- (uri (string-append "mirror://gnome/sources/" name "/"
- (version-major+minor version) "/"
- name "-" version ".tar.xz"))
- (sha256
- (base32
- "04r9ck9v4i0d31grbli1d4slw2d6dcsfkpaybkwbzi7wnj72l30x"))))
- (build-system meson-build-system)
- (arguments
- `(#:glib-or-gtk? #t
- #:meson ,meson-0.60
- #:configure-flags
- `("-Dsystemduserunitdir=/tmp/empty"
- ;; Enable nautilus extension for file sharing.
- "-Dnautilus_extension=true")))
- (native-inputs
- `(("gettext" ,gettext-minimal)
- ("glib:bin" ,glib "bin")
- ("gobject-introspection" ,gobject-introspection)
- ("gtk+:bin" ,gtk+ "bin")
- ("pkg-config" ,pkg-config)
- ("yelp-tools" ,yelp-tools)))
- (inputs
- (list glib
- gnome-bluetooth
- gtk+
- libcanberra
- libnotify
- nautilus)) ; For nautilus extension.
- (synopsis "File sharing for GNOME desktop")
- (description "GNOME User Share is a small package that binds together
+ (name "gnome-user-share")
+ (version "43.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnome/sources/" name "/"
+ (version-major version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1kiq2n39yz7szcf7wrs5vhd2hdn04zx1pxgp7qskycaq0nm0dwqd"))))
+ (build-system meson-build-system)
+ (arguments
+ (list #:glib-or-gtk? #t
+ #:configure-flags
+ #~(list "-Dsystemduserunitdir=/tmp/empty")))
+ (native-inputs
+ (list gettext-minimal
+ `(,glib "bin")
+ gobject-introspection
+ `(,gtk "bin")
+ pkg-config
+ yelp-tools))
+ (inputs (list glib gtk))
+ (synopsis "File sharing for GNOME desktop")
+ (description "GNOME User Share is a small package that binds together
various free software projects to bring easy to use user-level file
sharing to the masses.")
- (home-page "https://gitlab.gnome.org/GNOME/gnome-user-share")
- (license license:gpl2+)))
+ (home-page "https://gitlab.gnome.org/GNOME/gnome-user-share")
+ (license license:gpl2+)))
(define-public sushi
(package
- branch core-updates updated (03580b5f1d -> 2bde53c594), guix-commits, 2023/04/09
- 05/13: gnu: dconf-editor: Update to 43.0., guix-commits, 2023/04/09
- 04/13: gnu: gnome-screenshot: Update to 41.0-0.9f067cf., guix-commits, 2023/04/09
- 07/13: gnu: authenticator: Patch to build with a recent meson., guix-commits, 2023/04/09
- 11/13: build: meson: Explicitly invoke "meson setup" instead of just "meson"., guix-commits, 2023/04/09
- 01/13: gnu: Remove extraneous #:meson build arguments., guix-commits, 2023/04/09
- 08/13: gnu: gnome-mahjongg: Update to 3.38.3-0.e9e73e5., guix-commits, 2023/04/09
- 10/13: build: meson: Honor bindir, libdir and includedir., guix-commits, 2023/04/09
- 03/13: gnu: libnice: Update to 0.1.21., guix-commits, 2023/04/09
- 02/13: gnu: gnome-user-share: Update to 43.0.,
guix-commits <=
- 09/13: gnu: libcacard: Use latest meson., guix-commits, 2023/04/09
- 06/13: gnu: gnome-disk-utility: Update to 44.0., guix-commits, 2023/04/09
- 12/13: gnu: meson: Update to 1.0.1., guix-commits, 2023/04/09
- 13/13: gnu: gtk: Do not manually move /bin., guix-commits, 2023/04/09