Commit 01688860 authored by Ilias Tsitsimpis's avatar Ilias Tsitsimpis
Browse files

rio: Initial release of v0.1.5.0

This is a dependency for newer versions of stack (>= 1.7.1) and
yesod-core (>= 1.6.6).
parent 57284c97
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
haskell-rio (0.1.5.0-1) unstable; urgency=low

  * Initial release (Closes: #912339)

 -- Ilias Tsitsimpis <iliastsi@debian.org>  Tue, 30 Oct 2018 16:21:54 +0200
+1 −0
Original line number Diff line number Diff line
10
+88 −0
Original line number Diff line number Diff line
Source: haskell-rio
Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
Uploaders: Ilias Tsitsimpis <iliastsi@debian.org>
Priority: optional
Section: haskell
Rules-Requires-Root: no
Build-Depends: debhelper (>= 10),
 haskell-devscripts (>= 0.13),
 cdbs,
 ghc,
 ghc-prof,
 libghc-exceptions-dev,
 libghc-exceptions-prof,
 libghc-hashable-dev,
 libghc-hashable-prof,
 libghc-microlens-dev,
 libghc-microlens-prof,
 libghc-primitive-dev,
 libghc-primitive-prof,
 libghc-typed-process-dev (>= 0.2.2.0),
 libghc-typed-process-prof,
 libghc-unliftio-dev (>= 0.2.6.0),
 libghc-unliftio-prof,
 libghc-unordered-containers-dev,
 libghc-unordered-containers-prof,
 libghc-vector-dev,
 libghc-vector-prof,
 libghc-hspec-dev,
 libghc-hspec-prof,
Build-Depends-Indep: ghc-doc,
 libghc-exceptions-doc,
 libghc-hashable-doc,
 libghc-microlens-doc,
 libghc-primitive-doc,
 libghc-typed-process-doc,
 libghc-unliftio-doc,
 libghc-unordered-containers-doc,
 libghc-vector-doc,
Standards-Version: 4.2.1
Homepage: https://github.com/commercialhaskell/rio
Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-rio
Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-rio]
X-Description: standard library for Haskell
 The goal of the rio library is to make it easier to adopt Haskell for writing
 production software. It is intended as a cross between:
  * Collection of well designed, trusted libraries
  * Useful Prelude replacement
  * A set of best practices for writing production quality Haskell code

Package: libghc-rio-dev
Architecture: any
Depends: ${haskell:Depends},
 ${misc:Depends},
 ${shlibs:Depends},
Recommends: ${haskell:Recommends},
Suggests: ${haskell:Suggests},
Conflicts: ${haskell:Conflicts},
Provides: ${haskell:Provides},
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}
 .
 ${haskell:Blurb}

Package: libghc-rio-prof
Architecture: any
Depends: ${haskell:Depends},
 ${misc:Depends},
Recommends: ${haskell:Recommends},
Suggests: ${haskell:Suggests},
Conflicts: ${haskell:Conflicts},
Provides: ${haskell:Provides},
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}
 .
 ${haskell:Blurb}

Package: libghc-rio-doc
Architecture: all
Section: doc
Depends: ${haskell:Depends},
 ${misc:Depends},
Recommends: ${haskell:Recommends},
Suggests: ${haskell:Suggests},
Conflicts: ${haskell:Conflicts},
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}
 .
 ${haskell:Blurb}
+34 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: rio
Upstream-Contact: Michael Snoyman <michael@snoyman.com>
Source: https://hackage.haskell.org/package/rio

Files: *
Copyright: (c) 2018 Michael Snoyman
License: Expat

Files: debian/*
Copyright: held by the contributors mentioned in debian/changelog
License: Expat

License: Expat
 Copyright (c) 2018 Michael Snoyman
 .
 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.
+10 −0
Original line number Diff line number Diff line
Description: Add Setup.hs missing from upstream tarball
Author: Ilias Tsitsimpis <iliastsi@debian.org>

Index: b/Setup.hs
===================================================================
--- /dev/null
+++ b/Setup.hs
@@ -0,0 +1,2 @@
+import Distribution.Simple
+main = defaultMain
Loading