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
06f89d8f
Commit
06f89d8f
authored
Nov 23, 2014
by
Andrew Gibiansky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrating to external ipython package.
parent
e929f35a
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
61 additions
and
10 deletions
+61
-10
ihaskell.cabal
ihaskell.cabal
+4
-10
LICENSE
ipython-kernel/LICENSE
+20
-0
ipython-kernel.cabal
ipython-kernel/ipython-kernel.cabal
+37
-0
Kernel.hs
ipython-kernel/src/IHaskell/IPython/Kernel.hs
+0
-0
Parser.hs
ipython-kernel/src/IHaskell/IPython/Message/Parser.hs
+0
-0
UUID.hs
ipython-kernel/src/IHaskell/IPython/Message/UUID.hs
+0
-0
Writer.hs
ipython-kernel/src/IHaskell/IPython/Message/Writer.hs
+0
-0
Stdin.hs
ipython-kernel/src/IHaskell/IPython/Stdin.hs
+0
-0
Types.hs
ipython-kernel/src/IHaskell/IPython/Types.hs
+0
-0
ZeroMQ.hs
ipython-kernel/src/IHaskell/IPython/ZeroMQ.hs
+0
-0
No files found.
ihaskell.cabal
View file @
06f89d8f
...
...
@@ -92,7 +92,7 @@ library
utf8-string -any,
uuid >=1.3,
vector -any,
zeromq4-haskell >=0.1
ipython-kernel >=0.2
exposed-modules: IHaskell.Display
IHaskell.Convert
...
...
@@ -111,13 +111,6 @@ library
IHaskell.Flags
IHaskell.Types
IHaskell.BrokenPackages
IHaskell.IPython.Kernel
IHaskell.IPython.Types
IHaskell.IPython.ZeroMQ
IHaskell.IPython.Stdin
IHaskell.IPython.Message.Writer
IHaskell.IPython.Message.Parser
IHaskell.IPython.Message.UUID
Paths_ihaskell
-- other-modules:
-- Paths_ihaskell
...
...
@@ -144,6 +137,7 @@ executable IHaskell
ihaskell -any,
MissingH >=1.2,
text -any,
ipython-kernel >= 0.2,
unix >= 2.6
Test-Suite hspec
...
...
@@ -193,8 +187,8 @@ Test-Suite hspec
utf8-string -any,
uuid >=1.3,
vector -any,
zeromq4-haskell >=0.1
,
setenv ==0.1.*
setenv ==0.1.*
,
ipython-kernel >= 0.2
default-extensions:
...
...
ipython-kernel/LICENSE
0 → 100644
View file @
06f89d8f
The MIT License (MIT)
Copyright (c) 2013 Andrew Gibiansky
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
ipython-kernel/ipython-kernel.cabal
0 → 100644
View file @
06f89d8f
name: ipython-kernel
version: 0.2.0.0
synopsis: A library for creating kernels for IPython frontends
description: ipython-kernel is a library for communicating with frontends for the interactive IPython framework. It is used extensively in IHaskell, the interactive Haskell environment.
homepage: http://github.com/gibiansky/IHaskell
license: MIT
license-file: LICENSE
author: Andrew Gibiansky
maintainer: andrew.gibiansky@gmail.com
category: Development
build-type: Simple
cabal-version: >=1.16
library
exposed-modules: IHaskell.IPython.Kernel
IHaskell.IPython.Types
IHaskell.IPython.ZeroMQ
IHaskell.IPython.Stdin
IHaskell.IPython.Message.Writer
IHaskell.IPython.Message.Parser
IHaskell.IPython.Message.UUID
-- other-modules:
other-extensions: OverloadedStrings
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >=4.6 && < 4.8,
aeson >=0.6 && < 0.9,
bytestring >=0.10,
cereal >=0.3,
containers >=0.5,
text >=0.11,
unix >=2.6,
uuid >=1.3,
zeromq4-haskell >=0.1
src/IHaskell/IPython/Kernel.hs
→
ipython-kernel/
src/IHaskell/IPython/Kernel.hs
View file @
06f89d8f
File moved
src/IHaskell/IPython/Message/Parser.hs
→
ipython-kernel/
src/IHaskell/IPython/Message/Parser.hs
View file @
06f89d8f
File moved
src/IHaskell/IPython/Message/UUID.hs
→
ipython-kernel/
src/IHaskell/IPython/Message/UUID.hs
View file @
06f89d8f
File moved
src/IHaskell/IPython/Message/Writer.hs
→
ipython-kernel/
src/IHaskell/IPython/Message/Writer.hs
View file @
06f89d8f
File moved
src/IHaskell/IPython/Stdin.hs
→
ipython-kernel/
src/IHaskell/IPython/Stdin.hs
View file @
06f89d8f
File moved
src/IHaskell/IPython/Types.hs
→
ipython-kernel/
src/IHaskell/IPython/Types.hs
View file @
06f89d8f
File moved
src/IHaskell/IPython/ZeroMQ.hs
→
ipython-kernel/
src/IHaskell/IPython/ZeroMQ.hs
View file @
06f89d8f
File moved
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