From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jan Nieuwenhuizen Subject: [PATCH] gnu: Resurrect hydra. Date: Fri, 09 Sep 2016 23:09:23 +0200 Message-ID: <87d1kcvkzg.fsf@gnu.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34028) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1biT3N-00071E-Ms for guix-devel@gnu.org; Fri, 09 Sep 2016 17:09:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1biT3K-0004Im-7V for guix-devel@gnu.org; Fri, 09 Sep 2016 17:09:41 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Hi! I wanted to play with Hydra and found it did not build and so did not some of its dependencies. Our nix package got updated which broke the hydra build. First I downgraded nix to 1.8. That worked, eventually. We decided on #guix that we'd rather upgrade than downgrade. So I upgraded hydra to latest git and did not get past build problems. The Hydra git does not mention anything on dependencies or versions. I asked on #guix and later on #nixos. Finally I found this comment from last February https://github.com/NixOS/hydra/issues/270 "You have to use NixUnstable or go a few Hydra commits back." So after a couple of iterations in the Hydra git I settled on a commit from 20151030 (just after a compile fix that I ran into). Two perl packages did not build anymore (failing tests), so I disabled the tests. Hydra also has two new dependencies, which I added. Greetings, Jan --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Resurrect-hydra.patch Content-Transfer-Encoding: quoted-printable >From 9c3cc736629b1c24eae489d586f26a0c19356725 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Fri, 9 Sep 2016 19:57:26 +0200 Subject: [PATCH] gnu: Resurrect hydra. * gnu/packages/gd.scm (perl-gd): Disable tests, 1 fails. Fixes build. * gnu/packages/imagemagick.scm (perl-image-magick): Disable tests, 2 fail. * gnu/packages/patches/hydra-automake-1.15.patch: Remove. * gnu/local.mk (dist_patch_DATA): Remove listing. * gnu/packages/ci.scm (perl-net-statsd,libpqxx): Add variable. (hydra): Bu= mp to 20151030. Fixes building with nix-1.11.x. Add new libpqxx and perl-net-statsd dependencies. --- gnu/local.mk | 1 - gnu/packages/ci.scm | 71 ++++++++++++++++++++++= ---- gnu/packages/gd.scm | 1 + gnu/packages/imagemagick.scm | 3 +- gnu/packages/patches/hydra-automake-1.15.patch | 63 ----------------------- 5 files changed, 65 insertions(+), 74 deletions(-) delete mode 100644 gnu/packages/patches/hydra-automake-1.15.patch diff --git a/gnu/local.mk b/gnu/local.mk index 5696378..d63c3e2 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -566,7 +566,6 @@ dist_patch_DATA =3D \ %D%/packages/patches/higan-remove-march-native-flag.patch \ %D%/packages/patches/hop-bigloo-4.0b.patch \ %D%/packages/patches/hop-linker-flags.patch \ - %D%/packages/patches/hydra-automake-1.15.patch \ %D%/packages/patches/hydra-disable-darcs-test.patch \ %D%/packages/patches/hypre-doc-tables.patch \ %D%/packages/patches/hypre-ldflags.patch \ diff --git a/gnu/packages/ci.scm b/gnu/packages/ci.scm index e0ff873..44f1315 100644 --- a/gnu/packages/ci.scm +++ b/gnu/packages/ci.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright =C2=A9 2015 Eric Bavier +;;; Copyright =C2=A9 2016 Jan Nieuwenhuizen ;;; ;;; This file is part of GNU Guix. ;;; @@ -20,6 +21,7 @@ #:use-module ((guix licenses) #:prefix l:) #:use-module (gnu packages) #:use-module (guix packages) + #:use-module (guix download) #:use-module (guix git-download) #:use-module (gnu packages autotools) #:use-module (gnu packages base) @@ -31,31 +33,80 @@ #:use-module (gnu packages package-management) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages python) #:use-module (gnu packages tls) #:use-module (gnu packages version-control) #:use-module (gnu packages web) #:use-module (gnu packages xml) #:use-module (gnu packages zip) - #:use-module (guix build-system gnu)) + #:use-module (guix build-system gnu) + #:use-module (guix build-system perl)) + +(define-public perl-net-statsd + (package + (name "perl-net-statsd") + (version "0.12") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-" + version + ".tar.gz")) + (sha256 + (base32 + "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33")))) + (build-system perl-build-system) + (home-page + "http://search.cpan.org/dist/Net-Statsd") + (synopsis "Perl client for Etsy's statsd daemon") + (description "This module implement a UDP client for the statsd statist= ics +collector daemon in use at Etsy.com.") + (license (package-license perl)))) + +(define-public libpqxx + (package + (name "libpqxx") + (version "4.0.1") + (source (origin + (method url-fetch) + (uri (string-append + "http://pqxx.org/download/software/libpqxx/" + name "-" version ".tar.gz")) + (sha256 + (base32 + "0f6wxspp6rx12fkasanb0z2g2gc8dhcfwnxagx8wwqbpg6ifsz09")))) + (build-system gnu-build-system) + (native-inputs + `(("python" ,python-2))) + (inputs `(("postgresql" ,postgresql))) + (arguments + `(#:tests? #f)) ; # FAIL: 1 + (synopsis "C++ connector for PostgreSQL") + (description + "Libpqxx is a C++ library to enable user programs to communicate with= the +PostgreSQL database back-end. The database back-end can be local or it ma= y be +on another machine, accessed via TCP/IP.") + (home-page "http://pqxx.org/") + (license l:bsd-3))) =20 (define-public hydra - (let ((commit "4c0e3e47034545ad3e9e86dd069138bcebb8ccee")) + (let ((commit "1ff48da3d3d4a425063f5b7dd0b89d35270f8932")) (package (name "hydra") - (version (string-append "20150407." (string-take commit 7))) + (version (string-append "20151030." (string-take commit 7))) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/NixOS/hydra") (commit commit))) (file-name (string-append name "-" version)) - (sha256 - (base32 - "08vc76xb7f42hh65j7qvjf58hw36aki5ml343170pq94vk75b1nh")) (patches (search-patches - "hydra-automake-1.15.patch" ;; TODO: Remove once we have a darcs input - "hydra-disable-darcs-test.patch")))) + "hydra-disable-darcs-test.patch")) + (sha256 + (base32 + "0ni8i8v1nxxfr51rz8m6znwpbm77vr7i05k506hmgmg32r938lap"))= )) (build-system gnu-build-system) (native-inputs `(("unzip" ,unzip) @@ -74,7 +125,8 @@ ("mercurial" ,mercurial) ("bazaar" ,bazaar))) (inputs - `(("perl" ,perl) + `(("libpqxx" ,libpqxx) + ("perl" ,perl) ("guile" ,guile-2.0) ("openssl" ,openssl) ("bzip2" ,bzip2) @@ -125,6 +177,7 @@ ("perl-libwww" ,perl-libwww) ("perl-lwp-protocol-https" ,perl-lwp-protocol-https) ("perl-net-amazon-s3" ,perl-net-amazon-s3) + ("perl-net-statsd" ,perl-net-statsd) ("perl-padwalker" ,perl-padwalker) ("perl-readonly" ,perl-readonly) ("perl-set-scalar" ,perl-set-scalar) diff --git a/gnu/packages/gd.scm b/gnu/packages/gd.scm index b1bbc22..4ba0194 100644 --- a/gnu/packages/gd.scm +++ b/gnu/packages/gd.scm @@ -106,6 +106,7 @@ most common applications of GD involve website developm= ent.") (string-append "--lib_" i "_path=3D" (assoc-ref %build-inputs= i))) '("zlib" "png" "ft" "jpeg" "fontconfig")) + #:tests? #f ;; Failed 1/2 test programs. 1/12 subtests failed. #:phases (alist-cons-after 'configure 'clear-autogenerated-files (lambda _ diff --git a/gnu/packages/imagemagick.scm b/gnu/packages/imagemagick.scm index f824abf..b62552f 100644 --- a/gnu/packages/imagemagick.scm +++ b/gnu/packages/imagemagick.scm @@ -124,7 +124,8 @@ text, lines, polygons, ellipses and B=C3=A9zier curves.= ") (native-inputs `(("pkg-config" ,pkg-config))) (inputs `(("imagemagick" ,imagemagick))) (arguments - `(#:phases + `(#:tests? #f ;;Failed 2/23 test programs. 2/353 subtests failed. + #:phases (modify-phases %standard-phases (add-before 'configure 'image-magick-flags diff --git a/gnu/packages/patches/hydra-automake-1.15.patch b/gnu/packages/= patches/hydra-automake-1.15.patch deleted file mode 100644 index 91c7b92..0000000 --- a/gnu/packages/patches/hydra-automake-1.15.patch +++ /dev/null @@ -1,63 +0,0 @@ -This patch takes a slightly different approach to solving the issue report= ed -at https://github.com/NixOS/hydra/issues/200. This fix allows us to use -Automake's parallel test harness. - ---- source/configure.ac.orig 1969-12-31 18:00:01.000000000 -0600 -+++ source/configure.ac 2015-04-15 10:58:15.974679278 -0500 -@@ -33,7 +33,7 @@ - fi - ]) -=20 --NEED_PROG(perl, perl) -+NEED_PROG([PERL], perl) -=20 - NEED_PROG([NIX_STORE_PROGRAM], [nix-store]) -=20 ---- source/tests/Makefile.am.orig 1969-12-31 18:00:01.000000000 -0600 -+++ source/tests/Makefile.am 2015-04-15 11:00:35.846682904 -0500 -@@ -1,19 +1,20 @@ --TESTS_ENVIRONMENT =3D \ -- BZR_HOME=3D"$(abs_builddir)/data" \ -- HYDRA_DBI=3D"dbi:SQLite:db.sqlite" \ -- HYDRA_DATA=3D"$(abs_builddir)/data" \ -- HYDRA_HOME=3D"$(top_srcdir)/src" \ -- HYDRA_CONFIG=3D \ -- NIX_REMOTE=3D \ -- GUIX_CONFIGURATION_DIRECTORY=3D"$(abs_builddir)/nix/etc/nix" \ -- NIX_STATE_DIR=3D"$(abs_builddir)/nix/var/nix" \ -- NIX_MANIFESTS_DIR=3D"$(abs_builddir)/nix/var/nix/manifests" \ -- NIX_STORE_DIR=3D"$(abs_builddir)/nix/store" \ -- NIX_LOG_DIR=3D"$(abs_builddir)/nix/var/log/nix" \ -- NIX_BUILD_HOOK=3D \ -- PERL5LIB=3D"$(srcdir):$(top_srcdir)/src/lib:$$PERL5LIB" \ -- PATH=3D$(abs_top_srcdir)/src/script:$(abs_top_srcdir)/src/c:$$PATH \ -- perl -w -+AM_TESTS_ENVIRONMENT =3D \ -+ BZR_HOME=3D"$(abs_builddir)/data"; export BZR_HOME; \ -+ HYDRA_DBI=3D"dbi:SQLite:db.sqlite"; export HYDRA_DBI; \ -+ HYDRA_DATA=3D"$(abs_builddir)/data"; export HYDRA_DATA; \ -+ HYDRA_HOME=3D"$(top_srcdir)/src"; export HYDRA_HOME; \ -+ HYDRA_CONFIG=3D; export HYDRA_CONFIG; \ -+ NIX_REMOTE=3D; export NIX_REMOTE; \ -+ GUIX_CONFIGURATION_DIRECTORY=3D"$(abs_builddir)/nix/etc/nix"; export GU= IX_CONFIGURATION_DIRECTORY; \ -+ NIX_STATE_DIR=3D"$(abs_builddir)/nix/var/nix"; export NIX_STATE_DIR; \ -+ NIX_MANIFESTS_DIR=3D"$(abs_builddir)/nix/var/nix/manifests"; export NIX= _MANIFESTS_DIR; \ -+ NIX_STORE_DIR=3D"$(abs_builddir)/nix/store"; export NIX_STORE_DIR; \ -+ NIX_LOG_DIR=3D"$(abs_builddir)/nix/var/log/nix"; export NIX_LOG_DIR; \ -+ NIX_BUILD_HOOK=3D; export NIX_BUILD_HOOK; \ -+ PERL5LIB=3D"$(srcdir):$(top_srcdir)/src/lib:$$PERL5LIB"; export PERL5LI= B; \ -+ PATH=3D$(abs_top_srcdir)/src/script:$(abs_top_srcdir)/src/c:$$PATH; exp= ort PATH; -+LOG_COMPILER =3D $(PERL) -+AM_LOG_FLAGS =3D -w -=20 - EXTRA_DIST =3D \ - $(wildcard *.pm) \ -@@ -33,7 +34,7 @@ - check_SCRIPTS =3D db.sqlite repos -=20 - db.sqlite: $(top_srcdir)/src/sql/hydra-sqlite.sql -- $(TESTS_ENVIRONMENT) $(top_srcdir)/src/script/hydra-init -+ $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) $(top_srcdir)/src/script/hy= dra-init -=20 - repos: dirs -=20 --=20 2.10.0 --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable --=20 Jan Nieuwenhuizen | GNU LilyPond http://lilypond.org Freelance IT http://JoyofSource.com | Avatar=C2=AE http://AvatarAcademy.nl= =20=20 --=-=-=--