[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
28/32: gnu: gcab: Update to 1.4.
From: |
guix-commits |
Subject: |
28/32: gnu: gcab: Update to 1.4. |
Date: |
Tue, 23 Jun 2020 14:52:09 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 73e188dad6e90d61b77aa55f3e9840f5695257fb
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Wed Jun 3 17:13:28 2020 -0400
gnu: gcab: Update to 1.4.
* gnu/packages/package-management.scm (gcab): Update package
definition.
[version]: Update to 1.4.
[source]<origin>[sha256]: Modify base32 hash.
[outputs]: New output 'doc'.
[arguments]<#:glib-or-gtk?>: New argument.
<#:configure-flags>[-Ddocs]: Remove flag.
[-Dintrospection]: Remove flag.
<#:phases>['move-doc]: New phase.
[native-inputs]: Add gettext, gobject-introspection and gtk-doc.
Remove inttool.
[inputs]: Remove glib.
[propagated-inputs]: Add glib.
[license]: Remove gpl2+. Add lgpl2.1+.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/package-management.scm | 53 ++++++++++++++++++++++---------------
1 file changed, 32 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/package-management.scm
b/gnu/packages/package-management.scm
index 2cd7886..abbf7ed 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -1012,36 +1012,47 @@ in an isolated environment, in separate namespaces.")
(define-public gcab
(package
(name "gcab")
- (version "1.2")
- (source (origin
- (method url-fetch)
- (uri (string-append "mirror://gnome/sources/gcab/"
- version "/gcab-" version ".tar.xz"))
- (sha256
- (base32
- "038h5kk41si2hc9d9169rrlvp8xgsxq27kri7hv2vr39gvz9cbas"))))
+ (version "1.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "mirror://gnome/sources/gcab/"
+ version "/gcab-" version ".tar.xz"))
+ (sha256
+ (base32 "13q43iqld4l50yra45lhvkd376pn6qpk7rkx374zn8y9wsdzm9b7"))))
(build-system meson-build-system)
+ (outputs '("out" "doc"))
+ (arguments
+ `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
+ #: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/gtk-doc")
+ (string-append doc "/share/gtk-doc"))
+ #t))))))
(native-inputs
- `(("glib:bin" ,glib "bin") ; for glib-mkenums
- ("intltool" ,intltool)
+ `(("gettext" ,gettext-minimal)
+ ("glib:bin" ,glib "bin")
+ ("gobject-introspection" ,gobject-introspection)
+ ("gtk-doc" ,gtk-doc)
("pkg-config" ,pkg-config)
("vala" ,vala)))
(inputs
- `(("glib" ,glib)
- ("zlib" ,zlib)))
- (arguments
- `(#:configure-flags
- ;; XXX This ‘documentation’ is for developers, and fails informatively:
- ;; Error in gtkdoc helper script: 'gtkdoc-mkhtml' failed with status 5
- (list "-Ddocs=false"
- "-Dintrospection=false")))
- (home-page "https://wiki.gnome.org/msitools") ; no dedicated home page
+ `(("zlib" ,zlib)))
+ (propagated-inputs
+ `(("glib" ,glib)))
(synopsis "Microsoft Cabinet file manipulation library")
(description
"The libgcab library provides GObject functions to read, write, and modify
Microsoft cabinet (.@dfn{CAB}) files.")
- (license (list license:gpl2+ ; tests/testsuite.at
- license:lgpl2.1+)))) ; the rest
+ (home-page "https://wiki.gnome.org/msitools") ; no dedicated home page
+ (license license:lgpl2.1+)))
(define-public msitools
(package
- branch wip-desktop created (now 13e2651), guix-commits, 2020/06/23
- 04/32: gnu: Add malcontent., guix-commits, 2020/06/23
- 03/32: gnu: Add libglib-testing., guix-commits, 2020/06/23
- 02/32: gnu: Add tepl., guix-commits, 2020/06/23
- 01/32: gnu: Add krb5-auth-dialog., guix-commits, 2020/06/23
- 13/32: gnu: atk: Update to 2.36.0., guix-commits, 2020/06/23
- 28/32: gnu: gcab: Update to 1.4.,
guix-commits <=
- 07/32: gnu: Add gnome-music., guix-commits, 2020/06/23
- 10/32: gnu: appstream-glib: Update package definition., guix-commits, 2020/06/23
- 11/32: gnu: at-spi2-core: Update package definition., guix-commits, 2020/06/23
- 19/32: gnu: cogl: Update package definition., guix-commits, 2020/06/23
- 20/32: gnu: dconf: Update to 0.36.0., guix-commits, 2020/06/23
- 22/32: gnu: Add ronn., guix-commits, 2020/06/23
- 27/32: gnu: fcitx: Update package definition., guix-commits, 2020/06/23
- 06/32: gnu: Add libxmlb., guix-commits, 2020/06/23
- 05/32: gnu: Add portablexdr., guix-commits, 2020/06/23
- 15/32: gnu: font-cantarell: Update package definition., guix-commits, 2020/06/23