Commit 7dc325b6 authored by Sean Whitton's avatar Sean Whitton
Browse files

Initial packaging of http-client-restricted-0.0.1

parent d136b2b1
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
haskell-http-client-restricted (0.0.1-1) unstable; urgency=medium

  * Initial release.
    Package split out from src:git-annex by upstream.

 -- Sean Whitton <spwhitton@spwhitton.name>  Thu, 17 Oct 2019 14:16:54 -0700

http-client-restricted (0.0.1) unstable; urgency=medium

  * Initial release.

 -- Joey Hess <id@joeyh.name>  Tue, 26 Jun 2018 12:22:48 -0400
+1 −0
Original line number Diff line number Diff line
9
+85 −0
Original line number Diff line number Diff line
Source: haskell-http-client-restricted
Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
Uploaders: Sean Whitton <spwhitton@spwhitton.name>
Priority: optional
Section: haskell
Build-Depends: debhelper (>= 9),
 haskell-devscripts-minimal | haskell-devscripts (>= 0.9),
 cdbs,
 ghc,
 ghc-prof,
 libghc-connection-dev (>= 0.2.5),
 libghc-connection-prof,
 libghc-data-default-dev,
 libghc-data-default-prof,
 libghc-http-client-dev (>= 0.4.31),
 libghc-http-client-dev (<< 0.6),
 libghc-http-client-prof,
 libghc-http-client-tls-dev (>= 0.3.2),
 libghc-http-client-tls-dev (<< 0.4),
 libghc-http-client-tls-prof,
 libghc-network-dev,
 libghc-network-prof,
 libghc-utf8-string-dev,
 libghc-utf8-string-prof,
Build-Depends-Indep: ghc-doc,
 libghc-connection-doc,
 libghc-data-default-doc,
 libghc-http-client-doc,
 libghc-http-client-tls-doc,
 libghc-network-doc,
 libghc-utf8-string-doc,
Standards-Version: 4.4.1
Homepage: https://hackage.haskell.org/package/http-client-restricted
Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-http-client-restricted
Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git
X-Description: restrict the servers that Haskell's http-client will use
 Addition to the http-client and http-client-tls Haskell
 libraries, that restricts the HTTP servers that can be used.
 .
 This is useful when a security policy needs to, e.g., prevent connections to
 HTTP servers on localhost or a local network, or only allow connections
 to a specific HTTP server.
 .
 It handles restricting redirects as well as the initial HTTP connection,
 and it also guards against DNS poisoning attacks.

Package: libghc-http-client-restricted-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-http-client-restricted-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-http-client-restricted-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}
+40 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: http-client-restricted
Upstream-Contact: Joey Hess <id@joeyh.name>
Source: https://hackage.haskell.org/package/http-client-restricted

Files: *
Copyright: (C) 2018 Joey Hess <id@joeyh.name>
 (C) 2013 Michael Snoyman
License: Expat
Comment:
 Snoyman's copyright can be verified by looking at the
 haskell-http-client-tls source package.  Some portions of that code
 were adapted for use in this package.

Files: debian/*
Copyright: (C) 2019 Sean Whitton <spwhitton@spwhitton.name>
License: Expat

License: Expat
 Copyright 2018 Joey Hess <id@joeyh.name>.
 Portions from http-client-tls Copyright (c) 2013 Michael Snoyman
 .
 The MIT License (MIT)
 .
 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.
+8 −0
Original line number Diff line number Diff line
#!/usr/bin/make -f

DEB_SETUP_BIN_NAME = debian/hlibrary.setup
DEB_CABAL_PACKAGE = http-client-restricted
DEB_DEFAULT_COMPILER = ghc

include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
Loading