[Git][haskell-team/DHG_packages][master] Initial packaging of data-reify-0.6.3

Scott Talbert (@swt2c) gitlab at salsa.debian.org
Thu Jul 28 21:07:55 BST 2022



Scott Talbert pushed to branch master at Debian Haskell Group / DHG_packages


Commits:
2aee04d9 by Scott Talbert at 2022-07-28T16:05:48-04:00
Initial packaging of data-reify-0.6.3

- - - - -


7 changed files:

- + p/haskell-data-reify/debian/changelog
- + p/haskell-data-reify/debian/compat
- + p/haskell-data-reify/debian/control
- + p/haskell-data-reify/debian/copyright
- + p/haskell-data-reify/debian/rules
- + p/haskell-data-reify/debian/source/format
- + p/haskell-data-reify/debian/watch


Changes:

=====================================
p/haskell-data-reify/debian/changelog
=====================================
@@ -0,0 +1,5 @@
+haskell-data-reify (0.6.3-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Scott Talbert <swt at techie.net>  Thu, 28 Jul 2022 15:59:13 -0400


=====================================
p/haskell-data-reify/debian/compat
=====================================
@@ -0,0 +1 @@
+10


=====================================
p/haskell-data-reify/debian/control
=====================================
@@ -0,0 +1,82 @@
+Source: haskell-data-reify
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Scott Talbert <swt at techie.net>
+Priority: optional
+Section: haskell
+Build-Depends: debhelper (>= 10),
+ haskell-devscripts-minimal | haskell-devscripts (>= 0.13),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-hashable-dev,
+ libghc-hashable-prof,
+ libghc-unordered-containers-dev,
+ libghc-unordered-containers-prof,
+ libghc-base-compat-dev (>= 0.11),
+ libghc-base-compat-dev (<< 0.12),
+ libghc-base-compat-prof,
+ libghc-hspec-dev (>= 2),
+ libghc-hspec-dev (<< 3),
+ libghc-hspec-prof,
+Build-Depends-Indep: ghc-doc,
+ libghc-hashable-doc,
+ libghc-unordered-containers-doc,
+Standards-Version: 4.6.1
+Homepage: http://ku-fpg.github.io/software/data-reify/
+Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-data-reify
+Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-data-reify]
+X-Description: Reify a recursive data structure into an explicit graph.
+ 'data-reify' provided the ability to turn recursive structures into explicit
+ graphs.  Many (implicitly or explicitly) recursive data structure can be given
+ this ability, via a type class instance. This gives an alternative to using
+ 'Ref' for observable sharing.
+ .
+ Observable sharing in general is unsafe, so we use the IO monad to bound this
+ effect, but can be used safely even with 'unsafePerformIO' if some simple
+ conditions are met.  Typically this package will be used to tie the knot with
+ DSL's that depend of observable sharing, like Lava.
+ .
+ Providing an instance for 'MuRef' is the mechanism for allowing a structure to
+ be reified into a graph, and several examples of this are provided.
+ .
+ © 2009 Andy Gill; BSD3 license.
+
+Package: libghc-data-reify-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-data-reify-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-data-reify-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}


=====================================
p/haskell-data-reify/debian/copyright
=====================================
@@ -0,0 +1,38 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: data-reify
+Upstream-Contact: Andy Gill <andygill at ku.edu>
+Source: https://hackage.haskell.org/package/data-reify
+
+Files: *
+Copyright: (c) 2009 Andy Gill
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: BSD-3-clause
+
+License: BSD-3-clause
+ Copyright (c) 2009 Andy Gill
+ All rights reserved.
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+ 2. 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.
+ 3. The names of the authors may not be used to endorse or promote products
+    derived from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 AUTHORS 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.


=====================================
p/haskell-data-reify/debian/rules
=====================================
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = yes
+DEB_SETUP_BIN_NAME = debian/hlibrary.setup
+DEB_CABAL_PACKAGE = data-reify
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk


=====================================
p/haskell-data-reify/debian/source/format
=====================================
@@ -0,0 +1 @@
+3.0 (quilt)


=====================================
p/haskell-data-reify/debian/watch
=====================================
@@ -0,0 +1,2 @@
+version=3
+https://hackage.haskell.org/package/data-reify/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))



View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/2aee04d9f2aac70b8133ec2a8120b77d54076952

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/2aee04d9f2aac70b8133ec2a8120b77d54076952
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20220728/5679f934/attachment-0001.htm>


More information about the Pkg-haskell-commits mailing list