From e87a99ef933d5874a5efeafee668ce3bb9ab3cb1 Mon Sep 17 00:00:00 2001 From: Dmitry Zuikov Date: Thu, 21 Mar 2024 14:40:02 +0300 Subject: [PATCH] wip --- hbs2-metaindex/LICENSE | 0 hbs2-metaindex/hbs2-metaindex.cabal | 103 +++++++++++++++++++++++++++ hbs2-metaindex/lib/HBS2/MetaIndex.hs | 1 + 3 files changed, 104 insertions(+) create mode 100644 hbs2-metaindex/LICENSE create mode 100644 hbs2-metaindex/hbs2-metaindex.cabal create mode 100644 hbs2-metaindex/lib/HBS2/MetaIndex.hs diff --git a/hbs2-metaindex/LICENSE b/hbs2-metaindex/LICENSE new file mode 100644 index 00000000..e69de29b diff --git a/hbs2-metaindex/hbs2-metaindex.cabal b/hbs2-metaindex/hbs2-metaindex.cabal new file mode 100644 index 00000000..7cfdc72a --- /dev/null +++ b/hbs2-metaindex/hbs2-metaindex.cabal @@ -0,0 +1,103 @@ +cabal-version: 3.0 +name: hbs2-metaindex +version: 0.24.1.0 +-- synopsis: +-- description: +license: BSD-3-Clause +license-file: LICENSE +author: Dmitry Zuikov +maintainer: dzuikov@gmail.com +-- copyright: +category: System +build-type: Simple +-- extra-doc-files: CHANGELOG.md +-- extra-source-files: + +common shared-properties + ghc-options: + -Wall + -fno-warn-type-defaults + -threaded + -rtsopts + -O2 + "-with-rtsopts=-N4 -A64m -AL256m -I0" + + default-language: GHC2021 + + default-extensions: + ApplicativeDo + , BangPatterns + , BlockArguments + , ConstraintKinds + , DataKinds + , DeriveDataTypeable + , DeriveGeneric + , DerivingStrategies + , DerivingVia + , ExtendedDefaultRules + , FlexibleContexts + , FlexibleInstances + , GADTs + , GeneralizedNewtypeDeriving + , ImportQualifiedPost + , LambdaCase + , MultiParamTypeClasses + , OverloadedStrings + , QuasiQuotes + , RecordWildCards + , ScopedTypeVariables + , StandaloneDeriving + , TupleSections + , TypeApplications + , TypeFamilies + + + build-depends: + hbs2-core + , suckless-conf + + , attoparsec + , atomic-write + , bytestring + , binary + , containers + , directory + , exceptions + , filepath + , filepattern + , interpolatedstring-perl6 + , memory + , microlens-platform + , mtl + , safe + , serialise + , streaming + , stm + , text + , time + , timeit + , transformers + , typed-process + , unordered-containers + , unliftio + , unliftio-core + , zlib + , prettyprinter + , prettyprinter-ansi-terminal + , random + , vector + , unix + + +library + import: shared-properties + + exposed-modules: + HBS2.MetaIndex + + build-depends: base + , binary + + hs-source-dirs: lib + + diff --git a/hbs2-metaindex/lib/HBS2/MetaIndex.hs b/hbs2-metaindex/lib/HBS2/MetaIndex.hs new file mode 100644 index 00000000..ec82fd09 --- /dev/null +++ b/hbs2-metaindex/lib/HBS2/MetaIndex.hs @@ -0,0 +1 @@ +module HBS2.MetaIndex where