[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
147/181: gnu: lollypop: Update to 1.4.35 and enable tests.
From: |
guix-commits |
Subject: |
147/181: gnu: lollypop: Update to 1.4.35 and enable tests. |
Date: |
Tue, 13 Sep 2022 02:26:22 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit c1721e769ea657544cff22f0c8a977f4d9eada36
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Sep 10 02:35:27 2022 -0400
gnu: lollypop: Update to 1.4.35 and enable tests.
* gnu/packages/gnome.scm (lollypop): Update to 1.4.35.
[tests?]: Delete argument.
[phases]{disable-gtk-update-icon-cache}: New phase.
{wrap-program}: Use search-input-file.
[native-inputs]: Remove labels. Remove gtk+:bin.
[inputs]: Remove labels. Add bash-minimal.
---
gnu/packages/gnome.scm | 75 ++++++++++++++++++++++++--------------------------
1 file changed, 36 insertions(+), 39 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index ed4305db90..63d2f1807e 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -10946,63 +10946,60 @@ views can be printed as PDF or PostScript files, or
exported to HTML.")
(define-public lollypop
(package
(name "lollypop")
- (version "1.4.24")
+ (version "1.4.35")
(source
(origin
(method url-fetch)
(uri (string-append "https://adishatz.org/lollypop/"
"lollypop-" version ".tar.xz"))
(sha256
- (base32 "10cw3x75siibmnbh4zhfmf2vd08fqjs3lj3l4wpk6zj9h22ncfxw"))))
+ (base32 "0rvwj18x1gs7fgvniijzvlmgmzcgr7il22zclzsn5nkl8xbwgzk0"))))
(build-system meson-build-system)
(arguments
- `(#:imported-modules
- (,@%meson-build-system-modules
- (guix build python-build-system))
- #:modules
- ((guix build meson-build-system)
- ((guix build python-build-system) #:prefix python:)
- (guix build utils))
+ `(#:imported-modules (,@%meson-build-system-modules
+ (guix build python-build-system))
+ #:modules ((guix build meson-build-system)
+ ((guix build python-build-system) #:prefix python:)
+ (guix build utils))
#:glib-or-gtk? #t
- #:tests? #f ; no test suite
#:phases
(modify-phases %standard-phases
+ (add-after 'unpack 'disable-gtk-update-icon-cache
+ (lambda _
+ (setenv "DESTDIR" "/")))
(add-after 'install 'wrap-program
(lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out"))
- (gi-typelib-path (getenv "GI_TYPELIB_PATH")))
- (wrap-program (string-append out "/bin/lollypop")
- `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))
- #t))
+ (wrap-program (search-input-file outputs "bin/lollypop")
+ `("GI_TYPELIB_PATH" ":" prefix
+ (,(getenv "GI_TYPELIB_PATH"))))))
(add-after 'install 'wrap-python
(assoc-ref python:%standard-phases 'wrap)))))
(native-inputs
- `(("gettext" ,gettext-minimal)
- ("glib:bin" ,glib "bin") ; For glib-compile-resources
- ("gtk+:bin" ,gtk+ "bin") ; For gtk-update-icon-cache
- ("pkg-config" ,pkg-config)))
+ (list gettext-minimal
+ `(,glib "bin") ; For glib-compile-resources
+ pkg-config))
(inputs
- `(("glib-networking" ,glib-networking)
- ("gobject-introspection" ,gobject-introspection)
- ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
- ("gst-plugins-base" ,gst-plugins-base)
- ("libnotify" ,libnotify)
- ("libsecret" ,libsecret)
- ("libhandy" ,libhandy)
- ("libsoup" ,libsoup-minimal-2)
- ("python" ,python)
- ("python-beautifulsoup4" ,python-beautifulsoup4)
- ("python-gst" ,python-gst)
- ("python-pil" ,python-pillow)
- ("python-pycairo" ,python-pycairo)
- ("python-pygobject" ,python-pygobject)
- ("python-pylast" ,python-pylast)
- ("totem-pl-parser" ,totem-pl-parser)
- ("webkitgtk" ,webkitgtk)))
+ (list bash-minimal
+ glib-networking
+ gobject-introspection
+ gsettings-desktop-schemas
+ gst-plugins-base
+ libnotify
+ libsecret
+ libhandy
+ libsoup-minimal-2
+ python
+ python-beautifulsoup4
+ python-gst
+ python-pillow
+ python-pycairo
+ python-pygobject
+ python-pylast
+ totem-pl-parser
+ webkitgtk))
(propagated-inputs
- (list ;; gst-plugins-base is required to start Lollypop,
- ;; the others are required to play streaming.
- gst-plugins-good gst-plugins-ugly))
+ (list gst-plugins-good ;required to start lollypop
+ gst-plugins-ugly)) ;required for streaming
(home-page "https://wiki.gnome.org/Apps/Lollypop")
(synopsis "GNOME music playing application")
(description
- 96/181: gnu: gupnp: Update to 1.5.4., (continued)
- 96/181: gnu: gupnp: Update to 1.5.4., guix-commits, 2022/09/13
- 101/181: gnu: libpeas: Update to 1.32.0., guix-commits, 2022/09/13
- 114/181: gnu: amtk: Update to 5.5.1., guix-commits, 2022/09/13
- 120/181: gnu: grilo-plugins: Update to 0.3.15., guix-commits, 2022/09/13
- 127/181: gnu: libgee: Update to 0.20.5., guix-commits, 2022/09/13
- 132/181: gnu: network-manager-openvpn: Update to 1.10.0., guix-commits, 2022/09/13
- 137/181: gnu: gtk-vnc: Update to 1.3.1., guix-commits, 2022/09/13
- 134/181: gnu: network-manager-openconnect: Update to 1.2.8., guix-commits, 2022/09/13
- 145/181: gnu: orca: Update to 42.3., guix-commits, 2022/09/13
- 148/181: gnu: cheese: Update to 41.1., guix-commits, 2022/09/13
- 147/181: gnu: lollypop: Update to 1.4.35 and enable tests.,
guix-commits <=
- 168/181: gnu: gupnp-igd: Build with gupnp-1.4., guix-commits, 2022/09/13
- 163/181: gnu: Add webkitgtk-next., guix-commits, 2022/09/13
- 154/181: gnu: polari: Update to 42.1., guix-commits, 2022/09/13
- 150/181: gnu: sound-juicer: Update to 3.38.0., guix-commits, 2022/09/13
- 151/181: gnu: ghex: Update to 42.3., guix-commits, 2022/09/13
- 152/181: gnu: libgit2-glib: Update to 1.1.0., guix-commits, 2022/09/13
- 159/181: gnu: sysprof: Update to 3.45.1., guix-commits, 2022/09/13
- 160/181: gnu: gnome-builder: Update to 42.1., guix-commits, 2022/09/13
- 58/181: gnu: gnome-bluetooth: Update to 42.4., guix-commits, 2022/09/13
- 65/181: gnu: evince: Update to 42.3., guix-commits, 2022/09/13