[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
36/402: gnu: graphene: Update package definition.
From: |
guix-commits |
Subject: |
36/402: gnu: graphene: Update package definition. |
Date: |
Tue, 18 Aug 2020 16:46:48 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit f9d4a7c7f4aad625c9e8a6113ea8834c22999412
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Tue Jun 9 09:44:44 2020 -0400
gnu: graphene: Update package definition.
* gnu/packages/gtk.scm (graphene): Update package definition.
[source]<origin>[method]: Change from url-fetch to git-fetch.
[uri]: Add git-reference.
[sha256]: Modify base32.
[arguments]<#:glib-or-gtk?>: New argument.
[native-inputs]: Add git-minimal and mutest.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gtk.scm | 38 +++++++++++++++++++++++---------------
1 file changed, 23 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 02db821..c63aeaf 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -83,6 +83,7 @@
#:use-module (gnu packages guile)
#:use-module (gnu packages guile-xyz)
#:use-module (gnu packages cups)
+ #:use-module (gnu packages version-control)
#:use-module (gnu packages xml)
#:use-module (gnu packages xorg)
#:use-module (gnu packages xdisorg)
@@ -1786,27 +1787,34 @@ Parcellite and adds bugfixes and features.")
(package
(name "graphene")
(version "1.10.0")
- (source (origin
- (method url-fetch)
- (uri (string-append
"https://github.com/ebassi/graphene/releases/"
- "download/" version
- "/graphene-" version ".tar.xz"))
- (sha256
- (base32
"16b4hz73bnrgv5v8n96dczkd6xp9qc06lrl43zln3jnl3psrfva0"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/ebassi/graphene.git")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "14a0j1rvjlc7yhfdmhmckdmkzy4ch61qbzywdlw1xv58h23wx29p"))))
(build-system meson-build-system)
(arguments
- `(#:configure-flags '("-Dinstalled_tests=false")))
+ `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
+ #:configure-flags
+ (list
+ "-Dinstalled_tests=false")))
(native-inputs
- `(("gobject-introspection" ,gobject-introspection)
+ `(("git" ,git-minimal)
+ ("gobject-introspection" ,gobject-introspection)
+ ("mutest" ,mutest)
("pkg-config" ,pkg-config)))
(inputs
- `(("python" ,python)
- ("glib" ,glib)))
- (home-page "https://ebassi.github.io/graphene/")
+ `(("glib" ,glib)
+ ("python" ,python)))
(synopsis "Thin layer of graphic data types")
- (description "This library provides graphic types and their relative API;
-it does not deal with windowing system surfaces, drawing, scene graphs, or
-input.")
+ (description "Graphene provides graphic types and their relative API; it
+does not deal with windowing system surfaces, drawing, scene graphs, or
input.")
+ (home-page "https://ebassi.github.io/graphene/")
(license license:expat)))
(define-public spread-sheet-widget
- 37/402: gnu: gsettings-desktop-schemas: Update package definition., (continued)
- 37/402: gnu: gsettings-desktop-schemas: Update package definition., guix-commits, 2020/08/18
- 23/402: gnu: enchant-1.6: Update package definition., guix-commits, 2020/08/18
- 13/402: gnu: atk: Update to 2.36.0., guix-commits, 2020/08/18
- 18/402: gnu: clutter-gst: Update package definition., guix-commits, 2020/08/18
- 20/402: gnu: dconf: Update to 0.36.0., guix-commits, 2020/08/18
- 26/402: gnu: fcitx: Update package definition., guix-commits, 2020/08/18
- 27/402: gnu: gcab: Update to 1.4., guix-commits, 2020/08/18
- 33/402: gnu: gjs: Update to 1.58.8., guix-commits, 2020/08/18
- 34/402: gnu: glib-networking: Update to 2.62.4., guix-commits, 2020/08/18
- 35/402: gnu: Add mutest., guix-commits, 2020/08/18
- 36/402: gnu: graphene: Update package definition.,
guix-commits <=
- 39/402: gnu: faad2: Update to 2.8.8., guix-commits, 2020/08/18
- 41/402: gnu: glib-with-documentation: Update package definition., guix-commits, 2020/08/18
- 38/402: gnu: Add esound., guix-commits, 2020/08/18
- 42/402: gnu: glib-networking: Update to 2.64.3., guix-commits, 2020/08/18
- 45/402: gnu: Add libvisual., guix-commits, 2020/08/18
- 46/402: gnu: Add libvisual-plugins., guix-commits, 2020/08/18
- 48/402: gnu: gst-plugins-good: Update package definition., guix-commits, 2020/08/18
- 47/402: gnu: gst-plugins-base: Update package definition., guix-commits, 2020/08/18
- 49/402: gnu: Add nanomsg., guix-commits, 2020/08/18
- 53/402: gnu: Add ruby-slim., guix-commits, 2020/08/18