-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up the fields of package.yaml and add synopsis, category, and stability fields.
- Loading branch information
Showing
2 changed files
with
19 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,11 +6,14 @@ cabal-version: 3.6 | |
|
||
name: apply-merge | ||
version: 0.0.0.0 | ||
synopsis: Lift a binary, increasing function onto two ordered lists and sort the output | ||
description: Please see the README on GitHub at <https://github.com/pgujjula/apply-merge#readme> | ||
category: Data | ||
stability: experimental | ||
homepage: https://github.com/pgujjula/apply-merge#readme | ||
bug-reports: https://github.com/pgujjula/apply-merge/issues | ||
author: Preetham Gujjula | ||
maintainer: [email protected] | ||
maintainer: Preetham Gujjula <[email protected]> | ||
copyright: Preetham Gujjula | ||
license: BSD-3-Clause | ||
build-type: Simple | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,24 +2,27 @@ | |
# SPDX-License-Identifier: BSD-3-Clause | ||
verbatim: | ||
cabal-version: 3.6 | ||
name: apply-merge | ||
version: 0.0.0.0 | ||
github: "pgujjula/apply-merge" | ||
license: BSD-3-Clause | ||
author: "Preetham Gujjula" | ||
maintainer: "[email protected]" | ||
copyright: "Preetham Gujjula" | ||
name: apply-merge | ||
version: 0.0.0.0 | ||
synopsis: Lift a binary, increasing function onto two ordered lists and sort the output | ||
description: Please see the README on GitHub at <https://github.com/pgujjula/apply-merge#readme> | ||
category: Data | ||
stability: experimental | ||
github: "pgujjula/apply-merge" | ||
author: "Preetham Gujjula" | ||
maintainer: "Preetham Gujjula <[email protected]>" | ||
copyright: "Preetham Gujjula" | ||
license: BSD-3-Clause | ||
|
||
# Can't test with ghc-9.8 series because falsify doesn't support it yet. | ||
tested-with: GHC == {9.2.8, 9.4.8, 9.6.4} | ||
|
||
extra-doc-files: | ||
- README.md | ||
- ChangeLog.md | ||
- docs/ALGORITHM.md | ||
|
||
description: Please see the README on GitHub at | ||
<https://github.com/pgujjula/apply-merge#readme> | ||
|
||
# Can't test with ghc-9.8 series because falsify doesn't support it yet. | ||
tested-with: GHC == {9.2.8, 9.4.8, 9.6.4} | ||
language: GHC2021 | ||
|
||
ghc-options: | ||
- -Wall | ||
|
@@ -28,8 +31,6 @@ ghc-options: | |
dependencies: | ||
- base ^>= {4.16, 4.17, 4.18, 4.19} | ||
|
||
language: GHC2021 | ||
|
||
library: | ||
source-dirs: src | ||
exposed-modules: | ||
|