[Git][haskell-team/DHG_packages][master] add network-bsd

Clint Adams gitlab at salsa.debian.org
Sun Jun 14 21:11:09 BST 2020



Clint Adams pushed to branch master at Debian Haskell Group / DHG_packages


Commits:
4188c9ce by Clint Adams at 2020-06-14T16:10:52-04:00
add network-bsd

- - - - -


9 changed files:

- + p/haskell-network-bsd/debian/changelog
- + p/haskell-network-bsd/debian/compat
- + p/haskell-network-bsd/debian/control
- + p/haskell-network-bsd/debian/copyright
- + p/haskell-network-bsd/debian/patches/newer-deps
- + p/haskell-network-bsd/debian/patches/series
- + p/haskell-network-bsd/debian/rules
- + p/haskell-network-bsd/debian/source/format
- + p/haskell-network-bsd/debian/watch


Changes:

=====================================
p/haskell-network-bsd/debian/changelog
=====================================
@@ -0,0 +1,5 @@
+haskell-network-bsd (2.8.1.0-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Clint Adams <clint at debian.org>  Sun, 14 Jun 2020 15:54:35 -0400


=====================================
p/haskell-network-bsd/debian/compat
=====================================
@@ -0,0 +1 @@
+10


=====================================
p/haskell-network-bsd/debian/control
=====================================
@@ -0,0 +1,60 @@
+Source: haskell-network-bsd
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Clint Adams <clint at debian.org>
+Priority: optional
+Section: haskell
+Build-Depends: debhelper (>= 10),
+ haskell-devscripts-minimal | haskell-devscripts (>= 0.13),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-network-dev (>= 3.0.0.0),
+ libghc-network-dev (<< 3.1.2),
+ libghc-network-prof (>= 3.0.0.0),
+Build-Depends-Indep: ghc-doc,
+ libghc-network-doc,
+Standards-Version: 4.5.0
+Homepage: https://github.com/haskell/network-bsd
+X-Description: POSIX network database netdb.h API
+ This package provides Haskell bindings to the POSIX network
+ database (netdb.h) API.
+
+Package: libghc-network-bsd-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-network-bsd-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-network-bsd-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}


=====================================
p/haskell-network-bsd/debian/copyright
=====================================
@@ -0,0 +1,42 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: network-bsd
+Upstream-Contact: Kazu Yamamoto, Herbert Valerio Riedel
+Source: https://hackage.haskell.org/package/network-bsd
+
+Files: *
+Copyright: 2002-2010 The University Court of the University of Glasgow
+           2007-2020 Johan Tibell
+           2018- Kazu Yamamoto
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: BSD-3-clause
+
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+ - Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+ .
+ - Neither name of the University nor the names of its contributors may be
+ used to endorse or promote products derived from this software without
+ specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY COURT OF THE UNIVERSITY OF
+ GLASGOW AND THE CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ UNIVERSITY COURT OF THE UNIVERSITY OF GLASGOW OR THE CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+ DAMAGE.


=====================================
p/haskell-network-bsd/debian/patches/newer-deps
=====================================
@@ -0,0 +1,11 @@
+--- a/network-bsd.cabal
++++ b/network-bsd.cabal
+@@ -75,7 +75,7 @@
+                -- with the bounds to avoid leaking through API
+                -- changes that aren't reflected in `network-bsd`'s
+                -- API version.
+-               , network >= 3.0.0.0 && < 3.0.1
++               , network (>=3.0.0.0 && <3.0.2) || (>=3.1.0.0 && <3.1.2)
+   build-tools: hsc2hs >= 0.67 && < 0.69
+   ghc-options: -Wall
+ 


=====================================
p/haskell-network-bsd/debian/patches/series
=====================================
@@ -0,0 +1 @@
+newer-deps


=====================================
p/haskell-network-bsd/debian/rules
=====================================
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+DEB_SETUP_BIN_NAME = debian/hlibrary.setup
+DEB_CABAL_PACKAGE = network-bsd
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk


=====================================
p/haskell-network-bsd/debian/source/format
=====================================
@@ -0,0 +1 @@
+3.0 (quilt)


=====================================
p/haskell-network-bsd/debian/watch
=====================================
@@ -0,0 +1,2 @@
+version=3
+https://hackage.haskell.org/package/network-bsd/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))



View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/4188c9ceb57c817ad124470dba7231ffab32622f

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/4188c9ceb57c817ad124470dba7231ffab32622f
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20200614/6f5cd0b0/attachment-0001.html>


More information about the Pkg-haskell-commits mailing list