[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
16/20: gnu: workrave: Compute source COMMIT from VERSION.
From: |
guix-commits |
Subject: |
16/20: gnu: workrave: Compute source COMMIT from VERSION. |
Date: |
Tue, 19 Feb 2019 04:03:13 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit 89f2d7360b5ab62c07667b602c8bcac94c8a0aee
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Tue Feb 19 07:33:54 2019 +0100
gnu: workrave: Compute source COMMIT from VERSION.
* gnu/packages/gnome.scm (workrave)[version, source]: Conventionally
generate COMMIT from VERSION, instead of the other way 'round.
---
gnu/packages/gnome.scm | 85 ++++++++++++++++++++++++--------------------------
1 file changed, 41 insertions(+), 44 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index a5ca245..65f19c3 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -7427,52 +7427,49 @@ configurable file renaming. ")
(license license:gpl3)))
(define-public workrave
- (let ((commit "v1_10_21"))
- (package
- (name "workrave")
- (version (string-map (match-lambda
- (#\_ #\.)
- (chr chr))
- (string-drop commit 1)))
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/rcaelers/workrave.git")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "150qca8c552fakjlzkgarsxgp87l1xcwn19svqsa9d0cygqxjgia"))))
- (build-system glib-or-gtk-build-system)
- (propagated-inputs `(("glib" ,glib)
- ("gtk+" ,gtk+)
- ("gdk-pixbuf" ,gdk-pixbuf)
- ("gtkmm" ,gtkmm)
- ("glibmm" ,glibmm)
- ("libx11" ,libx11)
- ("libxtst" ,libxtst)
- ("dconf" ,dconf)
- ("libice" ,libice)))
- (inputs `(("libsm" ,libsm)
- ("python-cheetah" ,python2-cheetah)))
- (native-inputs `(("glib" ,glib "bin")
- ("pkg-config" ,pkg-config)
- ("gettext" ,gnu-gettext)
- ("autoconf" ,autoconf)
- ("autoconf-archive" , autoconf-archive)
- ("automake" ,automake)
- ("libtool" ,libtool)
- ("intltool" ,intltool)
- ("libxscrnsaver" ,libxscrnsaver)
- ("gobject-introspection" ,gobject-introspection)
- ("python2" ,python-2)))
- (synopsis "Tool to help prevent repetitive strain injury (RSI)")
- (description
- "Workrave is a program that assists in the recovery and prevention of
+ (package
+ (name "workrave")
+ (version "1.10.21")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rcaelers/workrave.git")
+ (commit (string-map (match-lambda (#\_ #\.) (chr chr)) version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "150qca8c552fakjlzkgarsxgp87l1xcwn19svqsa9d0cygqxjgia"))))
+ (build-system glib-or-gtk-build-system)
+ (propagated-inputs `(("glib" ,glib)
+ ("gtk+" ,gtk+)
+ ("gdk-pixbuf" ,gdk-pixbuf)
+ ("gtkmm" ,gtkmm)
+ ("glibmm" ,glibmm)
+ ("libx11" ,libx11)
+ ("libxtst" ,libxtst)
+ ("dconf" ,dconf)
+ ("libice" ,libice)))
+ (inputs `(("libsm" ,libsm)
+ ("python-cheetah" ,python2-cheetah)))
+ (native-inputs `(("glib" ,glib "bin")
+ ("pkg-config" ,pkg-config)
+ ("gettext" ,gnu-gettext)
+ ("autoconf" ,autoconf)
+ ("autoconf-archive" , autoconf-archive)
+ ("automake" ,automake)
+ ("libtool" ,libtool)
+ ("intltool" ,intltool)
+ ("libxscrnsaver" ,libxscrnsaver)
+ ("gobject-introspection" ,gobject-introspection)
+ ("python2" ,python-2)))
+ (synopsis "Tool to help prevent repetitive strain injury (RSI)")
+ (description
+ "Workrave is a program that assists in the recovery and prevention of
repetitive strain injury (@dfn{RSI}). The program frequently alerts you to
take
micro-pauses and rest breaks, and restricts you to your daily limit.")
- (home-page "http://www.workrave.org")
- (license license:gpl3+))))
+ (home-page "http://www.workrave.org")
+ (license license:gpl3+)))
(define-public ghex
(package
- 04/20: gnu: containerd: Update to 1.2.4., (continued)
- 04/20: gnu: containerd: Update to 1.2.4., guix-commits, 2019/02/19
- 02/20: gnu: python-pymysql: Update to 0.9.3., guix-commits, 2019/02/19
- 03/20: gnu: docker: Fix build on btrfs., guix-commits, 2019/02/19
- 13/20: gnu: gegl: Don't use NAME in source URI., guix-commits, 2019/02/19
- 01/20: gnu: perl-db-file: Update to 1.843., guix-commits, 2019/02/19
- 12/20: gnu: gegl: Update to 0.4.12., guix-commits, 2019/02/19
- 11/20: gnu: babl: Update to 0.1.62., guix-commits, 2019/02/19
- 07/20: gnu: protozero: Update to 1.6.5., guix-commits, 2019/02/19
- 06/20: gnu: memcached: Update to 1.5.12., guix-commits, 2019/02/19
- 18/20: gnu: libdazzle: Don't use NAME in source URI., guix-commits, 2019/02/19
- 16/20: gnu: workrave: Compute source COMMIT from VERSION.,
guix-commits <=
- 19/20: gnu: unbound: Update to 1.9.0., guix-commits, 2019/02/19
- 05/20: gnu: gerbv: Update to 2.7.0., guix-commits, 2019/02/19
- 09/20: gnu: protozero: Fix typo in description., guix-commits, 2019/02/19
- 17/20: gnu: ghex: Don't use NAME in source URI., guix-commits, 2019/02/19
- 20/20: gnu: stgit: Don't use unstable tarball., guix-commits, 2019/02/19
- 10/20: gnu: hiawatha: Update to 10.9., guix-commits, 2019/02/19
- 14/20: gnu: gimp: Update to 2.10.8., guix-commits, 2019/02/19
- 08/20: gnu: protozero: Don't use unstable tarball., guix-commits, 2019/02/19
- 15/20: gnu: soundconverter: Update to 3.0.1., guix-commits, 2019/02/19