From 34a6f4dcf926d94f75c51c9919df051bb6266364 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 10 Mar 2016 21:24:32 +0200 Subject: gnu: cppunit: Update to 1.13.2. * gnu/packages/check.scm (cppunit): Update to 1.13.2. [source]: Change to libreoffice's hosted release tarballs. [home-page]: Change to freedesktop. --- gnu/packages/check.scm | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'gnu/packages/check.scm') diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index c612a2a4fc..a530c1a2e2 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -90,15 +90,14 @@ with a flexible variety of user interfaces.") (define-public cppunit (package (name "cppunit") - (version "1.12.1") + (version "1.13.2") (source (origin (method url-fetch) - (uri (string-append "mirror://sourceforge/cppunit/" name "/" - name "-" - version ".tar.gz")) + (uri (string-append "http://dev-www.libreoffice.org/src/" + name "-" version ".tar.gz")) (sha256 (base32 - "0jm49v5rmc5qw34vqs56gy8xja1dhci73bmh23cig4kcir6a0a5c")))) + "17s2kzmkw3kfjhpp72rfppyd7syr7bdq5s69syj2nvrlwd3d4irz")))) ;; Explicitly link with libdl. This is expected to be done by packages ;; relying on cppunit for their tests. However, not all of them do. ;; If we added the linker flag to such packages, we would pollute all @@ -106,7 +105,7 @@ with a flexible variety of user interfaces.") (arguments `(#:make-flags '("LDFLAGS=-ldl"))) (build-system gnu-build-system) - (home-page "http://sourceforge.net/projects/cppunit/") + (home-page "https://wiki.freedesktop.org/www/Software/cppunit/") (synopsis "Unit testing framework for C++") (description "CppUnit is the C++ port of the famous JUnit framework for unit testing. Test output is in XML for automatic testing and GUI based for -- cgit v1.2.3 From a232ce429e5eb9516a937a8aa24dd7b4f0c92f16 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 10 Mar 2016 21:41:24 +0200 Subject: gnu: catch: Update to 1.3.5. * gnu/packages/check.scm (catch): Update to 1.3.5. --- gnu/packages/check.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/check.scm') diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index a530c1a2e2..4db2e6c071 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -115,17 +115,17 @@ supervised tests.") (define-public catch-framework (package (name "catch") - (version "1.1.3") ;Sub-minor is the build number + (version "1.3.5") ;Sub-minor is the build number (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/philsquared/Catch") ;; Semi-arbitrary. - (commit "c51e86819d"))) + (commit "ae5ee2cf63d6d67bd1369b512d2a7b60b571c907"))) (file-name (string-append name "-" version)) (sha256 (base32 - "0kgi7wxxysgjbpisqfj4dj0k19cyyai92f001zi8gzkybd4fkgv5")))) + "1yfb3lxv929szqy1nw9xw3d45wzkppziqshkjxvrb1fdmf46x564")))) (build-system trivial-build-system) (arguments `(#:modules ((guix build utils)) -- cgit v1.2.3