[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
276/295: gnu: pangomm: Update package definition.
From: |
guix-commits |
Subject: |
276/295: gnu: pangomm: Update package definition. |
Date: |
Mon, 27 Jul 2020 06:26:35 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 89a3c5810d79d9bb0c2c65f2be70bf4a0da09a20
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Sat Jul 18 04:33:51 2020 -0400
gnu: pangomm: Update package definition.
* gnu/packages/gtk.scm (pangomm) [version]: Update to 2.43.2.
[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,
python-wrapper and libxslt.
[synopsis]: Modify.
[description]: Modify.
[license]: Add gpl2+.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gtk.scm | 61 ++++++++++++++++++++++++++++++++++++----------------
1 file changed, 43 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index f10dad4..4e92fb6 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -1431,28 +1431,53 @@ including use of the Standard Template Library where it
makes sense.")
(define-public pangomm
(package
(name "pangomm")
- (version "2.42.0")
- (source (origin
- (method url-fetch)
- (uri (string-append "mirror://gnome/sources/" name "/"
- (version-major+minor version) "/"
- name "-" version ".tar.xz"))
- (sha256
- (base32
- "0mmzxp3wniaafkxr30sb22mq9x44xckb5d60h1bl99lkzxks0vfa"))))
- (build-system gnu-build-system)
- (native-inputs `(("pkg-config" ,pkg-config)))
+ (version "2.43.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32 "1yin5b7hfvz0qdfxgnlk6kclyfhcv0fz10kjsgai59zv0v6g6kbr"))))
+ (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
+ `(("dot" ,graphviz)
+ ("doxygen" ,doxygen)
+ ("m4" ,m4)
+ ("mm-common" ,mm-common)
+ ("perl" ,perl)
+ ("pkg-config" ,pkg-config)
+ ("python" ,python-wrapper)
+ ("xsltproc" ,libxslt)))
(propagated-inputs
- `(("cairo" ,cairo)
- ("cairomm" ,cairomm)
+ `(("cairomm" ,cairomm)
("glibmm" ,glibmm)
("pango" ,pango)))
- (home-page "https://pango.gnome.org//")
- (synopsis "C++ interface to the Pango text rendering library")
- (description
- "Pangomm provides a C++ programming interface to the Pango text rendering
+ (synopsis "C++ API for Pango")
+ (description "Pangomm is the C++ interface for the Pango font layout
library.")
- (license license:lgpl2.1+)))
+ (home-page "https://pango.gnome.org//")
+ (license
+ (list
+ ;; Library
+ license:lgpl2.1+
+ ;; Tools
+ license:gpl2+))))
(define-public atkmm
(package
- 253/295: gnu: vala: Update package definition., (continued)
- 253/295: gnu: vala: Update package definition., guix-commits, 2020/07/27
- 257/295: gnu: Add wpewebkit., guix-commits, 2020/07/27
- 260/295: gnu: pipewire: Update package definition., guix-commits, 2020/07/27
- 262/295: gnu: yelp-xsl: Update package definition., guix-commits, 2020/07/27
- 259/295: gnu: Add xmltoman., guix-commits, 2020/07/27
- 265/295: gnu: zenity: Update package definition., guix-commits, 2020/07/27
- 268/295: gnu: cairo: Update package definition., guix-commits, 2020/07/27
- 270/295: gnu: Add libsigc++-2., guix-commits, 2020/07/27
- 274/295: gnu: Add glibmm-2.64., guix-commits, 2020/07/27
- 275/295: gnu: atkmm: Update package definition., guix-commits, 2020/07/27
- 276/295: gnu: pangomm: Update package definition.,
guix-commits <=
- 277/295: gnu: Add pangomm-2.42., guix-commits, 2020/07/27
- 279/295: gnu: gtkmm: Update package definition., guix-commits, 2020/07/27
- 282/295: gnu: gobject-introspection: Propagate glib., guix-commits, 2020/07/27
- 285/295: gnu: evolution-data-server: Update package definition., guix-commits, 2020/07/27
- 288/295: gnu: Add zeitgeist., guix-commits, 2020/07/27
- 289/295: gnu: folks: Update package definition., guix-commits, 2020/07/27
- 290/295: gnu: Add poly2tri-c., guix-commits, 2020/07/27
- 293/295: gnu: gegl: Update package definition., guix-commits, 2020/07/27
- 295/295: gnu: gexiv2: Update package definition., guix-commits, 2020/07/27
- 261/295: gnu: webkitgtk: Update package definition., guix-commits, 2020/07/27