[Git][haskell-team/DHG_packages][master] add easytest

Clint Adams gitlab at salsa.debian.org
Mon Jul 29 22:15:32 BST 2019



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


Commits:
19609ec0 by Clint Adams at 2019-07-29T21:15:12Z
add easytest

- - - - -


9 changed files:

- + p/haskell-easytest/debian/changelog
- + p/haskell-easytest/debian/compat
- + p/haskell-easytest/debian/control
- + p/haskell-easytest/debian/copyright
- + p/haskell-easytest/debian/patches/series
- + p/haskell-easytest/debian/patches/setup-hs
- + p/haskell-easytest/debian/rules
- + p/haskell-easytest/debian/source/format
- + p/haskell-easytest/debian/watch


Changes:

=====================================
p/haskell-easytest/debian/changelog
=====================================
@@ -0,0 +1,5 @@
+haskell-easytest (0.2.1-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Clint Adams <clint at debian.org>  Mon, 29 Jul 2019 17:05:31 -0400


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


=====================================
p/haskell-easytest/debian/control
=====================================
@@ -0,0 +1,71 @@
+Source: haskell-easytest
+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-async-dev (>= 2.1),
+ libghc-async-dev (<= 2.3),
+ libghc-async-prof (>= 2.1),
+ libghc-async-prof (<= 2.3),
+ libghc-call-stack-dev (>= 0.1),
+ libghc-call-stack-prof (>= 0.1),
+ libghc-random-dev (>= 1.1),
+ libghc-random-dev (<< 2),
+ libghc-random-prof,
+Build-Depends-Indep: ghc-doc,
+ libghc-async-doc,
+ libghc-call-stack-doc,
+ libghc-random-doc,
+Standards-Version: 4.4.0
+Homepage: https://github.com/joelburget/easytest
+X-Description: simple, expressive testing library
+ EasyTest is a simple testing toolkit, meant to replace most uses of
+ QuickCheck, SmallCheck, HUnit, and frameworks like Tasty, etc.
+ .
+ The idea here is to write tests with ordinary Haskell code, with
+ control flow explicit and under programmer control.
+
+Package: libghc-easytest-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-easytest-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-easytest-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-easytest/debian/copyright
=====================================
@@ -0,0 +1,32 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: easytest
+Upstream-Contact: Joel Burget <joelburget at gmail.com>
+Source: https://hackage.haskell.org/package/easytest
+
+Files: *
+Copyright: 2017-2018 Joel Burget
+           2013-2016 Paul Chiusano and contributors
+License: Expat
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: Expat
+
+License: Expat
+ 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.


=====================================
p/haskell-easytest/debian/patches/series
=====================================
@@ -0,0 +1 @@
+setup-hs


=====================================
p/haskell-easytest/debian/patches/setup-hs
=====================================
@@ -0,0 +1,5 @@
+--- /dev/null
++++ b/Setup.hs
+@@ -0,0 +1,2 @@
++import Distribution.Simple
++main = defaultMain


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


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


=====================================
p/haskell-easytest/debian/watch
=====================================
@@ -0,0 +1,2 @@
+version=3
+https://hackage.haskell.org/package/easytest/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/19609ec0880fb2fa8ede22352161c1b9b41f1055

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/commit/19609ec0880fb2fa8ede22352161c1b9b41f1055
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/20190729/85d835bd/attachment-0001.html>


More information about the Pkg-haskell-commits mailing list