From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Darrington Subject: =?UTF-8?q?=5BPATCH=201/3=5D=20gnu=3A=20boost=3A=20New=20module?= Date: Tue, 4 Feb 2014 16:12:38 +0100 Message-ID: <1391526759-18655-2-git-send-email-jmd@gnu.org> References: <1391526759-18655-1-git-send-email-jmd@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40391) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WAi0X-000241-QW for guix-devel@gnu.org; Tue, 04 Feb 2014 10:33:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WAhvw-0003Yc-QE for guix-devel@gnu.org; Tue, 04 Feb 2014 10:29:14 -0500 In-Reply-To: <1391526759-18655-1-git-send-email-jmd@gnu.org> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org Cc: John Darrington * gnu/packages/boost.scm New file * gnu-system.am (GNU_SYSTEM_MODULES): Add boost.scm --- gnu-system.am | 1 + gnu/packages/boost.scm | 88 ++++++++++++++++++++++++++++++++++++++++++= ++++++ 2 files changed, 89 insertions(+) create mode 100644 gnu/packages/boost.scm diff --git a/gnu-system.am b/gnu-system.am index e87f671..43b9457 100644 --- a/gnu-system.am +++ b/gnu-system.am @@ -40,6 +40,7 @@ GNU_SYSTEM_MODULES =3D \ gnu/packages/bdb.scm \ gnu/packages/bdw-gc.scm \ gnu/packages/bison.scm \ + gnu/packages/boost.scm \ gnu/packages/bootstrap.scm \ gnu/packages/cdrom.scm \ gnu/packages/cflow.scm \ diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm new file mode 100644 index 0000000..3275fe0 --- /dev/null +++ b/gnu/packages/boost.scm @@ -0,0 +1,88 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright =C2=A9 2014 John Darrington +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (a= t +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (gnu packages boost) + #:use-module ((guix licenses) + #:renamer (symbol-prefix-proc 'license:)) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix build-system gnu) + #:use-module (gnu packages) + #:use-module (gnu packages python) + #:use-module (gnu packages tcsh) + #:use-module (gnu packages perl)) + +(define-public boost + (package + (name "boost") + (version "1.55.0") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://sourceforge/boost/boost_" + (string-map (lambda (x) (if (eq? x #\.) #\_ x)) vers= ion) + ".tar.bz2")) + (sha256 + (base32 + "0lkv5dzssbl5fmh2nkaszi8x9qbj80pr4acf9i26sj3rvlih1w7z"))= )) + (build-system gnu-build-system) + (native-inputs + `(("perl" ,perl) + ("python" ,python-2) + ("tcsh" ,tcsh))) + (arguments + `(#:phases + (alist-replace + 'configure=20 + (lambda* (#:key outputs #:allow-other-keys)=20 + (let ((out (assoc-ref outputs "out"))) + (substitute* '("libs/config/configure" + "libs/spirit/classic/phoenix/test/runtest.sh" + "tools/build/v2/doc/bjam.qbk" + "tools/build/v2/engine/execunix.c" + "tools/build/v2/engine/Jambase" + "tools/build/v2/engine/jambase.c") + (("/bin/sh") (which "sh"))) + + (setenv "SHELL" (which "sh")) + (setenv "CONFIG_SHELL" (which "sh")) + =20 + (zero? (system* "./bootstrap.sh"=20 + (string-append "--prefix=3D" out)=20 + "--with-toolset=3Dgcc")))) + (alist-replace + 'build + (lambda _ + (zero? (system* "./b2" "threading=3Dmulti" "link=3Dshared"))) + =20 + (alist-replace + 'check + (lambda _ #t) + =20 + (alist-replace + 'install + (lambda _ + (zero? (system* "./b2" "install" "threading=3Dmulti" "link=3D= shared"))) + %standard-phases)))))) + =20 + (home-page "http://boost.org") + (synopsis "Peer-reviewed portable C++ source libraries") + (description "A collection of libraries intended to be widely usefu= l, and +usable across a broad spectrum of applications.")=20 + (license (license:x11-style "http://www.boost.org/LICENSE_1_0.txt"=20 + "Some components have other similar licences.")))) --=20 1.7.10.4