data-or 1.0.0.4 → 1.0.0.5
raw patch · 6 files changed
+43/−9 lines, 6 files
Files
- CHANGELOG +2/−0
- LICENSE +1/−1
- README +34/−0
- VERSION +0/−2
- data-or.cabal +5/−5
- src/Data/Or.hs +1/−1
+ CHANGELOG view
@@ -0,0 +1,2 @@+1.0.0 (2012-01-28):+ - (2011-07-12) Forked from the Posta project (at 0.11.0-beta).
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2010--2013, wren ng thornton.+Copyright (c) 2010--2013, wren gayle romano. ALL RIGHTS RESERVED. Redistribution and use in source and binary forms, with or without
+ README view
@@ -0,0 +1,34 @@+data-or+=======++This is a simple package and should be easy to install. You should+be able to use one of the following standard methods to install it.++ -- With cabal-install and without the source:+ $> cabal install data-or+ + -- With cabal-install and with the source already:+ $> cd data-or+ $> cabal install+ + -- Without cabal-install, but with the source already:+ $> cd data-or+ $> runhaskell Setup.hs configure --user+ $> runhaskell Setup.hs build+ $> runhaskell Setup.hs test+ $> runhaskell Setup.hs haddock --hyperlink-source+ $> runhaskell Setup.hs copy+ $> runhaskell Setup.hs register++The test step is optional and currently does nothing. The Haddock+step is also optional.+++Portability+===========++An attempt has been made to keep this library as portable as possible.+It is Haskell98 except for the use of CPP, which allows some functions+to be good producers for list fusion in GHC.++----------------------------------------------------------- fin.
− VERSION
@@ -1,2 +0,0 @@-1.0.0 (2012-01-28):- - (2011-07-12) Forked from the Posta project (at 0.11.0-beta).
data-or.cabal view
@@ -1,5 +1,5 @@ ------------------------------------------------------------------- wren ng thornton <wren@community.haskell.org> ~ 2014.03.30+-- wren gayle romano <wren@community.haskell.org> ~ 2015.05.30 ---------------------------------------------------------------- -- By and large Cabal >=1.2 is fine; but >= 1.6 gives tested-with:@@ -8,12 +8,12 @@ Build-Type: Simple Name: data-or-Version: 1.0.0.4+Version: 1.0.0.5 Stability: provisional Homepage: http://code.haskell.org/~wren/-Author: wren ng thornton+Author: wren gayle romano Maintainer: wren@community.haskell.org-Copyright: Copyright (c) 2010--2013 wren ng thornton+Copyright: Copyright (c) 2010--2015 wren gayle romano License: BSD3 License-File: LICENSE @@ -24,7 +24,7 @@ Tested-With: GHC ==6.12.1, GHC ==6.12.3, GHC ==7.6.1, GHC ==7.8.0 Extra-source-files:- VERSION+ README, CHANGELOG Source-Repository head Type: darcs Location: http://community.haskell.org/~wren/data-or
src/Data/Or.hs view
@@ -4,7 +4,7 @@ -- 2011.06.03 -- | -- Module : Data.Or--- Copyright : Copyright (c) 2010--2012 wren ng thornton+-- Copyright : Copyright (c) 2010--2015 wren gayle romano -- License : BSD -- Maintainer : wren@community.haskell.org -- Stability : provisional