[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/04: gnu: gzochi: Update to 0.11.1.
From: |
Ludovic Courtès |
Subject: |
04/04: gnu: gzochi: Update to 0.11.1. |
Date: |
Thu, 27 Jul 2017 05:48:01 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit a812aff99c35aab4044be8332d8ef973f4be4d79
Author: Julian Graham <address@hidden>
Date: Fri Jul 7 23:35:55 2017 -0400
gnu: gzochi: Update to 0.11.1.
* gnu/packages/game-development.scm (gzochi): Update to 0.11.1.
(gzochi)[arguments]: Remove patch for `-Werror', which is no longer
necessary.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/game-development.scm | 17 +++--------------
1 file changed, 3 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/game-development.scm
b/gnu/packages/game-development.scm
index dabe951..7ab9a1a 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -7,7 +7,7 @@
;;; Copyright © 2016, 2017 Efraim Flashner <address@hidden>
;;; Copyright © 2016, 2017 Kei Kebreau <address@hidden>
;;; Copyright © 2016 Ricardo Wurmus <address@hidden>
-;;; Copyright © 2016 Julian Graham <address@hidden>
+;;; Copyright © 2016, 2017 Julian Graham <address@hidden>
;;; Copyright © 2017 Tobias Geerinckx-Rice <address@hidden>
;;;
;;; This file is part of GNU Guix.
@@ -209,26 +209,15 @@ necessary.
(define-public gzochi
(package
(name "gzochi")
- (version "0.10.1")
+ (version "0.11.1")
(source (origin
(method url-fetch)
(uri (string-append "mirror://savannah/gzochi/gzochi-"
version ".tar.gz"))
(sha256
(base32
- "166rawdal45kvanhvi0bkzy1d2pwf1p0lzslb287lcnm9vdw97yy"))))
+ "13j1m92zhxwkaaja3lg5x0h0b28mrrawdzk9d3hd19031akfxwb3"))))
(build-system gnu-build-system)
- (arguments
- '(#:phases (modify-phases %standard-phases
- (add-before 'configure 'remove-Werror
- (lambda _
- ;; We can't build with '-Werror', notably
- ;; because deprecated functions of
- ;; libmicrohttpd are being used.
- (substitute* (find-files "." "^Makefile\\.in$")
- (("-Werror")
- ""))
- #t)))))
(native-inputs `(("pkgconfig" ,pkg-config)))
(inputs `(("bdb" ,bdb)
("glib" ,glib)