|
@@ -1,21 +1,6 @@
|
|
--- Initial filelike.cabal generated by cabal init. For further
|
|
|
|
--- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
-
|
|
|
|
--- The name of the package.
|
|
|
|
name: uniform-io
|
|
name: uniform-io
|
|
-
|
|
|
|
--- The package version. See the Haskell package versioning policy (PVP)
|
|
|
|
--- for standards guiding when and how versions should be incremented.
|
|
|
|
--- http://www.haskell.org/haskellwiki/Package_versioning_policy
|
|
|
|
--- PVP summary: +-+------- breaking API changes
|
|
|
|
--- | | +----- non-breaking API additions
|
|
|
|
--- | | | +--- code changes with no API change
|
|
|
|
version: 1.3.0.0
|
|
version: 1.3.0.0
|
|
-
|
|
|
|
--- A short (one-line) description of the package.
|
|
|
|
synopsis: Uniform IO over files, network, anything.
|
|
synopsis: Uniform IO over files, network, anything.
|
|
-
|
|
|
|
--- A longer description of the package.
|
|
|
|
description:
|
|
description:
|
|
This library defines a typeclass for abstracting
|
|
This library defines a typeclass for abstracting
|
|
the differences between the several IO channels available.
|
|
the differences between the several IO channels available.
|
|
@@ -27,36 +12,13 @@ description:
|
|
That is planned to be added soon.
|
|
That is planned to be added soon.
|
|
.
|
|
.
|
|
Requires a '-threaded' compiler switch.
|
|
Requires a '-threaded' compiler switch.
|
|
-
|
|
|
|
-
|
|
|
|
--- URL for the project homepage or repository.
|
|
|
|
homepage: https://sealgram.com/git/haskell/uniform-io
|
|
homepage: https://sealgram.com/git/haskell/uniform-io
|
|
-
|
|
|
|
--- The license under which the package is released.
|
|
|
|
license: MIT
|
|
license: MIT
|
|
-
|
|
|
|
--- The file containing the license text.
|
|
|
|
license-file: LICENSE
|
|
license-file: LICENSE
|
|
-
|
|
|
|
--- The package author(s).
|
|
|
|
author: Marcos Dumay de Medeiros
|
|
author: Marcos Dumay de Medeiros
|
|
-
|
|
|
|
--- An email address to which users can send suggestions, bug reports, and
|
|
|
|
--- patches.
|
|
|
|
maintainer: marcos@marcosdumay.com
|
|
maintainer: marcos@marcosdumay.com
|
|
-
|
|
|
|
--- A copyright notice.
|
|
|
|
--- copyright:
|
|
|
|
-
|
|
|
|
category: System
|
|
category: System
|
|
-
|
|
|
|
build-type: Simple
|
|
build-type: Simple
|
|
-
|
|
|
|
--- Extra files to be distributed with the package, such as examples or a
|
|
|
|
--- README.
|
|
|
|
--- extra-source-files:
|
|
|
|
-
|
|
|
|
--- Constraint on the version of Cabal needed to build this package.
|
|
|
|
cabal-version: >=1.10
|
|
cabal-version: >=1.10
|
|
|
|
|
|
Extra-Source-Files:
|
|
Extra-Source-Files:
|
|
@@ -104,7 +66,7 @@ library
|
|
|
|
|
|
-- Other library packages from which modules are imported.
|
|
-- Other library packages from which modules are imported.
|
|
build-depends:
|
|
build-depends:
|
|
- base >=4.8 && <4.9 ,
|
|
|
|
|
|
+ base >=4.8,
|
|
iproute >=1.4,
|
|
iproute >=1.4,
|
|
bytestring >=0.10,
|
|
bytestring >=0.10,
|
|
network >=2.4,
|
|
network >=2.4,
|
|
@@ -134,7 +96,7 @@ Test-suite targets
|
|
hs-source-dirs:
|
|
hs-source-dirs:
|
|
test
|
|
test
|
|
build-depends:
|
|
build-depends:
|
|
- base >=4.7 && <5.0,
|
|
|
|
|
|
+ base >=4.7,
|
|
Cabal >= 1.9.2,
|
|
Cabal >= 1.9.2,
|
|
bytestring >=0.10 && <1.0,
|
|
bytestring >=0.10 && <1.0,
|
|
uniform-io
|
|
uniform-io
|
|
@@ -149,7 +111,7 @@ Test-suite blocking
|
|
hs-source-dirs:
|
|
hs-source-dirs:
|
|
test
|
|
test
|
|
build-depends:
|
|
build-depends:
|
|
- base >=4.7 && <5.0,
|
|
|
|
|
|
+ base >=4.7,
|
|
Cabal >= 1.9.2,
|
|
Cabal >= 1.9.2,
|
|
bytestring >=0.10 && <1.0,
|
|
bytestring >=0.10 && <1.0,
|
|
attoparsec >=0.10 && <1.0,
|
|
attoparsec >=0.10 && <1.0,
|