berkeley-db: initial commit (#5303)

* berkeley-db: initial commit
* berkeley-db: added more versions
This commit is contained in:
Christoph Junghans 2017-09-11 14:25:36 -06:00 committed by Todd Gamblin
parent 50eea5cb13
commit 947cd8e3c0

View File

@ -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']