[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
159/181: gnu: sysprof: Update to 3.45.1.
From: |
guix-commits |
Subject: |
159/181: gnu: sysprof: Update to 3.45.1. |
Date: |
Tue, 13 Sep 2022 02:26:29 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 715fb46817f2371b17833db7c4cb5ea5db43a500
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sun Sep 11 00:45:03 2022 -0400
gnu: sysprof: Update to 3.45.1.
* gnu/packages/gnome.scm (sysprof): Update to 3.45.1.
[phases]{patch-install-script}: Rename to...
{disable-post-install}: ... this, and adjust.
[inputs]: Replace glib with glib-next, gtk+ with gtk. Add libadwaita.
[native-inputs]: Replace glib:bin with glib-next:bin. Sort.
(sysprof-3.44): New variable.
(gnome-builder)[inputs]: Replace sysprof with sysprof-3.44.
---
gnu/packages/gnome.scm | 53 ++++++++++++++++++++++++++++++++++++++------------
1 file changed, 41 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index da6a965e41..841cbc043f 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -12627,7 +12627,7 @@ GObject introspection bindings.")
(define-public sysprof
(package
(name "sysprof")
- (version "3.44.0")
+ (version "3.45.1")
(source
(origin
(method url-fetch)
@@ -12635,7 +12635,7 @@ GObject introspection bindings.")
(version-major+minor version) "/"
"sysprof-" version ".tar.xz"))
(sha256
- (base32 "0nq0icbln0ryqzlybr7wyl19mhr3vkqzs6wasn430fwpf5drypdb"))))
+ (base32 "16nmr1qs7s2ylhwj58zj6b7in72nw7z72glaz746f2g7dbqs00k4"))))
(build-system meson-build-system)
(arguments
(list
@@ -12643,26 +12643,29 @@ GObject introspection bindings.")
#~(list (string-append "-Dsystemdunitdir=" #$output "/share/systemd"))
#:phases
#~(modify-phases %standard-phases
- (add-after 'unpack 'patch-install-script
+ (add-after 'unpack 'disable-post-install
(lambda _
- (substitute* "build-aux/meson/post_install.sh"
- (("gtk-update-icon-cache") "true")
- (("update-desktop-database") "true")))))))
+ (substitute* "meson.build"
+ (("gtk_update_icon_cache: true")
+ "gtk_update_icon_cache: false")
+ (("update_desktop_database: true")
+ "update_desktop_database: false")))))))
(propagated-inputs
(list polkit))
(inputs
- (list glib
- gtk+
+ (list glib-next
+ gtk
json-glib
+ libadwaita
libdazzle
libunwind
polkit))
(native-inputs
(list gettext-minimal
- `(,glib "bin") ;for gdbus-codegen, etc.
+ `(,glib-next "bin") ;for gdbus-codegen, etc.
itstool
- pkg-config
- libxml2))
+ libxml2
+ pkg-config))
;; This home page is so woefully out of date as to be essentially useless.
;; (home-page "http://www.sysprof.com")
(home-page "https://wiki.gnome.org/Apps/Sysprof")
@@ -12676,6 +12679,32 @@ It uses the kernel's built-in @code{ptrace} feature
and handles shared
libraries. Applications do not need to be recompiled--or even restarted.")
(license license:gpl3+)))
+(define-public sysprof-3.44
+ (package
+ (inherit sysprof)
+ (name "sysprof")
+ (version "3.44.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnome/sources/sysprof/"
+ (version-major+minor version) "/"
+ "sysprof-" version ".tar.xz"))
+ (sha256
+ (base32
"0nq0icbln0ryqzlybr7wyl19mhr3vkqzs6wasn430fwpf5drypdb"))))
+ (inputs (modify-inputs (package-inputs sysprof)
+ (replace "glib" glib)
+ (replace "gtk" gtk+)))
+ (native-inputs (modify-inputs (package-native-inputs sysprof)
+ (replace "glib" `(,glib "bin"))))
+ (arguments (substitute-keyword-arguments (package-arguments sysprof)
+ ((#:phases phases '%standard-phases)
+ #~(modify-phases #$phases
+ (replace 'disable-post-install
+ (lambda _
+ (substitute* "build-aux/meson/post_install.sh"
+ (("gtk-update-icon-cache") "true")
+ (("update-desktop-database") "true"))))))))))
+
(define-public gnome-builder
(package
(name "gnome-builder")
@@ -12738,7 +12767,7 @@ libraries. Applications do not need to be
recompiled--or even restarted.")
llvm
python
python-pygobject
- sysprof
+ sysprof-3.44
template-glib
vte
webkitgtk-with-libsoup2))
- 134/181: gnu: network-manager-openconnect: Update to 1.2.8., (continued)
- 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, 2022/09/13
- 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 <=
- 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
- 72/181: gnu: pango-next: Rename from "pango "to "pango-next"., guix-commits, 2022/09/13
- 83/181: gnu: gnome-weather: Update to 42.0., guix-commits, 2022/09/13
- 138/181: gnu: tracker: Patch a /bin/bash reference., guix-commits, 2022/09/13
- 166/181: gnu: libofx: Update to 0.10.7., guix-commits, 2022/09/13
- 162/181: gnu: libsoup: Update to 3.1.4., guix-commits, 2022/09/13
- 161/181: gnu: numix-gtk-theme: Remove input labels., guix-commits, 2022/09/13
- 156/181: gnu: apostrophe: Update to 2.6.3., guix-commits, 2022/09/13