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

resolv: Initial release of v0.1.1.1

This is a dependency for newer versions of cabal-install (>= 2.2.0.0).
parent 10cd9d94
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
haskell-resolv (0.1.1.1-1) unstable; urgency=low

  * Initial release (Closes: #911608)

 -- Ilias Tsitsimpis <iliastsi@debian.org>  Mon, 22 Oct 2018 17:11:48 +0300
+1 −0
Original line number Diff line number Diff line
10
+88 −0
Original line number Diff line number Diff line
Source: haskell-resolv
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.9),
 cdbs,
 ghc,
 ghc-prof,
 libghc-base16-bytestring-dev (>= 0.1),
 libghc-base16-bytestring-dev (<< 0.2),
 libghc-base16-bytestring-prof,
 libghc-tasty-dev (>= 1.1),
 libghc-tasty-dev (<< 1.2),
 libghc-tasty-prof,
 libghc-tasty-hunit-dev (>= 0.10),
 libghc-tasty-hunit-dev (<< 0.11),
 libghc-tasty-hunit-prof,
Build-Depends-Indep: ghc-doc,
 libghc-base16-bytestring-doc,
Standards-Version: 4.2.1
Homepage: https://hackage.haskell.org/package/resolv
Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-resolv
Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-resolv]
X-Description: Domain Name Service (DNS) lookup via libresolv
 This package implements an API for accessing the Domain Name Service (DNS)
 resolver service via the standard libresolv system library (whose
 API is often available directly via the standard libc C library) on
 Unix systems.
 .
 This package also includes support for decoding message record types
 as defined in the following RFCs:
 .
  - RFC 1035: Domain Names - Implementation And Specification
  - RFC 1183: New DNS RR Definitions
  - RFC 2782: A DNS RR for specifying the location of services (DNS SRV)
  - RFC 2915: The Naming Authority Pointer (NAPTR) DNS Resource Record
  - RFC 3596: DNS Extensions to Support IP Version 6
  - RFC 4034: Resource Records for the DNS Security Extensions
  - RFC 4255: Using DNS to Securely Publish Secure Shell (SSH) Key Fingerprints
  - RFC 4408: Sender Policy Framework (SPF) for Authorizing Use of Domains
    in E-Mail, Version 1
  - RFC 5155: DNS Security (DNSSEC) Hashed Authenticated Denial of Existence
  - RFC 6844: DNS Certification Authority Authorization (CAA) Resource Record
  - RFC 6891: Extension Mechanisms for DNS (EDNS(0))
  - RFC 7553: The Uniform Resource Identifier (URI) DNS Resource Record

Package: libghc-resolv-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-resolv-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-resolv-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}
+29 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: resolv
Upstream-Contact: Herbert Valerio Riedel <hvr@gnu.org>
Source: https://hackage.haskell.org/package/resolv

Files: *
Copyright: (C) 2017 Herbert Valerio Riedel
License: GPL-3+

Files: debian/*
Copyright: held by the contributors mentioned in debian/changelog
License: GPL-3+

License: GPL-3+
 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License
 as published by the Free Software Foundation; either version 3
 of the License, or (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program. If not, see <http://www.gnu.org/licenses/>.
 .
 On Debian system, copy of GNU Lesser General Public License version 3
 is also located at `/usr/share/common-licenses/GPL-3'
+18 −0
Original line number Diff line number Diff line
Index: b/resolv.cabal
===================================================================
--- a/resolv.cabal
+++ b/resolv.cabal
@@ -78,11 +78,11 @@ library
                      Network.DNS.FFI
                      Compat
 
-  build-depends:     base              >= 4.5 && <4.11
+  build-depends:     base              >= 4.5 && <4.13
                    , base16-bytestring == 0.1.*
                    , binary            >= 0.7.3 && < 0.9
                    , bytestring        >= 0.9.2 && < 0.11
-                   , containers        >= 0.4.2.1 && < 0.6
+                   , containers        >= 0.4.2.1 && < 0.7
 
   ghc-options:       -Wall
   include-dirs:      cbits
Loading