From 947cd8e3c040db54e20efc1a89b67827c40e7019 Mon Sep 17 00:00:00 2001 From: Christoph Junghans Date: Mon, 11 Sep 2017 14:25:36 -0600 Subject: berkeley-db: initial commit (#5303) * berkeley-db: initial commit * berkeley-db: added more versions --- .../repos/builtin/packages/berkeley-db/package.py | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 var/spack/repos/builtin/packages/berkeley-db/package.py (limited to 'var') diff --git a/var/spack/repos/builtin/packages/berkeley-db/package.py b/var/spack/repos/builtin/packages/berkeley-db/package.py new file mode 100644 index 0000000000..46fdb52908 --- /dev/null +++ b/var/spack/repos/builtin/packages/berkeley-db/package.py @@ -0,0 +1,47 @@ +############################################################################## +# Copyright (c) 2017, Los Alamos National Security, LLC +# Produced at the Los Alamos National Laboratory. +# +# This file is part of Spack. +# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved. +# LLNL-CODE-647188 +# +# For details, see https://github.com/llnl/spack +# Please also see the NOTICE and LICENSE files for our notice and the LGPL. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License (as +# published by the Free Software Foundation) version 2.1, February 1999. +# +# This program 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 terms and +# conditions of the GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +############################################################################## +from spack import * + + +class BerkeleyDb(AutotoolsPackage): + """Oracle Berkeley DB""" + + homepage = "http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html" + url = "http://download.oracle.com/berkeley-db/db-5.3.28.tar.gz" + + version('5.3.28', 'b99454564d5b4479750567031d66fe24') + version('6.0.35', 'c65a4d3e930a116abaaf69edfc697f25') + version('6.1.29', '7f4d47302dfec698fe088e5285c9098e') + version('6.2.32', '33491b4756cb44b91c3318b727e71023') + + configure_directory = 'dist' + build_directory = 'spack-build' + + def url_for_version(self, version): + # newer version need oracle login, so get them from gentoo mirror + return 'http://distfiles.gentoo.org/distfiles/db-{0}.tar.gz'.format(version) + + def configure_args(self): + return ['--disable-static', '--enable-cxx', '--enable-stl'] -- cgit v1.2.3-70-g09d2