Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gargantext-ihaskell
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
gargantext-ihaskell
Commits
5c94631e
Commit
5c94631e
authored
Mar 06, 2015
by
Andrew Gibiansky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Attempting to fix more build issues
parent
8a37d1e6
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
5 deletions
+7
-5
Hspec.hs
Hspec.hs
+4
-0
build.sh
build.sh
+2
-2
ihaskell.cabal
ihaskell.cabal
+1
-3
No files found.
Hspec.hs
View file @
5c94631e
...
...
@@ -504,7 +504,11 @@ parseStringTests = describe "Parser" $ do
it
"breaks without data kinds"
$
parses
"data X = 3"
`
like
`
[
#
if
MIN_VERSION_ghc
(
7
,
8
,
0
)
ParseError
(
Loc
1
10
)
"Illegal literal in type (use DataKinds to enable): 3"
#
else
ParseError
(
Loc
1
10
)
"Illegal literal in type (use -XDataKinds to enable): 3"
#
endif
]
it
"parses statements after imports"
$
do
...
...
build.sh
View file @
5c94631e
...
...
@@ -55,12 +55,12 @@ INSTALL_DIRS=`echo $INSTALLS | tr ' ' '\n' | sed 's#^#./#' | tr ' ' '\n'`
if
[
`
uname
`
=
Darwin
]
;
then
cabal
install
--constraint
"arithmoi -llvm"
-j
$INSTALL_DIRS
--force-reinstalls
else
cabal
install
-j
$INSTALL_DIRS
--force-reinstalls
cabal
install
-j
$INSTALL_DIRS
--force-reinstalls
--constraint
"arithmoi==0.4.*"
fi
# Finish installing ihaskell-diagrams.
if
[
$#
-gt
0
]
;
then
if
[
$1
=
"display"
]
;
then
cabal
install
-j
ihaskell-display/ihaskell-diagrams
--force-reinstalls
cabal
install
-j
ihaskell-display/ihaskell-diagrams
--force-reinstalls
--constraint
"arithmoi==0.4.*"
fi
fi
ihaskell.cabal
View file @
5c94631e
...
...
@@ -95,9 +95,7 @@ library
utf8-string -any,
uuid >=1.3,
vector -any,
ipython-kernel >=0.3,
arithmoi ==0.4.*
-- arithmoi is fixed to avoid issues with diagrams
ipython-kernel >=0.3
if flag(binPkgDb)
build-depends: bin-package-db
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment