summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Junghans <christoph.junghans@gmail.com>2017-09-11 14:25:36 -0600
committerTodd Gamblin <tgamblin@llnl.gov>2017-09-11 13:25:36 -0700
commit947cd8e3c040db54e20efc1a89b67827c40e7019 (patch)
tree1b0a66f68726ede9d6846d619ab67666e111a7c2
parent50eea5cb137d47aa565c141771c7eaacdcd1ca41 (diff)
downloadspack-947cd8e3c040db54e20efc1a89b67827c40e7019.tar.gz
spack-947cd8e3c040db54e20efc1a89b67827c40e7019.tar.bz2
spack-947cd8e3c040db54e20efc1a89b67827c40e7019.tar.xz
spack-947cd8e3c040db54e20efc1a89b67827c40e7019.zip
berkeley-db: initial commit (#5303)
* berkeley-db: initial commit * berkeley-db: added more versions
-rw-r--r--var/spack/repos/builtin/packages/berkeley-db/package.py47
1 files changed, 47 insertions, 0 deletions
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']