[Git][haskell-team/DHG_packages][master] indexed-traversable: Initial release
Ilias Tsitsimpis (@iliastsi)
gitlab at salsa.debian.org
Tue Jul 19 13:46:17 BST 2022
Ilias Tsitsimpis pushed to branch master at Debian Haskell Group / DHG_packages
Commits:
bf666fd6 by Ilias Tsitsimpis at 2022-07-19T15:44:45+03:00
indexed-traversable: Initial release
- - - - -
7 changed files:
- + p/haskell-indexed-traversable/debian/changelog
- + p/haskell-indexed-traversable/debian/compat
- + p/haskell-indexed-traversable/debian/control
- + p/haskell-indexed-traversable/debian/copyright
- + p/haskell-indexed-traversable/debian/rules
- + p/haskell-indexed-traversable/debian/source/format
- + p/haskell-indexed-traversable/debian/watch
Changes:
=====================================
p/haskell-indexed-traversable/debian/changelog
=====================================
@@ -0,0 +1,5 @@
+haskell-indexed-traversable (0.1.2-1) unstable; urgency=low
+
+ * Initial release
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org> Tue, 19 Jul 2022 15:28:24 +0300
=====================================
p/haskell-indexed-traversable/debian/compat
=====================================
@@ -0,0 +1 @@
+10
=====================================
p/haskell-indexed-traversable/debian/control
=====================================
@@ -0,0 +1,66 @@
+Source: haskell-indexed-traversable
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Ilias Tsitsimpis <iliastsi at debian.org>
+Priority: optional
+Section: haskell
+Rules-Requires-Root: no
+Build-Depends: debhelper (>= 10),
+ haskell-devscripts-minimal | haskell-devscripts (>= 0.13),
+ cdbs,
+ ghc,
+ ghc-prof,
+Build-Depends-Indep: ghc-doc,
+Standards-Version: 4.6.1
+Homepage: https://hackage.haskell.org/package/indexed-traversable
+Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-indexed-traversable
+Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git
+X-Description: Indexed Traversables for Haskell
+ This package provides three useful generalizations:
+ class Functor f => FunctorWithIndex i f | f -> i where
+ \ imap :: (i -> a -> b) -> f a -> f b
+ .
+ class Foldable f => FoldableWithIndex i f | f -> i where
+ \ ifoldMap :: Monoid m => (i -> a -> m) -> f a -> m
+ .
+ class (FunctorWithIndex i t, FoldableWithIndex i t, Traversable t) => TraversableWithIndex i t | t -> i where
+ \ itraverse :: Applicative f => (i -> a -> f b) -> t a -> f (t b)
+
+Package: libghc-indexed-traversable-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-indexed-traversable-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-indexed-traversable-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-indexed-traversable/debian/copyright
=====================================
@@ -0,0 +1,40 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: indexed-traversable
+Upstream-Contact: Oleg Grenrus <oleg.grenrus at iki.fi>
+Source: https://hackage.haskell.org/package/indexed-traversable
+
+Files: *
+Copyright: 2012-2016 Edward Kmett
+License: BSD-2-clause
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: BSD-2-clause
+
+License: BSD-2-clause
+ Copyright 2012-2016 Edward Kmett
+ .
+ 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.
+ .
+ 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 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-indexed-traversable/debian/rules
=====================================
@@ -0,0 +1,5 @@
+#!/usr/bin/make -f
+
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
=====================================
p/haskell-indexed-traversable/debian/source/format
=====================================
@@ -0,0 +1 @@
+3.0 (quilt)
=====================================
p/haskell-indexed-traversable/debian/watch
=====================================
@@ -0,0 +1,2 @@
+version=4
+https://hackage.haskell.org/package/indexed-traversable/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/bf666fd67214825034b8c35ff6696d24f99513d3
--
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/bf666fd67214825034b8c35ff6696d24f99513d3
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/20220719/d4318d1b/attachment-0001.htm>
More information about the Pkg-haskell-commits
mailing list