From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48833) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gKTx0-0002q6-2P for guix-patches@gnu.org; Wed, 07 Nov 2018 14:57:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gKTwm-0002pl-Tm for guix-patches@gnu.org; Wed, 07 Nov 2018 14:57:12 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:35668) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gKTwk-0002ob-2z for guix-patches@gnu.org; Wed, 07 Nov 2018 14:57:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gKTwj-0002cg-S9 for guix-patches@gnu.org; Wed, 07 Nov 2018 14:57:01 -0500 Subject: [bug#33308] [PATCH 2/2] gnu: capnproto: Update to 0.7.0. Resent-Message-ID: From: Christopher Baines Date: Wed, 7 Nov 2018 19:56:54 +0000 Message-Id: <20181107195654.22832-2-mail@cbaines.net> In-Reply-To: <20181107195654.22832-1-mail@cbaines.net> References: <20181107195654.22832-1-mail@cbaines.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33308@debbugs.gnu.org * gnu/packages/serialization.scm (capnproto)[version]: Change to 0.7.0. [source]: Update sha256 hash. [arguments]: Add new 'use-tmp-for-tempory-files phase, to patch some tests to use /tmp for tempory files, as the default /var/tmp directory doesn't exist. --- gnu/packages/serialization.scm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index 40b3d1bae0..77fd070bc7 100644 --- a/gnu/packages/serialization.scm +++ b/gnu/packages/serialization.scm @@ -314,7 +314,7 @@ it a convenient format to store user input files.") (define-public capnproto (package (name "capnproto") - (version "0.6.1") + (version "0.7.0") (source (origin (method url-fetch) (uri (string-append @@ -322,7 +322,7 @@ it a convenient format to store user input files.") version ".tar.gz")) (sha256 (base32 - "010s9yhq4531wvdfrdf2477zswhck6cjfby79w73rff3v06090l0")))) + "0hfdnhlbskagzgvby8wy6lrxj53zfzpfqimbhga68c0ji2yw1969")))) (build-system gnu-build-system) (arguments `(#:phases @@ -332,6 +332,12 @@ it a convenient format to store user input files.") ;; Workaround for test that tries to resolve port name from ;; /etc/services, which is not present in build environment. (substitute* "src/kj/async-io-test.c++" ((":http") ":80")) + #t)) + (add-before 'check 'use-tmp-for-tempory-files + (lambda _ + (substitute* "src/kj/filesystem-disk-test.c++" + (("VAR\\_TMP \"/var/tmp\"") + "VAR_TMP \"/tmp\"")) #t))))) (home-page "https://capnproto.org") (synopsis "Capability-based RPC and serialization system") -- 2.19.1