[Pkg-haskell-commits] darcs: haskell-hspec-discover: Initial check-in

Joachim Breitner mail at joachim-breitner.de
Thu Apr 16 19:34:18 UTC 2015


Thu Apr 16 19:33:40 UTC 2015  Joachim Breitner <mail at joachim-breitner.de>
  * Initial check-in

    A ./changelog
    A ./compat
    A ./control
    A ./copyright
    A ./hspec-discover.haskell-binaries
    A ./rules
    A ./source/
    A ./source/format
    A ./watch

Thu Apr 16 19:33:40 UTC 2015  Joachim Breitner <mail at joachim-breitner.de>
  * Initial check-in
diff -rN -u old-haskell-hspec-discover/changelog new-haskell-hspec-discover/changelog
--- old-haskell-hspec-discover/changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hspec-discover/changelog	2015-04-16 19:34:18.339406571 +0000
@@ -0,0 +1,5 @@
+haskell-hspec-discover (2.1.5-1) UNRELEASED; urgency=low
+
+  * Initial release
+
+ -- Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>  Thu, 16 Apr 2015 21:20:50 +0200
diff -rN -u old-haskell-hspec-discover/compat new-haskell-hspec-discover/compat
--- old-haskell-hspec-discover/compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hspec-discover/compat	2015-04-16 19:34:18.339406571 +0000
@@ -0,0 +1 @@
+9
diff -rN -u old-haskell-hspec-discover/control new-haskell-hspec-discover/control
--- old-haskell-hspec-discover/control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hspec-discover/control	2015-04-16 19:34:18.339406571 +0000
@@ -0,0 +1,27 @@
+Source: haskell-hspec-discover
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Joachim Breitner <nomeata at debian.org>
+Priority: extra
+Section: haskell
+Build-Depends: debhelper (>= 9),
+ haskell-devscripts (>= 0.9),
+ cdbs,
+ ghc,
+ libghc-hspec-meta-dev (>= 1.12),
+Standards-Version: 3.9.6
+Homepage: http://hspec.github.io/hspec-discover.html
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-hspec-discover
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-hspec-discover
+
+Package: hspec-discover
+Architecture: any
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: Automatically discover and run Hspec tests
+ It is a useful convention to have one spec file for each source file. That way
+ it is straightforward to find the corresponding spec for a given piece of
+ code. But it requires error prone, and neither challenging nor interesting
+ boiler plate code. So it should be automated. Hspec provides a solution for
+ that. It makes creative use of GHC's support for custom preprocessors. The
+ developer only has to create a test driver that contains a single line.
+ .
+ A complete example is at https://github.com/hspec/hspec-example.
diff -rN -u old-haskell-hspec-discover/copyright new-haskell-hspec-discover/copyright
--- old-haskell-hspec-discover/copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hspec-discover/copyright	2015-04-16 19:34:18.339406571 +0000
@@ -0,0 +1,35 @@
+Just Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: hspec-discover
+Upstream-Contact: Simon Hengel <sol at typeful.net>
+Source: https://hackage.haskell.org/package/hspec-discover
+
+Files: *
+Copyright: (c) 2012-2014 Simon Hengel
+License: MIT
+
+Files: */debian
+Copyright: held by the contributors mentioned in debian/changelog
+License: MIT
+
+License: MIT
+Comment: Copyright (c) 2011-2014 Simon Hengel <sol at typeful.net>
+ Copyright (c) 2011-2012 Trystan Spangler <trystan.s at comcast.net>
+ Copyright (c) 2011-2011 Greg Weber <greg at gregweber.info>
+ .
+ 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.
diff -rN -u old-haskell-hspec-discover/hspec-discover.haskell-binaries new-haskell-hspec-discover/hspec-discover.haskell-binaries
--- old-haskell-hspec-discover/hspec-discover.haskell-binaries	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hspec-discover/hspec-discover.haskell-binaries	2015-04-16 19:34:18.339406571 +0000
@@ -0,0 +1 @@
+hspec-discover
diff -rN -u old-haskell-hspec-discover/rules new-haskell-hspec-discover/rules
--- old-haskell-hspec-discover/rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hspec-discover/rules	2015-04-16 19:34:18.339406571 +0000
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = yes
+DEB_CABAL_PACKAGE = hspec-discover
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff -rN -u old-haskell-hspec-discover/source/format new-haskell-hspec-discover/source/format
--- old-haskell-hspec-discover/source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hspec-discover/source/format	2015-04-16 19:34:18.339406571 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-hspec-discover/watch new-haskell-hspec-discover/watch
--- old-haskell-hspec-discover/watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hspec-discover/watch	2015-04-16 19:34:18.339406571 +0000
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/hspec-discover/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))




More information about the Pkg-haskell-commits mailing list