Skip to content

Commit 6b12a15

Browse files
authored
Merge pull request #686 from IntersectMBO/jdral/distribute-headers-licenses
Include C header files and license files in the distributed package
2 parents 9522c0a + 1cf4b73 commit 6b12a15

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed
File renamed without changes.

lsm-tree.cabal

+18-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
cabal-version: 3.4
2-
name: lsm-tree
3-
version: 0.1.0.0
4-
synopsis: Log-structured merge-trees
1+
cabal-version: 3.4
2+
name: lsm-tree
3+
version: 0.1.0.0
4+
synopsis: Log-structured merge-trees
55
description:
66
This package contains an efficient implementation of on-disk key–value storage, implemented as a log-structured merge-tree or LSM-tree.
77
An LSM-tree is a data structure for key–value mappings, similar to "Data.Map", but optimized for large tables with a high insertion volume.
@@ -195,22 +195,30 @@ description:
195195
\"Constructing and analyzing the LSM compaction design space.\"
196196
[doi:10.14778/3476249.3476274](https://doi.org/10.14778/3476249.3476274)
197197

198-
license: Apache-2.0
199-
license-file: LICENSE
198+
license: Apache-2.0
199+
license-file: LICENSE
200200
author:
201201
Duncan Coutts, Joris Dral, Matthias Heinzel, Wolfgang Jeltsch, Wen Kokke, and Alex Washburn
202202

203-
maintainer: TODO: MAINTAINER EMAIL
203+
maintainer: TODO: MAINTAINER EMAIL
204204
copyright:
205205
(c) 2023 Input Output Global, Inc. (IOG)
206206
(c) 2023-2025 INTERSECT
207207

208-
category: Database
209-
build-type: Simple
210-
extra-doc-files: CHANGELOG.md
208+
category: Database
209+
build-type: Simple
211210
tested-with:
212211
GHC ==8.10 || ==9.2 || ==9.4 || ==9.6 || ==9.8 || ==9.10 || ==9.12
213212

213+
extra-doc-files: CHANGELOG.md
214+
extra-source-files:
215+
xxhash/include/HsXXHash.h
216+
xxhash/xxHash-0.8.2/xxhash.h
217+
218+
license-files:
219+
bloomfilter/LICENSE-bloomfilter
220+
xxhash/xxHash-0.8.2/LICENSE-xxHash
221+
214222
source-repository head
215223
type: git
216224
location: https://github.com/IntersectMBO/lsm-tree
File renamed without changes.

0 commit comments

Comments
 (0)