From: Clint Adams Date: Thu, 27 Oct 2016 22:35:53 +0000 (+0100) Subject: Import haskell-retry_0.7.4.1-3.debian.tar.xz X-Git-Tag: archive/raspbian/0.9.2.1-1+rpi1~1^2^2^2^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c3ef9b5749327aec0ffae2e89424373fb80b024e;p=haskell-retry.git Import haskell-retry_0.7.4.1-3.debian.tar.xz [dgit import tarball haskell-retry 0.7.4.1-3 haskell-retry_0.7.4.1-3.debian.tar.xz] --- c3ef9b5749327aec0ffae2e89424373fb80b024e diff --git a/changelog b/changelog new file mode 100644 index 0000000..159aab2 --- /dev/null +++ b/changelog @@ -0,0 +1,60 @@ +haskell-retry (0.7.4.1-3) unstable; urgency=medium + + * Upload to unstable as part of GHC 8 transition. + + -- Clint Adams Thu, 27 Oct 2016 18:35:53 -0400 + +haskell-retry (0.7.4.1-2) experimental; urgency=medium + + * Temporarily build-depend on ghc 8. + + -- Clint Adams Sun, 16 Oct 2016 16:25:22 -0400 + +haskell-retry (0.7.4.1-1) unstable; urgency=medium + + * New upstream release + + -- Clint Adams Thu, 04 Aug 2016 13:39:45 -0400 + +haskell-retry (0.7.4-1) unstable; urgency=medium + + * New upstream release + + -- Clint Adams Tue, 12 Jul 2016 17:10:13 -0400 + +haskell-retry (0.7.3-1) unstable; urgency=medium + + * New upstream release + + -- Joachim Breitner Wed, 01 Jun 2016 12:48:09 +0200 + +haskell-retry (0.7.1-1) unstable; urgency=medium + + [ Dmitry Bogatov ] + * Use secure (https) uri in Vcs-Git field in 'debian/control' + * Bump standards version to 3.9.8 (no changes needed) + + [ Clint Adams ] + * New upstream release + + -- Clint Adams Wed, 25 May 2016 12:39:45 -0400 + +haskell-retry (0.7.0.1-1) unstable; urgency=medium + + * New upstream release + + -- Clint Adams Sun, 10 Jan 2016 23:37:44 -0500 + +haskell-retry (0.6-2) unstable; urgency=medium + + * Switch Vcs-Git/Vcs-Browser headers to new location. + + -- Clint Adams Thu, 03 Dec 2015 14:55:00 -0500 + +haskell-retry (0.6-1) experimental; urgency=low + + * Initial release + * Depend on haskell-devscripts >= 0.10 to ensure that this package + builds against GHC in experimental + + -- Joachim Breitner Thu, 20 Aug 2015 10:28:36 +0200 diff --git a/compat b/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/compat @@ -0,0 +1 @@ +9 diff --git a/control b/control new file mode 100644 index 0000000..372122f --- /dev/null +++ b/control @@ -0,0 +1,93 @@ +Source: haskell-retry +Maintainer: Debian Haskell Group +Uploaders: + Joachim Breitner , +Priority: extra +Section: haskell +Build-Depends: + cdbs, + debhelper (>= 9), + ghc (>= 8), + ghc-prof, + haskell-devscripts (>= 0.13), + libghc-data-default-class-dev, + libghc-data-default-class-prof, + libghc-exceptions-dev (<< 0.9), + libghc-exceptions-dev (>= 0.5), + libghc-exceptions-prof, + libghc-random-dev (<< 1.2), + libghc-random-dev (>= 1), + libghc-random-prof, +Build-Depends-Indep: + ghc-doc, + libghc-data-default-class-doc, + libghc-exceptions-doc, + libghc-random-doc, +Standards-Version: 3.9.8 +Homepage: http://github.com/Soostone/retry +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git/tree/p/haskell-retry +Vcs-Git: https://anonscm.debian.org/git/pkg-haskell/DHG_packages.git +X-Description: Retry combinators for monadic actions that may fail + This package exposes combinators that can wrap arbitrary monadic actions. They + run the action and potentially retry running it with some configurable delay + for a configurable number of times. + . + The purpose is to make it easier to work with IO and especially network IO + actions that often experience temporary failure and warrant retrying of the + original action. For example, a database query may time out for a while, in + which case we should hang back for a bit and retry the query instead of simply + raising an exception. + +Package: libghc-retry-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-retry-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-retry-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} diff --git a/copyright b/copyright new file mode 100644 index 0000000..ee86e3f --- /dev/null +++ b/copyright @@ -0,0 +1,42 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: retry +Upstream-Contact: ozgun.ataman@soostone.com +Source: https://hackage.haskell.org/package/retry + +Files: * +Copyright: Ozgun Ataman, Soostone Inc +License: BSD3 + +Files: debian/* +Copyright: held by the contributors mentioned in debian/changelog +License: BSD3 + +License: BSD3 + All rights reserved. + . + 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 the name of Ozgun Ataman nor the names of other + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + . + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 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 COPYRIGHT + OWNER OR 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. diff --git a/rules b/rules new file mode 100755 index 0000000..1182c1d --- /dev/null +++ b/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +DEB_CABAL_PACKAGE = retry +DEB_DEFAULT_COMPILER = ghc + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/hlibrary.mk diff --git a/source/format b/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/watch b/watch new file mode 100644 index 0000000..4f51280 --- /dev/null +++ b/watch @@ -0,0 +1,2 @@ +version=3 +http://hackage.haskell.org/package/retry/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))