Skip to content

Commit

Permalink
cosmetic: changed license from GPL to LGPL-2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
urv committed Dec 8, 2011
1 parent 8d4e37d commit d7c34e7
Show file tree
Hide file tree
Showing 17 changed files with 463 additions and 275 deletions.
676 changes: 419 additions & 257 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion fixhs.cabal
Expand Up @@ -4,7 +4,7 @@ description: Financial Information eXchange (FIX) protocol (co)parser
homepage: http://github.com/urv/fixhs
synopsis: FIX (co)parser
category: Protocol, Text, Parsing
license: GPL
license: LGPL-2.1
license-file: LICENSE
author: Arvin Moezzi
maintainer: Arvin Moezzi
Expand Down
6 changes: 3 additions & 3 deletions src/Data/Coparser.hs
@@ -1,7 +1,7 @@
{-# LANGUAGE BangPatterns, MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances, TypeSynonymInstances #-}
-- Module : Data.Coparser
-- License : LGPL-2.1

-- Module : Data.Coparser
-- License : GPLv2
{-# LANGUAGE BangPatterns, MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances, TypeSynonymInstances #-}

module Data.Coparser
( Coparser (..)
Expand Down
3 changes: 3 additions & 0 deletions src/Data/FIX/Arbitrary.hs
@@ -1,3 +1,6 @@
-- Module : Data.FIX.Arbitrary
-- License : LGPL-2.1

module Data.FIX.Arbitrary
( arbibtraryFIXValues
, arbibtraryFIXGroup
Expand Down
3 changes: 3 additions & 0 deletions src/Data/FIX/Common.hs
@@ -1,3 +1,6 @@
-- Module : Data.FIX.Common
-- License : LGPL-2.1

module Data.FIX.Common
( delimiter)
where
Expand Down
6 changes: 3 additions & 3 deletions src/Data/FIX/Coparser.hs
@@ -1,7 +1,7 @@
{-# LANGUAGE TypeSynonymInstances, FlexibleInstances #-}
-- Module : Data.FIX.Coparser
-- License : LGPL-2.1

-- Module : Data.FIX.Coparser
-- License : GPLv2
{-# LANGUAGE TypeSynonymInstances, FlexibleInstances #-}

module Data.FIX.Coparser ( coparse) where

Expand Down
4 changes: 2 additions & 2 deletions src/Data/FIX/Message.hs
@@ -1,5 +1,5 @@
-- Module : Data.FIX.Message
-- License : GPLv2
-- Module : Data.FIX.Message
-- License : LGPL-2.1

{-# LANGUAGE MagicHash, GeneralizedNewtypeDeriving #-}
{-# OPTIONS_GHC -fno-warn-missing-signatures #-}
Expand Down
7 changes: 3 additions & 4 deletions src/Data/FIX/Parser.hs
@@ -1,8 +1,7 @@
{-# OPTIONS_GHC -fno-warn-missing-signatures #-}

-- Module : Data.FIX.Parser
-- License : GPLv2
-- Module : Data.FIX.Parser
-- License : LGPL-2.1

{-# OPTIONS_GHC -fno-warn-missing-signatures #-}

module Data.FIX.Parser
(
Expand Down
4 changes: 2 additions & 2 deletions src/Data/FIX/ParserCombinators.hs
@@ -1,5 +1,5 @@
-- Module : Data.FIX.ParserCombinators
-- License : GPLv2
-- Module : Data.FIX.ParserCombinators
-- License : LGPL-2.1

{-# LANGUAGE BangPatterns #-}

Expand Down
3 changes: 3 additions & 0 deletions src/Data/FIX/Spec/FIX40.hs
@@ -1,3 +1,6 @@
-- Module : Data.FIX.Spec.FIX40
-- License : LGPL-2.1

module Data.FIX.Spec.FIX40 ( fix40 ) where
import qualified Data.ByteString.Char8 as C
import qualified Data.LookupTable as LT ( new, insert )
Expand Down
3 changes: 3 additions & 0 deletions src/Data/FIX/Spec/FIX41.hs
@@ -1,3 +1,6 @@
-- Module : Data.FIX.Spec.FIX41
-- License : LGPL-2.1

module Data.FIX.Spec.FIX41 ( fix41 ) where
import qualified Data.ByteString.Char8 as C
import qualified Data.LookupTable as LT ( new, insert )
Expand Down
3 changes: 3 additions & 0 deletions src/Data/FIX/Spec/FIX42.hs
@@ -1,3 +1,6 @@
-- Module : Data.FIX.Spec.FIX42
-- License : LGPL-2.1

module Data.FIX.Spec.FIX42 ( fix42 ) where
import qualified Data.ByteString.Char8 as C
import qualified Data.LookupTable as LT ( new, insert )
Expand Down
3 changes: 3 additions & 0 deletions src/Data/FIX/Spec/FIX43.hs
@@ -1,3 +1,6 @@
-- Module : Data.FIX.Spec.FIX43
-- License : LGPL-2.1

module Data.FIX.Spec.FIX43 ( fix43 ) where
import qualified Data.ByteString.Char8 as C
import qualified Data.LookupTable as LT ( new, insert )
Expand Down
3 changes: 3 additions & 0 deletions src/Data/FIX/Spec/FIX44.hs
@@ -1,3 +1,6 @@
-- Module : Data.FIX.Spec.FIX44
-- License : LGPL-2.1

module Data.FIX.Spec.FIX44 ( fix44 ) where
import qualified Data.ByteString.Char8 as C
import qualified Data.LookupTable as LT ( new, insert )
Expand Down
6 changes: 3 additions & 3 deletions src/Data/LookupTable.hs
@@ -1,7 +1,7 @@
{-# LANGUAGE FunctionalDependencies, ExistentialQuantification, MultiParamTypeClasses, FlexibleInstances #-}
-- Module : Data.LookupTable
-- License : LGPL-2.1

-- Module : Data.LookupTable
-- License : GPLv2
{-# LANGUAGE FunctionalDependencies, ExistentialQuantification, MultiParamTypeClasses, FlexibleInstances #-}

module Data.LookupTable
( LookupTable
Expand Down
3 changes: 3 additions & 0 deletions src/Socket/ClientSocket.hs
@@ -1,3 +1,6 @@
-- Module : Socket.ClientSocket
-- License : LGPL-2.1

module Socket.ClientSocket
where

Expand Down
3 changes: 3 additions & 0 deletions src/Socket/Enumerator.hs
@@ -1,3 +1,6 @@
-- Module : Socket.Enumerator
-- License : LGPL-2.1

module Socket.Enumerator
where

Expand Down

0 comments on commit d7c34e7

Please sign in to comment.