[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/11: gnu: libplist: Update to 2.1.0.
From: |
guix-commits |
Subject: |
09/11: gnu: libplist: Update to 2.1.0. |
Date: |
Thu, 21 Nov 2019 18:22:29 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit f64d79e8be913d8cd88c3eaf95e3a2b1198cebe4
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Fri Nov 15 21:21:13 2019 +0100
gnu: libplist: Update to 2.1.0.
* gnu/packages/libusb.scm (libplist): Update to 2.1.0.
[source]: Use GIT-FETCH and GIT-FILE-NAME.
[arguments]: Add ‘configure-later’ phase.
[native-inputs]: Add autoconf, automake, and libtool.
---
gnu/packages/libusb.scm | 40 ++++++++++++++++++++++++++--------------
1 file changed, 26 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/libusb.scm b/gnu/packages/libusb.scm
index e6016d1..878f9e5 100644
--- a/gnu/packages/libusb.scm
+++ b/gnu/packages/libusb.scm
@@ -305,25 +305,37 @@ wrapper for accessing libusb-1.0.")
(define-public libplist
(package
(name "libplist")
- (version "2.0.0")
- (source (origin
- (method url-fetch)
- (uri (string-append "https://www.libimobiledevice.org/downloads/"
- "libplist-" version ".tar.bz2"))
- (sha256
- (base32
- "00pnh9zf3iwdji2faccns7vagbmbrwbj9a8zp9s53a6rqaa9czis"))))
+ (version "2.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/libimobiledevice/libplist.git")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "02vraf4j46bp746s0gz7vga2gv2dy3zd1v1bsy9x8algg9fpcb7n"))))
(build-system gnu-build-system)
(arguments
- ;; Tests fail randomly when run in parallel because several of them write
- ;; and read to/from the same file--e.g., "4.plist" is accessed by
- ;; 'large.test' and 'largecmp.test'.
- '(#:parallel-tests? #f))
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-before 'bootstrap 'configure-later
+ ;; Don't run ./configure during bootstrap.
+ (lambda _
+ (setenv "NOCONFIGURE" "set")
+ #t)))
+ ;; Tests fail randomly when run in parallel because several of them
write
+ ;; and read to/from the same file--e.g., "4.plist" is accessed by
+ ;; 'large.test' and 'largecmp.test'.
+ #:parallel-tests? #f))
(inputs
`(("python" ,python)))
(native-inputs
- `(("pkg-config" ,pkg-config)
- ("python-cython" ,python-cython)))
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("libtool" ,libtool)
+ ("pkg-config" ,pkg-config)
+ ("python-cython" ,python-cython))) ; to build Python bindings
(home-page "https://www.libimobiledevice.org/")
(synopsis "C library to handle Apple Property List files")
(description "This package provides a small portable C library to handle
- branch master updated (a31b9da -> 4e2e84d), guix-commits, 2019/11/21
- 01/11: gnu: python-lazy-object-proxy: Update to 1.4.3., guix-commits, 2019/11/21
- 05/11: gnu: ruby-prawn-manual-builder: Update to 0.3.1., guix-commits, 2019/11/21
- 08/11: gnu: libpwquality: Update to 1.4.2., guix-commits, 2019/11/21
- 10/11: gnu: libbytesize: Update to 2.1., guix-commits, 2019/11/21
- 03/11: gnu: gthumb: Update to 3.8.2., guix-commits, 2019/11/21
- 07/11: gnu: libpwquality: Don't use NAME in source URI., guix-commits, 2019/11/21
- 09/11: gnu: libplist: Update to 2.1.0.,
guix-commits <=
- 02/11: gnu: ruby-command-line-reporter: Update to 4.0.1., guix-commits, 2019/11/21
- 04/11: gnu: r-rms: Update to 5.1-4., guix-commits, 2019/11/21
- 06/11: gnu: r-sjstats: Update to 0.17.7., guix-commits, 2019/11/21
- 11/11: gnu: man-pages: Update to 5.04., guix-commits, 2019/11/21