lmdb: Update to 0.9.21 (#4830)

Convert to MakefilePackage and add pkg-config file.
This commit is contained in:
Michael Kuhn 2017-07-22 00:12:17 +02:00 committed by Adam J. Stewart
parent aa98e35e58
commit 37d6907382

View File

@ -22,42 +22,40 @@
# License along with this program; if not, write to the Free Software # License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
############################################################################## ##############################################################################
import os
from spack import * from spack import *
class Lmdb(Package): class Lmdb(MakefilePackage):
"""Read-only mirror of official repo on openldap.org. Issues and """Symas LMDB is an extraordinarily fast, memory-efficient database we
pull requests here are ignored. Use OpenLDAP ITS for issues. developed for the Symas OpenLDAP Project. With memory-mapped files, it
http://www.openldap.org/software/repo.html""" has the read performance of a pure in-memory database while retaining
the persistence of standard disk-based databases."""
homepage = "http://www.openldap.org/software/repo.html" homepage = "https://lmdb.tech/"
url = "https://github.com/LMDB/lmdb/archive/LMDB_0.9.16.tar.gz" url = "https://github.com/LMDB/lmdb/archive/LMDB_0.9.21.tar.gz"
version('0.9.21', '41a4f7b63212a00e53fabd8159008201')
version('0.9.16', '0de89730b8f3f5711c2b3a4ba517b648') version('0.9.16', '0de89730b8f3f5711c2b3a4ba517b648')
def install(self, spec, prefix): build_directory = 'libraries/liblmdb'
os.chdir('libraries/liblmdb')
make() @property
def install_targets(self):
return ['prefix={0}'.format(self.prefix), 'install']
mkdirp(prefix.bin) @run_after('install')
mkdirp(prefix + '/man/man1') def install_pkgconfig(self):
mkdirp(prefix.lib) mkdirp(self.prefix.lib.pkgconfig)
mkdirp(prefix.include)
bins = ['mdb_stat', 'mdb_copy', 'mdb_dump', 'mdb_load'] with open(join_path(self.prefix.lib.pkgconfig, 'lmdb.pc'), 'w') as f:
for f in bins: f.write('prefix={0}\n'.format(self.prefix))
install(f, prefix.bin) f.write('exec_prefix=${prefix}\n')
f.write('libdir={0}\n'.format(self.prefix.lib))
mans = ['mdb_stat.1', 'mdb_copy.1', 'mdb_dump.1', 'mdb_load.1'] f.write('includedir={0}\n'.format(self.prefix.include))
for f in mans: f.write('\n')
install(f, prefix + '/man/man1') f.write('Name: LMDB\n')
f.write('Description: Symas LMDB is an extraordinarily fast, '
libs = ['liblmdb.a', 'liblmdb.so'] 'memory-efficient database.\n')
for f in libs: f.write('Version: {0}\n'.format(self.spec.version))
install(f, prefix.lib) f.write('Cflags: -I${includedir}\n')
f.write('Libs: -L${libdir} -llmdb\n')
includes = ['lmdb.h']
for f in includes:
install(f, prefix.include)