[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
160/277: gnu: gtksourceviewmm: Update package definition.
From: |
guix-commits |
Subject: |
160/277: gnu: gtksourceviewmm: Update package definition. |
Date: |
Thu, 6 Aug 2020 17:03:22 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 06081635f1d851b3f5af9b3ea4916cd55e04a6ed
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Sat Jul 18 08:13:48 2020 -0400
gnu: gtksourceviewmm: Update package definition.
* gnu/packages/gtk.scm (gtksourceviewmm) [version]: Update to 3.21.3.
[source]<origin>[sha256]: Modify base32.
[build-system]: Change from gnu to glib-or-gtk.
[outputs]: New output "doc".
[arguments]<#:phases>['move-doc]: New phase.
[native-inputs]: Add graphviz, doxygen, m4, mm-common, perl and
libxslt.
[propagated-inputs]: Change glibmm to glibmm-2.64.
[synopsis]: Modify.
[description]: Modify.
[home-page]: Mofify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gtk.scm | 58 ++++++++++++++++++++++++++++++++++------------------
1 file changed, 38 insertions(+), 20 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 806c65b..1b28c1e 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -1635,30 +1635,48 @@ tutorial.")
(define-public gtksourceviewmm
(package
(name "gtksourceviewmm")
- (version "3.18.0")
- (source (origin
- (method url-fetch)
- (uri (string-append "mirror://gnome/sources/" name "/"
- (version-major+minor version) "/"
- name "-" version ".tar.xz"))
- (sha256
- (base32
"0fgvmhm4h4qmxig87qvangs6ijw53mi40siz7pixlxbrsgiil22i"))))
- (build-system gnu-build-system)
+ (version "3.21.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32 "1danc9mp5mnb65j01qxkwj92z8jf1gns41wbgp17qh7050f0pc6v"))))
+ (build-system glib-or-gtk-build-system)
+ (outputs '("out" "doc"))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'install 'move-doc
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (doc (assoc-ref outputs "doc")))
+ (mkdir-p (string-append doc "/share"))
+ (rename-file
+ (string-append out "/share/doc")
+ (string-append doc "/share/doc"))
+ #t))))))
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ `(("dot" ,graphviz)
+ ("doxygen" ,doxygen)
+ ("m4" ,m4)
+ ("mm-common" ,mm-common)
+ ("perl" ,perl)
+ ("pkg-config" ,pkg-config)
+ ("xsltproc" ,libxslt)))
(propagated-inputs
- ;; In 'Requires' of gtksourceviewmm-3.0.pc.
- `(("glibmm" ,glibmm)
+ `(("glibmm" ,glibmm-2.64)
("gtkmm" ,gtkmm)
("gtksourceview" ,gtksourceview-3)))
- (synopsis "C++ interface to the GTK+ 'GtkTextView' widget")
- (description
- "gtksourceviewmm is a portable C++ library that extends the standard GTK+
-framework for multiline text editing with support for configurable syntax
-highlighting, unlimited undo/redo, search and replace, a completion framework,
-printing and other features typical of a source code editor.")
- (license license:lgpl2.1+)
- (home-page "https://developer.gnome.org/gtksourceview/")))
+ (synopsis "C++ binding for GtkSourceView")
+ (description "GtkSourceViewmm is a C++ wrapper for the gtksourceview widget
+library. It offers all the power of gtksourceview with an interface familiar
to
+C++ developers, including users of the gtkmm library.")
+ (home-page "https://wiki.gnome.org/Projects/GtkSourceView")
+ (license license:lgpl2.1+)))
;;;
;;; Python bindings.
- 132/277: gnu: pango: Update package definition., (continued)
- 132/277: gnu: pango: Update package definition., guix-commits, 2020/08/06
- 136/277: gnu: woff2: Update package definition., guix-commits, 2020/08/06
- 137/277: gnu: Add wpewebkit., guix-commits, 2020/08/06
- 138/277: gnu: Add libcamera., guix-commits, 2020/08/06
- 142/277: gnu: yelp-xsl: Update package definition., guix-commits, 2020/08/06
- 147/277: gnu: cairo: Update package definition., guix-commits, 2020/08/06
- 151/277: gnu: Add cairomm-1.13., guix-commits, 2020/08/06
- 152/277: gnu: glibmm: Update package definition., guix-commits, 2020/08/06
- 156/277: gnu: Add pangomm-2.42., guix-commits, 2020/08/06
- 157/277: gnu: java-jakarta-oro: Update hash., guix-commits, 2020/08/06
- 160/277: gnu: gtksourceviewmm: Update package definition.,
guix-commits <=
- 122/277: gnu: Add rust-xml5ever@0.16.1., guix-commits, 2020/08/06
- 135/277: gnu: wpebackend-fdo: Update package definition., guix-commits, 2020/08/06
- 141/277: gnu: webkitgtk: Update package definition., guix-commits, 2020/08/06
- 144/277: gnu: yelp: Update package definition., guix-commits, 2020/08/06
- 155/277: gnu: pangomm: Update package definition., guix-commits, 2020/08/06
- 161/277: gnu: gobject-introspection: Propagate glib., guix-commits, 2020/08/06
- 165/277: gnu: Add gtx., guix-commits, 2020/08/06
- 167/277: gnu: Add zeitgeist., guix-commits, 2020/08/06
- 170/277: gnu: Add mmm., guix-commits, 2020/08/06
- 173/277: gnu: geocode-glib: Update package definition., guix-commits, 2020/08/06