* [bug#65458] [PATCH] gnu: granite: Upgrade to 7.3.0.
@ 2023-08-22 19:35 altadil via Guix-patches via
2023-09-02 3:26 ` Maxim Cournoyer
0 siblings, 1 reply; 4+ messages in thread
From: altadil via Guix-patches via @ 2023-08-22 19:35 UTC (permalink / raw)
To: 65458; +Cc: altadil
* gnu/packages/pantheon.scm (granite): Upgrade to 7.3.0.
---
This is a work in progress, as I have noted two problems.
First is: guix lint says
"label 'glib' does not match package name 'glib:bin"
but looking at the package reference in the manual,
I don’t get why the way I wrote it is wrong.
Second: guix size reports a doubled size, but I don’t
know if anything can be done about it.
gnu/packages/pantheon.scm | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/pantheon.scm b/gnu/packages/pantheon.scm
index 1c6795cc1d..c5cbde24c0 100644
--- a/gnu/packages/pantheon.scm
+++ b/gnu/packages/pantheon.scm
@@ -30,6 +30,7 @@ (define-module (gnu packages pantheon)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
#:use-module (gnu packages xml)
+ #:use-module (gnu packages web)
#:use-module (gnu packages)
#:use-module (guix build-system meson)
#:use-module (guix git-download)
@@ -40,7 +41,7 @@ (define-module (gnu packages pantheon)
(define-public granite
(package
(name "granite")
- (version "6.2.0")
+ (version "7.3.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -49,16 +50,20 @@ (define-public granite
(file-name (git-file-name name version))
(sha256
(base32
- "0ilslmg63hh2x7h5rvs3mhzw1y9ixhhkqnn1j1lzwm12v2iidkaq"))))
+ "0pyvkif2kin5dskh7adadsh4r96mvx12y7cs6gnm0ml733q548dj"))))
(build-system meson-build-system)
(arguments
`(#:phases (modify-phases %standard-phases
(add-after 'unpack 'disable-icon-cache
(lambda _
(setenv "DESTDIR" "/"))))))
- (inputs (list glib gtk+ libgee))
- (native-inputs (list gettext-minimal gobject-introspection pkg-config
- python vala))
+ (inputs (list glib gtk libgee sassc))
+ (native-inputs (list gettext-minimal
+ `(,glib "bin")
+ gobject-introspection
+ pkg-config
+ python
+ vala))
(home-page "https://github.com/elementary/granite")
(synopsis "Library that extends GTK with common widgets and utilities")
(description "Granite is a companion library for GTK+ and GLib. Among other
base-commit: 0c4fb8f43f8aba2dcabe1bc97a8f6d8d41057704
--
2.41.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#65458] [PATCH] gnu: granite: Upgrade to 7.3.0.
2023-08-22 19:35 [bug#65458] [PATCH] gnu: granite: Upgrade to 7.3.0 altadil via Guix-patches via
@ 2023-09-02 3:26 ` Maxim Cournoyer
2023-09-02 13:29 ` Altadil via Guix-patches via
0 siblings, 1 reply; 4+ messages in thread
From: Maxim Cournoyer @ 2023-09-02 3:26 UTC (permalink / raw)
To: altadil; +Cc: 65458
Hi,
altadil <Altadil@protonmail.com> writes:
> * gnu/packages/pantheon.scm (granite): Upgrade to 7.3.0.
> ---
> This is a work in progress, as I have noted two problems.
> First is: guix lint says
> "label 'glib' does not match package name 'glib:bin"
> but looking at the package reference in the manual,
> I don’t get why the way I wrote it is wrong.
The glib:bin lint warning can be ignored. It's a long standing issue.
> Second: guix size reports a doubled size, but I don’t
> know if anything can be done about it.
GTK (4) needs some size work. It appear this may have broke some other
dependent packages such as pantheon-calculator, maybe because of the
mismatched GTK version used. We'll have to see what the QA says after
it has processed it (https://qa.guix.gnu.org/issue/65458).
--
Thanks,
Maxim
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#65458] [PATCH] gnu: granite: Upgrade to 7.3.0.
2023-09-02 3:26 ` Maxim Cournoyer
@ 2023-09-02 13:29 ` Altadil via Guix-patches via
2023-09-06 3:07 ` bug#65458: " Maxim Cournoyer
0 siblings, 1 reply; 4+ messages in thread
From: Altadil via Guix-patches via @ 2023-09-02 13:29 UTC (permalink / raw)
To: Maxim Cournoyer; +Cc: 65458
> Hi,
>
> altadil Altadil@protonmail.com writes:
>
> > * gnu/packages/pantheon.scm (granite): Upgrade to 7.3.0.
> > ---
> > This is a work in progress, as I have noted two problems.
> > First is: guix lint says
> > "label 'glib' does not match package name 'glib:bin"
> > but looking at the package reference in the manual,
> > I don’t get why the way I wrote it is wrong.
>
>
> The glib:bin lint warning can be ignored. It's a long standing issue.
>
> > Second: guix size reports a doubled size, but I don’t
> > know if anything can be done about it.
>
>
> GTK (4) needs some size work. It appear this may have broke some other
> dependent packages such as pantheon-calculator, maybe because of the
> mismatched GTK version used. We'll have to see what the QA says after
> it has processed it (https://qa.guix.gnu.org/issue/65458).
>
> --
> Thanks,
> Maxim
Hi,
my goal in updating granite was actually to be able to upgrade pantheon-calculator to its latest upstream version. So I guess I’ll go work on that as soon as I can.
Thanks a lot for your help !
Altadil
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#65458: [PATCH] gnu: granite: Upgrade to 7.3.0.
2023-09-02 13:29 ` Altadil via Guix-patches via
@ 2023-09-06 3:07 ` Maxim Cournoyer
0 siblings, 0 replies; 4+ messages in thread
From: Maxim Cournoyer @ 2023-09-06 3:07 UTC (permalink / raw)
To: Altadil; +Cc: 65458-done
Hello,
Installed with cc3fbfbb2. I needed to propagate gtk and others, which
were referenced in the pkg-config file and causing sideload to break.
--
Thanks,
Maxim
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-09-06 3:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-22 19:35 [bug#65458] [PATCH] gnu: granite: Upgrade to 7.3.0 altadil via Guix-patches via
2023-09-02 3:26 ` Maxim Cournoyer
2023-09-02 13:29 ` Altadil via Guix-patches via
2023-09-06 3:07 ` bug#65458: " Maxim Cournoyer
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.