unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#66492] [PATCH gnome-team 1/2] gnu: workrave: Update to 1.10.52.
  2023-10-12 12:40 [bug#66492] [PATCH gnome-team 0/2] Update workrave Liliana Marie Prikler
@ 2023-10-12  8:37 ` Liliana Marie Prikler
  2023-10-12  8:37 ` [bug#66492] [PATCH gnome-team 2/2] gnu: workrave: Use new input style Liliana Marie Prikler
  2023-10-12 14:15 ` [bug#66492] [PATCH gnome-team 0/2] Update workrave Maxim Cournoyer
  2 siblings, 0 replies; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-10-12  8:37 UTC (permalink / raw)
  To: 66492; +Cc: liliana.prikler, maxim.cournoyer, rg

* gnu/packages/gnome.scm (workrave): Update to 1.10.52.
---
 gnu/packages/gnome.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 24dfffd660..141b02d364 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11600,7 +11600,7 @@ (define-public soundconverter
 (define-public workrave
   (package
     (name "workrave")
-    (version "1.10.50")
+    (version "1.10.52")
     (source
      (origin
        (method git-fetch)
@@ -11611,7 +11611,7 @@ (define-public workrave
                                          version)))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0fj3fqmdn4nsjgvbbvzpxw2mgiihcr1zpb08amg2p6hg9n11y9bx"))))
+        (base32 "1rp6v9a8xmhjy75wmh7pnd092dn9nrb6wd4gcgr3c866qnpp6zsk"))))
     (build-system glib-or-gtk-build-system)
     (arguments
      ;; The only tests are maintainer tests (in po/), which fail.
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#66492] [PATCH gnome-team 2/2] gnu: workrave: Use new input style.
  2023-10-12 12:40 [bug#66492] [PATCH gnome-team 0/2] Update workrave Liliana Marie Prikler
  2023-10-12  8:37 ` [bug#66492] [PATCH gnome-team 1/2] gnu: workrave: Update to 1.10.52 Liliana Marie Prikler
@ 2023-10-12  8:37 ` Liliana Marie Prikler
  2023-10-12 14:15 ` [bug#66492] [PATCH gnome-team 0/2] Update workrave Maxim Cournoyer
  2 siblings, 0 replies; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-10-12  8:37 UTC (permalink / raw)
  To: 66492; +Cc: liliana.prikler, maxim.cournoyer, rg

* gnu/packages/gnome.scm (workrave)[native-inputs]: Drop labels.
---
 gnu/packages/gnome.scm | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 141b02d364..cf2f5e3e71 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11627,17 +11627,17 @@ (define-public workrave
                   libice
                   libsm
                   libxscrnsaver))
-    (native-inputs `(("boost" ,boost)
-                     ("pkg-config" ,pkg-config)
-                     ("gettext" ,gettext-minimal)
-                     ("autoconf" ,autoconf)
-                     ("autoconf-archive" , autoconf-archive)
-                     ("automake" ,automake)
-                     ("libtool" ,libtool)
-                     ("intltool" ,intltool)
-                     ("gobject-introspection" ,gobject-introspection)
-                     ("python3" ,python-3)
-                     ("python-jinja2" ,python-jinja2)))
+    (native-inputs (list boost
+                         pkg-config
+                         gettext-minimal
+                         autoconf
+                         autoconf-archive
+                         automake
+                         libtool
+                         intltool
+                         gobject-introspection
+                         python-3
+                         python-jinja2))
     (synopsis "Tool to help prevent repetitive strain injury (RSI)")
     (description
      "Workrave is a program that assists in the recovery and prevention of
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#66492] [PATCH gnome-team 0/2] Update workrave
@ 2023-10-12 12:40 Liliana Marie Prikler
  2023-10-12  8:37 ` [bug#66492] [PATCH gnome-team 1/2] gnu: workrave: Update to 1.10.52 Liliana Marie Prikler
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-10-12 12:40 UTC (permalink / raw)
  To: 66492; +Cc: liliana.prikler, maxim.cournoyer, rg

Hi Guix

this series updates workrave and makes it use new-style inputs
(finally).

Liliana Marie Prikler (2):
  gnu: workrave: Update to 1.10.52.
  gnu: workrave: Use new input style.

 gnu/packages/gnome.scm | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)


base-commit: b701a7018d94aebef6a967ec235c72c1f7cdfe5c
-- 
2.41.0





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#66492] [PATCH gnome-team 0/2] Update workrave
  2023-10-12 12:40 [bug#66492] [PATCH gnome-team 0/2] Update workrave Liliana Marie Prikler
  2023-10-12  8:37 ` [bug#66492] [PATCH gnome-team 1/2] gnu: workrave: Update to 1.10.52 Liliana Marie Prikler
  2023-10-12  8:37 ` [bug#66492] [PATCH gnome-team 2/2] gnu: workrave: Use new input style Liliana Marie Prikler
@ 2023-10-12 14:15 ` Maxim Cournoyer
  2023-10-12 14:24   ` Liliana Marie Prikler
  2 siblings, 1 reply; 6+ messages in thread
From: Maxim Cournoyer @ 2023-10-12 14:15 UTC (permalink / raw)
  To: Liliana Marie Prikler; +Cc: rg, 66492

Hi,

Liliana Marie Prikler <liliana.prikler@gmail.com> writes:

> Hi Guix
>
> this series updates workrave and makes it use new-style inputs
> (finally).
>
> Liliana Marie Prikler (2):
>   gnu: workrave: Update to 1.10.52.
>   gnu: workrave: Use new input style.

LGTM!  It can go straight to the master branch right?

-- 
Thanks,
Maxim




^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#66492] [PATCH gnome-team 0/2] Update workrave
  2023-10-12 14:15 ` [bug#66492] [PATCH gnome-team 0/2] Update workrave Maxim Cournoyer
@ 2023-10-12 14:24   ` Liliana Marie Prikler
  2023-10-13 18:42     ` bug#66492: " Liliana Marie Prikler
  0 siblings, 1 reply; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-10-12 14:24 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: rg, 66492

Am Donnerstag, dem 12.10.2023 um 10:15 -0400 schrieb Maxim Cournoyer:
> Hi,
> 
> Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
> 
> > Hi Guix
> > 
> > this series updates workrave and makes it use new-style inputs
> > (finally).
> > 
> > Liliana Marie Prikler (2):
> >   gnu: workrave: Update to 1.10.52.
> >   gnu: workrave: Use new input style.
> 
> LGTM!  It can go straight to the master branch right?
Probably yes, but I haven't checked.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#66492: [PATCH gnome-team 0/2] Update workrave
  2023-10-12 14:24   ` Liliana Marie Prikler
@ 2023-10-13 18:42     ` Liliana Marie Prikler
  0 siblings, 0 replies; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-10-13 18:42 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: rg, 66492-done

Am Donnerstag, dem 12.10.2023 um 16:24 +0200 schrieb Liliana Marie
Prikler:
> Am Donnerstag, dem 12.10.2023 um 10:15 -0400 schrieb Maxim Cournoyer:
> > Hi,
> > 
> > Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
> > 
> > > Hi Guix
> > > 
> > > this series updates workrave and makes it use new-style inputs
> > > (finally).
> > > 
> > > Liliana Marie Prikler (2):
> > >   gnu: workrave: Update to 1.10.52.
> > >   gnu: workrave: Use new input style.
> > 
> > LGTM!  It can go straight to the master branch right?
> Probably yes, but I haven't checked.
Pushed to gnome-team anyhow.




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-10-13 18:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-12 12:40 [bug#66492] [PATCH gnome-team 0/2] Update workrave Liliana Marie Prikler
2023-10-12  8:37 ` [bug#66492] [PATCH gnome-team 1/2] gnu: workrave: Update to 1.10.52 Liliana Marie Prikler
2023-10-12  8:37 ` [bug#66492] [PATCH gnome-team 2/2] gnu: workrave: Use new input style Liliana Marie Prikler
2023-10-12 14:15 ` [bug#66492] [PATCH gnome-team 0/2] Update workrave Maxim Cournoyer
2023-10-12 14:24   ` Liliana Marie Prikler
2023-10-13 18:42     ` bug#66492: " Liliana Marie Prikler

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).