[Git][haskell-team/DHG_packages][master] Initial packaging of kvitable-1.0.1.0
Scott Talbert (@swt2c)
gitlab at salsa.debian.org
Thu Jul 28 04:21:08 BST 2022
Scott Talbert pushed to branch master at Debian Haskell Group / DHG_packages
Commits:
e11bd7da by Scott Talbert at 2022-07-27T23:17:50-04:00
Initial packaging of kvitable-1.0.1.0
- - - - -
7 changed files:
- + p/haskell-kvitable/debian/changelog
- + p/haskell-kvitable/debian/compat
- + p/haskell-kvitable/debian/control
- + p/haskell-kvitable/debian/copyright
- + p/haskell-kvitable/debian/rules
- + p/haskell-kvitable/debian/source/format
- + p/haskell-kvitable/debian/watch
Changes:
=====================================
p/haskell-kvitable/debian/changelog
=====================================
@@ -0,0 +1,5 @@
+haskell-kvitable (1.0.1.0-1) unstable; urgency=low
+
+ * Initial release
+
+ -- Scott Talbert <swt at techie.net> Wed, 27 Jul 2022 23:11:43 -0400
=====================================
p/haskell-kvitable/debian/compat
=====================================
@@ -0,0 +1 @@
+10
=====================================
p/haskell-kvitable/debian/control
=====================================
@@ -0,0 +1,85 @@
+Source: haskell-kvitable
+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-lucid-dev (>= 2.9),
+ libghc-lucid-dev (<< 2.12),
+ libghc-lucid-prof,
+ libghc-microlens-dev (>= 0.4),
+ libghc-microlens-dev (<< 0.5),
+ libghc-microlens-prof,
+ libghc-prettyprinter-dev (>= 1.7),
+ libghc-prettyprinter-dev (<< 1.8),
+ libghc-prettyprinter-prof,
+Build-Depends-Indep: ghc-doc,
+ libghc-lucid-doc,
+ libghc-microlens-doc,
+ libghc-prettyprinter-doc,
+Standards-Version: 4.6.1
+Homepage: https://hackage.haskell.org/package/kvitable
+Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-kvitable
+Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-kvitable]
+X-Description: Key/Value Indexed Table container and formatting library
+ Allows creation of a table from a set of of Key+Value Indices.
+ This differs from the standard 'Map' structure in that the 'Map'
+ simply indexes by value but the KVI table indexes by a
+ heterogeneous list of keys along with their associated values.
+ This effectively creates an N-dimensional table, where
+ @N=Product(Count(Values[key]))@. The table contents can be sparse.
+ .
+ This library also provides the ability to format multi-dimensional
+ data in a table presentation. The table is automatically formatted
+ and can be output in a number of different styles (ascii, html,
+ etc.)
+ .
+ Multi-dimensional data is more difficult to represent than simple
+ two-dimensional data; this package provides the ability to select
+ which dimensions should be represented as sub-rows and which
+ dimensions should be represented as sub-columns. See the README
+ for examples
+
+Package: libghc-kvitable-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-kvitable-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-kvitable-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-kvitable/debian/copyright
=====================================
@@ -0,0 +1,27 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: kvitable
+Upstream-Contact: kquick at galois.com
+Source: https://hackage.haskell.org/package/kvitable
+
+Files: *
+Copyright: Kevin Quick, 2021-2022
+License: ISC
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: ISC
+
+License: ISC
+ Copyright (c) 2021 Kevin Quick
+ .
+ Permission to use, copy, modify, and/or distribute this software for any purpose
+ with or without fee is hereby granted, provided that the above copyright notice
+ and this permission notice appear in all copies.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
+ THIS SOFTWARE.
=====================================
p/haskell-kvitable/debian/rules
=====================================
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = no
+DEB_SETUP_BIN_NAME = debian/hlibrary.setup
+DEB_CABAL_PACKAGE = kvitable
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
=====================================
p/haskell-kvitable/debian/source/format
=====================================
@@ -0,0 +1 @@
+3.0 (quilt)
=====================================
p/haskell-kvitable/debian/watch
=====================================
@@ -0,0 +1,2 @@
+version=3
+https://hackage.haskell.org/package/kvitable/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/e11bd7daa6856651831c20407d308ecddddb54ac
--
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/e11bd7daa6856651831c20407d308ecddddb54ac
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/91f4a038/attachment-0001.htm>
More information about the Pkg-haskell-commits
mailing list