[Git][haskell-team/DHG_packages][master] Initial packaging of semirings-0.6
Scott Talbert (@swt2c)
gitlab at salsa.debian.org
Thu Jul 28 01:47:44 BST 2022
Scott Talbert pushed to branch master at Debian Haskell Group / DHG_packages
Commits:
bb7ba8ea by Scott Talbert at 2022-07-27T20:45:01-04:00
Initial packaging of semirings-0.6
- - - - -
7 changed files:
- + p/haskell-semirings/debian/changelog
- + p/haskell-semirings/debian/compat
- + p/haskell-semirings/debian/control
- + p/haskell-semirings/debian/copyright
- + p/haskell-semirings/debian/rules
- + p/haskell-semirings/debian/source/format
- + p/haskell-semirings/debian/watch
Changes:
=====================================
p/haskell-semirings/debian/changelog
=====================================
@@ -0,0 +1,5 @@
+haskell-semirings (0.6-1) unstable; urgency=low
+
+ * Initial release
+
+ -- Scott Talbert <swt at techie.net> Wed, 27 Jul 2022 20:40:09 -0400
=====================================
p/haskell-semirings/debian/compat
=====================================
@@ -0,0 +1 @@
+10
=====================================
p/haskell-semirings/debian/control
=====================================
@@ -0,0 +1,85 @@
+Source: haskell-semirings
+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-base-compat-batteries-dev,
+ libghc-base-compat-batteries-prof,
+ libghc-hashable-dev (>= 1.1),
+ libghc-hashable-dev (<< 1.4),
+ libghc-hashable-prof,
+ libghc-unordered-containers-dev (>= 0.2),
+ libghc-unordered-containers-dev (<< 0.3),
+ libghc-unordered-containers-prof,
+Build-Depends-Indep: ghc-doc,
+ libghc-base-compat-batteries-doc,
+ libghc-hashable-doc,
+ libghc-unordered-containers-doc,
+Standards-Version: 4.6.1
+Homepage: https://github.com/chessai/semirings
+Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-semirings
+Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-semirings]
+X-Description: two monoids as one, in holy haskimony
+ Haskellers are usually familiar with monoids and semigroups. A monoid has an
+ appending operation `<>` (or `mappend`), and an identity element, `mempty`.
+ A semigroup has an appending `<>` operation, but does not require a `mempty`
+ element.
+ .
+ A Semiring has two appending operations, `plus` and `times`, and two
+ respective identity elements, `zero` and `one`.
+ .
+ More formally, a Semiring R is a set equipped with two binary relations `+`
+ and `*`, such that:
+ .
+ (R,+) is a commutative monoid with identity element 0,
+ .
+ (R,*) is a monoid with identity element 1,
+ .
+ (*) left and right distributes over addition, and
+ .
+ multiplication by '0' annihilates R.
+
+Package: libghc-semirings-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-semirings-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-semirings-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-semirings/debian/copyright
=====================================
@@ -0,0 +1,26 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: semirings
+Upstream-Contact: chessai <chessai1996 at gmail.com>
+Source: https://hackage.haskell.org/package/semirings
+
+Files: *
+Copyright: Copyright (C) 2018 chessai
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: BSD-3-clause
+
+License: BSD-3-clause
+ Copyright 2019 chessai
+ Copyright 2019 Andrew Lelechenko
+ .
+ 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. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT HOLDER OR CONTRIBUTORS 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-semirings/debian/rules
=====================================
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = yes
+DEB_SETUP_BIN_NAME = debian/hlibrary.setup
+DEB_CABAL_PACKAGE = semirings
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
=====================================
p/haskell-semirings/debian/source/format
=====================================
@@ -0,0 +1 @@
+3.0 (quilt)
=====================================
p/haskell-semirings/debian/watch
=====================================
@@ -0,0 +1,2 @@
+version=3
+https://hackage.haskell.org/package/semirings/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/bb7ba8ea1b2a37e763a2b1b915f308d573c58cb3
--
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/bb7ba8ea1b2a37e763a2b1b915f308d573c58cb3
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/fe415c79/attachment-0001.htm>
More information about the Pkg-haskell-commits
mailing list