[Pkg-haskell-commits] darcs: haskell-knob: Upstream release of haskell-knob_0.1.1

John Millikin jmillikin at gmail.com
Sat May 26 15:54:24 UTC 2012


Fri May 25 01:14:26 UTC 2012  John Millikin <jmillikin at gmail.com>
  * Upstream release of haskell-knob_0.1.1
  Ignore-this: 6d2d589ad91b3af008766ca288712986

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

Fri May 25 01:14:26 UTC 2012  John Millikin <jmillikin at gmail.com>
  * Upstream release of haskell-knob_0.1.1
  Ignore-this: 6d2d589ad91b3af008766ca288712986
diff -rN -u old-haskell-knob//changelog new-haskell-knob//changelog
--- old-haskell-knob//changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-knob//changelog	2012-05-26 15:54:24.170323429 +0000
@@ -0,0 +1,5 @@
+haskell-knob (0.1.1-1) unstable; urgency=low
+
+  * Initial release. (closes: #674417)
+
+ -- John Millikin <jmillikin at gmail.com>  Thu, 24 May 2012 18:05:03 -0700
diff -rN -u old-haskell-knob//compat new-haskell-knob//compat
--- old-haskell-knob//compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-knob//compat	2012-05-26 15:54:24.170323429 +0000
@@ -0,0 +1 @@
+7
diff -rN -u old-haskell-knob//control new-haskell-knob//control
--- old-haskell-knob//control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-knob//control	2012-05-26 15:54:24.174322906 +0000
@@ -0,0 +1,70 @@
+Source: haskell-knob
+Priority: optional
+Section: haskell
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: John Millikin <jmillikin at gmail.com>
+DM-Upload-Allowed: yes
+Build-Depends:
+    cdbs
+  , debhelper (>= 7.0)
+  , haskell-devscripts (>= 0.8)
+  , ghc (>= 6.12)
+  , ghc-prof
+  , libghc-transformers-dev (>= 0.2)
+  , libghc-transformers-prof
+Build-Depends-Indep:
+    ghc-doc
+  , haddock
+  , libghc-transformers-doc
+Standards-Version: 3.9.3
+Homepage: https://john-millikin.com/software/knob/
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-knob
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-knob
+
+Package: libghc-knob-dev
+Architecture: any
+Depends:
+    ${haskell:Depends}
+  , ${misc:Depends}
+  , ${shlibs:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Haskell library for memory-backed handles
+ Create memory-backed Handles, referencing virtual files. This is mostly useful
+ for testing Handle-based APIs without having to interact with the filesystem.
+ .
+ This package provides a library written in the Haskell programming
+ language. See http://www.haskell.org/ for more information on Haskell.
+
+Package: libghc-knob-prof
+Architecture: any
+Depends:
+    ${haskell:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Haskell library for memory-backed handles; profiling libraries
+ Create memory-backed Handles, referencing virtual files. This is mostly useful
+ for testing Handle-based APIs without having to interact with the filesystem.
+ .
+ This package provides a library written in the Haskell programming language,
+ compiled for profiling. See http://www.haskell.org/ for more information on
+ Haskell.
+
+Package: libghc-knob-doc
+Section: doc
+Architecture: all
+Depends:
+    ${haskell:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: Haskell library for memory-backed handles; documentation
+ Create memory-backed Handles, referencing virtual files. This is mostly useful
+ for testing Handle-based APIs without having to interact with the filesystem.
+ .
+ This package provides documentation for a library written in the Haskell
+ programming language. See http://www.haskell.org/ for more information on
+ Haskell.
diff -rN -u old-haskell-knob//copyright new-haskell-knob//copyright
--- old-haskell-knob//copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-knob//copyright	2012-05-26 15:54:24.174322906 +0000
@@ -0,0 +1,28 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: knob
+Upstream-Contact: John Millikin <jmillikin at gmail.com>
+Source: https://john-millikin.com/software/knob/
+
+Files: *
+Copyright: 2011-2012 John Millikin
+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.
diff -rN -u old-haskell-knob//rules new-haskell-knob//rules
--- old-haskell-knob//rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-knob//rules	2012-05-26 15:54:24.174322906 +0000
@@ -0,0 +1,3 @@
+#!/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-knob//source/format new-haskell-knob//source/format
--- old-haskell-knob//source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-knob//source/format	2012-05-26 15:54:24.174322906 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-knob//watch new-haskell-knob//watch
--- old-haskell-knob//watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-knob//watch	2012-05-26 15:54:24.174322906 +0000
@@ -0,0 +1,2 @@
+version=3
+https://john-millikin.com/downloads/knob_(.+)\.tar\.xz debian uupdate





More information about the Pkg-haskell-commits mailing list