[Git][haskell-team/DHG_packages][master] add tasty-expected-failure

Clint Adams gitlab at salsa.debian.org
Tue Apr 17 06:36:12 BST 2018


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


Commits:
5db4e1b2 by Clint Adams at 2018-04-17T01:31:49-04:00
add tasty-expected-failure

- - - - -


7 changed files:

- + p/haskell-tasty-expected-failure/debian/changelog
- + p/haskell-tasty-expected-failure/debian/compat
- + p/haskell-tasty-expected-failure/debian/control
- + p/haskell-tasty-expected-failure/debian/copyright
- + p/haskell-tasty-expected-failure/debian/rules
- + p/haskell-tasty-expected-failure/debian/source/format
- + p/haskell-tasty-expected-failure/debian/watch


Changes:

=====================================
p/haskell-tasty-expected-failure/debian/changelog
=====================================
--- /dev/null
+++ b/p/haskell-tasty-expected-failure/debian/changelog
@@ -0,0 +1,5 @@
+haskell-tasty-expected-failure (0.11.1.1-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Clint Adams <clint at debian.org>  Tue, 17 Apr 2018 01:23:58 -0400


=====================================
p/haskell-tasty-expected-failure/debian/compat
=====================================
--- /dev/null
+++ b/p/haskell-tasty-expected-failure/debian/compat
@@ -0,0 +1 @@
+9


=====================================
p/haskell-tasty-expected-failure/debian/control
=====================================
--- /dev/null
+++ b/p/haskell-tasty-expected-failure/debian/control
@@ -0,0 +1,80 @@
+Source: haskell-tasty-expected-failure
+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 (>= 9),
+ haskell-devscripts (>= 0.8),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-tagged-dev (>= 0.7),
+ libghc-tagged-dev (<< 0.9),
+ libghc-tagged-prof (>= 0.7),
+ libghc-tagged-prof (<< 0.9),
+ libghc-tasty-dev (>= 0.11),
+ libghc-tasty-prof (>= 0.11),
+Build-Depends-Indep: ghc-doc,
+ libghc-tagged-doc,
+ libghc-tasty-doc,
+Standards-Version: 4.1.4
+Homepage: https://github.com/nomeata/tasty-expected-failure
+X-Description: mark tasty tests as failure-expected
+ With the function 'expectFail' in the provided module
+ Test.Tasty.ExpectedFailure, you can mark that you expect
+ test cases to fail, and not to pass.
+ .
+ This can for example be used for test-driven development: Create the
+ tests, mark them with 'Test.Tasty.ExpectedFailure.expectFail', and
+ you can still push to the main branch, without your continuous
+ integration branch failing.
+ .
+ Once someone implements the feature or fixes the bug (maybe
+ unknowingly), the test suite will tell him so, due to the now
+ unexpectedly passing test, and he can remove the
+ 'Test.Tasty.ExpectedFailure.expectFail' marker.
+ .
+ The module also provides 'Test.Tasty.ExpectedFailure.ignoreTest' to
+ avoid running a test. Both functions are implemented via the more
+ general 'Test.Tasty.ExpectedFailure.wrapTest', which is also
+ provided.
+
+Package: libghc-tasty-expected-failure-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-tasty-expected-failure-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-tasty-expected-failure-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-tasty-expected-failure/debian/copyright
=====================================
--- /dev/null
+++ b/p/haskell-tasty-expected-failure/debian/copyright
@@ -0,0 +1,32 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: tasty-expected-failure
+Upstream-Contact: mail at joachim-breitner.de
+Source: https://hackage.haskell.org/package/tasty-expected-failure
+
+Files: *
+Copyright: 2015 Joachim Breitner
+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-tasty-expected-failure/debian/rules
=====================================
--- /dev/null
+++ b/p/haskell-tasty-expected-failure/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+DEB_SETUP_BIN_NAME = debian/hlibrary.setup
+DEB_CABAL_PACKAGE = tasty-expected-failure
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk


=====================================
p/haskell-tasty-expected-failure/debian/source/format
=====================================
--- /dev/null
+++ b/p/haskell-tasty-expected-failure/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)


=====================================
p/haskell-tasty-expected-failure/debian/watch
=====================================
--- /dev/null
+++ b/p/haskell-tasty-expected-failure/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://hackage.haskell.org/package/tasty-expected-failure/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/5db4e1b222718a3e58e70403e6ce4f2f60159001

---
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/commit/5db4e1b222718a3e58e70403e6ce4f2f60159001
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/20180417/f329e9e7/attachment-0001.html>


More information about the Pkg-haskell-commits mailing list