2015-11-18 01:44:16 +03:00
|
|
|
name: semantic-diff
|
|
|
|
version: 0.1.0.0
|
|
|
|
synopsis: Initial project template from stack
|
|
|
|
description: Please see README.md
|
|
|
|
homepage: http://github.com/github/semantic-diff#readme
|
|
|
|
author: Rob Rix, Josh Vera
|
2015-11-18 01:52:41 +03:00
|
|
|
maintainer: rob.rix@github.com
|
2016-01-05 19:26:58 +03:00
|
|
|
copyright: 2016 GitHub
|
2015-11-18 01:44:16 +03:00
|
|
|
category: Web
|
2016-01-08 21:24:25 +03:00
|
|
|
build-type: Custom
|
2015-11-18 01:44:16 +03:00
|
|
|
-- extra-source-files:
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
library
|
|
|
|
hs-source-dirs: src
|
2015-11-18 02:03:25 +03:00
|
|
|
exposed-modules: Diff
|
|
|
|
, Syntax
|
2015-11-18 02:14:57 +03:00
|
|
|
, Operation
|
2015-11-18 03:20:52 +03:00
|
|
|
, Algorithm
|
2015-11-18 03:25:39 +03:00
|
|
|
, Interpreter
|
2016-02-11 01:30:14 +03:00
|
|
|
, Language
|
2015-12-23 01:20:08 +03:00
|
|
|
, Line
|
2015-12-23 01:24:08 +03:00
|
|
|
, Row
|
2016-01-06 19:56:58 +03:00
|
|
|
, Data.OrderedMap
|
2015-11-18 05:21:51 +03:00
|
|
|
, Patch
|
2015-12-18 01:22:09 +03:00
|
|
|
, PatchOutput
|
2015-11-18 18:09:49 +03:00
|
|
|
, SES
|
2016-02-04 21:59:33 +03:00
|
|
|
, Category
|
2015-11-18 22:27:09 +03:00
|
|
|
, Term
|
2015-12-03 05:40:34 +03:00
|
|
|
, Range
|
2015-12-03 19:37:18 +03:00
|
|
|
, Split
|
|
|
|
, Unified
|
2015-12-17 00:24:23 +03:00
|
|
|
, Parser
|
2016-01-14 21:18:40 +03:00
|
|
|
, Renderer
|
2015-12-17 20:54:27 +03:00
|
|
|
, TreeSitter
|
2015-12-24 06:38:02 +03:00
|
|
|
, Source
|
2015-11-18 02:03:25 +03:00
|
|
|
build-depends: base >= 4.8 && < 5
|
2015-12-15 19:47:52 +03:00
|
|
|
, blaze-html
|
|
|
|
, bytestring
|
2016-01-13 17:49:13 +03:00
|
|
|
, c-storable-deriving
|
2015-11-18 02:03:25 +03:00
|
|
|
, containers
|
|
|
|
, free
|
2015-12-01 00:00:34 +03:00
|
|
|
, mtl
|
2015-12-03 19:38:37 +03:00
|
|
|
, rainbow
|
2016-01-13 17:49:13 +03:00
|
|
|
, semigroups
|
2015-12-15 19:47:52 +03:00
|
|
|
, text >= 1.2.1.3
|
2015-12-17 22:49:28 +03:00
|
|
|
, tree-sitter-parsers
|
2015-12-24 06:35:55 +03:00
|
|
|
, vector
|
2015-11-18 01:44:16 +03:00
|
|
|
default-language: Haskell2010
|
2016-01-04 20:04:12 +03:00
|
|
|
default-extensions: DeriveFunctor, DeriveFoldable, DeriveTraversable, DeriveGeneric, OverloadedStrings
|
2015-12-24 03:42:55 +03:00
|
|
|
ghc-options: -Wall -fno-warn-name-shadowing -O2 -threaded -fprof-auto "-with-rtsopts=-N -p -s -h -i0.1"
|
2015-11-18 01:44:16 +03:00
|
|
|
|
|
|
|
executable semantic-diff-exe
|
|
|
|
hs-source-dirs: app
|
|
|
|
main-is: Main.hs
|
2016-02-13 23:41:07 +03:00
|
|
|
other-modules: DiffOutput
|
|
|
|
, Parsers
|
2016-01-12 19:46:11 +03:00
|
|
|
if os(darwin)
|
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -static
|
|
|
|
else
|
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -static -pgml=script/g++
|
2016-01-09 01:57:05 +03:00
|
|
|
cc-options: -DU_STATIC_IMPLEMENTATION=1
|
2016-01-11 17:46:50 +03:00
|
|
|
cpp-options: -DU_STATIC_IMPLEMENTATION=1
|
2015-11-18 01:44:16 +03:00
|
|
|
build-depends: base
|
2016-01-05 00:04:04 +03:00
|
|
|
, bifunctors
|
2015-12-31 02:00:57 +03:00
|
|
|
, bytestring
|
2015-11-18 22:45:23 +03:00
|
|
|
, containers
|
2015-12-31 02:00:57 +03:00
|
|
|
, directory
|
|
|
|
, filepath
|
2015-11-18 22:45:23 +03:00
|
|
|
, free
|
2015-12-01 19:00:58 +03:00
|
|
|
, optparse-applicative
|
2016-01-21 21:32:00 +03:00
|
|
|
, rainbow
|
2015-12-31 02:00:57 +03:00
|
|
|
, semantic-diff
|
2015-12-15 21:29:58 +03:00
|
|
|
, text >= 1.2.1.3
|
2015-12-30 01:34:35 +03:00
|
|
|
, text-icu
|
2016-01-06 19:34:04 +03:00
|
|
|
, gitlib
|
2016-01-07 00:15:40 +03:00
|
|
|
, gitlib-libgit2
|
|
|
|
, tagged
|
|
|
|
, mtl
|
2015-11-18 01:44:16 +03:00
|
|
|
default-language: Haskell2010
|
2015-12-15 21:29:58 +03:00
|
|
|
default-extensions: OverloadedStrings
|
2016-01-12 19:55:23 +03:00
|
|
|
if os(darwin)
|
|
|
|
extra-libraries: stdc++ icuuc icudata icui18n
|
2016-01-16 00:25:58 +03:00
|
|
|
if os(darwin)
|
|
|
|
extra-lib-dirs: /usr/local/opt/icu4c/lib
|
|
|
|
if os(darwin)
|
|
|
|
include-dirs: /usr/local/opt/icu4c/include
|
|
|
|
|
|
|
|
executable semantic-diff
|
|
|
|
hs-source-dirs: app
|
|
|
|
main-is: SemanticDiff.hs
|
|
|
|
other-modules: Parsers
|
|
|
|
if os(darwin)
|
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -static
|
|
|
|
else
|
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -static -pgml=script/g++
|
|
|
|
cc-options: -DU_STATIC_IMPLEMENTATION=1
|
|
|
|
cpp-options: -DU_STATIC_IMPLEMENTATION=1
|
|
|
|
build-depends: base
|
|
|
|
, bifunctors
|
|
|
|
, bytestring
|
|
|
|
, containers
|
|
|
|
, directory
|
|
|
|
, filepath
|
|
|
|
, free
|
|
|
|
, optparse-applicative
|
|
|
|
, semantic-diff
|
|
|
|
, text >= 1.2.1.3
|
|
|
|
, text-icu
|
|
|
|
, gitlib
|
|
|
|
, gitlib-libgit2
|
2016-02-01 22:48:30 +03:00
|
|
|
, rainbow
|
2016-01-16 00:25:58 +03:00
|
|
|
, tagged
|
|
|
|
, mtl
|
|
|
|
default-language: Haskell2010
|
|
|
|
default-extensions: OverloadedStrings
|
|
|
|
if os(darwin)
|
|
|
|
extra-libraries: stdc++ icuuc icudata icui18n
|
2016-01-13 04:39:04 +03:00
|
|
|
if os(darwin)
|
|
|
|
extra-lib-dirs: /usr/local/opt/icu4c/lib
|
2016-01-13 04:47:50 +03:00
|
|
|
if os(darwin)
|
2016-01-13 04:49:46 +03:00
|
|
|
include-dirs: /usr/local/opt/icu4c/include
|
2015-12-11 07:15:24 +03:00
|
|
|
|
2015-11-18 01:44:16 +03:00
|
|
|
test-suite semantic-diff-test
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
hs-source-dirs: test
|
|
|
|
main-is: Spec.hs
|
2015-12-22 20:53:31 +03:00
|
|
|
other-modules: ArbitraryTerm
|
2016-01-05 19:27:14 +03:00
|
|
|
, InterpreterSpec
|
|
|
|
, OrderedMapSpec
|
|
|
|
, PatchOutputSpec
|
|
|
|
, SplitSpec
|
|
|
|
, TermSpec
|
2015-11-18 01:44:16 +03:00
|
|
|
build-depends: base
|
2015-12-04 17:16:01 +03:00
|
|
|
, containers
|
2015-12-04 18:17:26 +03:00
|
|
|
, free
|
2015-12-15 22:53:03 +03:00
|
|
|
, hspec >= 2.1.10
|
|
|
|
, QuickCheck >= 2.8.1
|
2015-12-04 17:15:54 +03:00
|
|
|
, semantic-diff
|
2015-12-15 22:53:03 +03:00
|
|
|
, text >= 1.2.1.3
|
2015-12-15 23:03:10 +03:00
|
|
|
, quickcheck-text
|
2015-11-18 01:44:16 +03:00
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
|
|
|
default-language: Haskell2010
|
2015-12-15 23:03:10 +03:00
|
|
|
default-extensions: DeriveGeneric, OverloadedStrings
|
2015-11-18 01:44:16 +03:00
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
2015-11-20 19:20:59 +03:00
|
|
|
location: https://github.com/github/semantic-diff
|