[Pkg-haskell-commits] darcs: haskell-auto-update: Initial check-in

Joachim Breitner mail at joachim-breitner.de
Sun Dec 21 18:28:30 UTC 2014


Sun Dec 21 15:34:28 UTC 2014  Joachim Breitner <mail at joachim-breitner.de>
  * Initial check-in

    A ./changelog
    A ./compat
    A ./control
    A ./copyright
    A ./rules
    A ./source/
    A ./source/format
    A ./watch

Sun Dec 21 15:34:28 UTC 2014  Joachim Breitner <mail at joachim-breitner.de>
  * Initial check-in
diff -rN -u old-haskell-auto-update/changelog new-haskell-auto-update/changelog
--- old-haskell-auto-update/changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-auto-update/changelog	2014-12-21 18:28:30.664003211 +0000
@@ -0,0 +1,5 @@
+haskell-auto-update (0.1.2-1) UNRELEASED; urgency=low
+
+  * Debianization generated by cabal-debian
+
+ -- Joachim Breitner <nomeata at debian.org>  Sun, 21 Dec 2014 16:31:08 +0100
diff -rN -u old-haskell-auto-update/compat new-haskell-auto-update/compat
--- old-haskell-auto-update/compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-auto-update/compat	2014-12-21 18:28:30.664003211 +0000
@@ -0,0 +1 @@
+9
diff -rN -u old-haskell-auto-update/control new-haskell-auto-update/control
--- old-haskell-auto-update/control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-auto-update/control	2014-12-21 18:28:30.664003211 +0000
@@ -0,0 +1,65 @@
+Source: haskell-auto-update
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Priority: extra
+Section: haskell
+Build-Depends: debhelper (>= 7.0),
+ haskell-devscripts (>= 0.9),
+ cdbs,
+ ghc,
+ ghc-prof,
+Build-Depends-Indep: ghc-doc,
+Standards-Version: 3.9.5
+Homepage: http://hackage.haskell.org/package/auto-update
+X-Description: Efficiently run periodic, on-demand actions
+ A common problem is the desire to have an action run at a scheduled interval,
+ but only if it is needed. For example, instead of having every web request
+ result in a new getCurrentTime call, we'd like to have a single worker
+ thread run every second, updating an IORef. However, if the request
+ frequency is less than once per second, this is a pessimization, and worse,
+ kills idle GC.
+ .
+ This library allows you to define actions which will either be performed by a
+ dedicated thread or, in times of low volume, will be executed by the calling
+ thread.
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-auto-update
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-auto-update
+
+Package: libghc-auto-update-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-auto-update-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-auto-update-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 -rN -u old-haskell-auto-update/copyright new-haskell-auto-update/copyright
--- old-haskell-auto-update/copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-auto-update/copyright	2014-12-21 18:28:30.664003211 +0000
@@ -0,0 +1,29 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+
+Files: *
+Copyright: 2014 Michael Snoyman
+License: MIT
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: MIT
+
+License: MIT
+ 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-auto-update/rules new-haskell-auto-update/rules
--- old-haskell-auto-update/rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-auto-update/rules	2014-12-21 18:28:30.664003211 +0000
@@ -0,0 +1,5 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
+
diff -rN -u old-haskell-auto-update/source/format new-haskell-auto-update/source/format
--- old-haskell-auto-update/source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-auto-update/source/format	2014-12-21 18:28:30.664003211 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-auto-update/watch new-haskell-auto-update/watch
--- old-haskell-auto-update/watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-auto-update/watch	2014-12-21 18:28:30.664003211 +0000
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/auto-update/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))




More information about the Pkg-haskell-commits mailing list