[DHG_packages] 02/02: random-fu: 0.2.6.2

Clint Adams clint at moszumanska.debian.org
Thu Aug 13 12:29:01 UTC 2015


This is an automated email from the git hooks/post-receive script.

clint pushed a commit to branch master
in repository DHG_packages.

commit e473ceca079a1fa69cf67b90a361cc0132f5e2da
Author: Clint Adams <clint at debian.org>
Date:   Thu Aug 13 14:28:52 2015 +0200

    random-fu: 0.2.6.2
---
 p/haskell-random-fu/debian/changelog     |  5 ++
 p/haskell-random-fu/debian/compat        |  1 +
 p/haskell-random-fu/debian/control       | 99 ++++++++++++++++++++++++++++++++
 p/haskell-random-fu/debian/copyright     | 32 +++++++++++
 p/haskell-random-fu/debian/rules         |  6 ++
 p/haskell-random-fu/debian/source/format |  1 +
 p/haskell-random-fu/debian/watch         |  2 +
 7 files changed, 146 insertions(+)

diff --git a/p/haskell-random-fu/debian/changelog b/p/haskell-random-fu/debian/changelog
new file mode 100644
index 0000000..d964a3a
--- /dev/null
+++ b/p/haskell-random-fu/debian/changelog
@@ -0,0 +1,5 @@
+haskell-random-fu (0.2.6.2-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Clint Adams <clint at debian.org>  Thu, 13 Aug 2015 14:20:20 +0200
diff --git a/p/haskell-random-fu/debian/compat b/p/haskell-random-fu/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/p/haskell-random-fu/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/p/haskell-random-fu/debian/control b/p/haskell-random-fu/debian/control
new file mode 100644
index 0000000..727f473
--- /dev/null
+++ b/p/haskell-random-fu/debian/control
@@ -0,0 +1,99 @@
+Source: haskell-random-fu
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Clint Adams <clint at debian.org>
+Build-Depends: debhelper (>= 9)
+  , cdbs
+  , haskell-devscripts (>= 0.8.15)
+  , ghc
+  , ghc-prof
+  , libghc-erf-dev
+  , libghc-erf-prof
+  , libghc-erf-native-dev
+  , libghc-erf-native-prof
+  , libghc-log-domain-dev (>= 0.9)
+  , libghc-log-domain-dev (<< 1.0)
+  , libghc-log-domain-prof
+  , libghc-math-functions-dev
+  , libghc-math-functions-prof
+  , libghc-monad-loops-dev (>= 0.3.0.1)
+  , libghc-monad-loops-prof
+  , libghc-mtl-dev (>= 1)
+  , libghc-mtl-dev (<< 3)
+  , libghc-mtl-prof
+  , libghc-random-shuffle-dev
+  , libghc-random-shuffle-prof
+  , libghc-random-source-dev (>= 0.3)
+  , libghc-random-source-dev (<< 0.3)
+  , libghc-random-source-prof
+  , libghc-rvar-dev (>= 0.2)
+  , libghc-rvar-dev (<< 0.3)
+  , libghc-rvar-prof
+  , libghc-syb-dev
+  , libghc-syb-prof
+  , ghc-ghci
+  , libghc-vector-dev (>= 0.7)
+  , libghc-vector-prof
+Build-Depends-Indep: ghc-doc
+  , libghc-erf-doc
+  , libghc-erf-native-doc
+  , libghc-log-domain-doc
+  , libghc-math-functions-doc
+  , libghc-monad-loops-doc
+  , libghc-mtl-doc
+  , libghc-random-shuffle-doc
+  , libghc-random-source-doc
+  , libghc-rvar-doc
+  , libghc-syb-doc
+  , libghc-vector-doc
+Standards-Version: 3.9.6
+Homepage: http://hackage.haskell.org/package/random-fu
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-random-fu
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-random-fu
+X-Description: random number generation
+ Random number generation based on modeling random variables in two
+ complementary ways: first, by the parameters of standard mathematical
+ distributions and, second, by an abstract type (RVar) which can be
+ composed and manipulated monadically and sampled in either monadic
+ or "pure" styles.
+ .
+ The primary purpose of this library is to support defining and
+ sampling a wide variety of high quality random variables. Quality is
+ prioritized over speed, but performance is an important goal too.
+
+Package: libghc-random-fu-dev
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${shlibs:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-random-fu-prof
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-random-fu-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${haskell:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
diff --git a/p/haskell-random-fu/debian/copyright b/p/haskell-random-fu/debian/copyright
new file mode 100644
index 0000000..454e1b4
--- /dev/null
+++ b/p/haskell-random-fu/debian/copyright
@@ -0,0 +1,32 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: flexible-defaults
+Upstream-Contact: James Cook <mokus at deepbondi.net>
+Source: http://hackage.haskell.org/package/random-fu
+
+Files: *
+Copyright: James Cook
+License: public-domain
+
+Files: debian/*
+Copyright: 2015 Clint Adams
+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.
diff --git a/p/haskell-random-fu/debian/rules b/p/haskell-random-fu/debian/rules
new file mode 100644
index 0000000..d730346
--- /dev/null
+++ b/p/haskell-random-fu/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+# DEB_ENABLE_TESTS = yes
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff --git a/p/haskell-random-fu/debian/source/format b/p/haskell-random-fu/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/p/haskell-random-fu/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/p/haskell-random-fu/debian/watch b/p/haskell-random-fu/debian/watch
new file mode 100644
index 0000000..8156417
--- /dev/null
+++ b/p/haskell-random-fu/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/random-fu/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-haskell/DHG_packages.git



More information about the Pkg-haskell-commits mailing list