[Git][haskell-team/DHG_packages][master] add integer-roots

Clint Adams (@clint) gitlab at salsa.debian.org
Mon Oct 9 02:12:57 BST 2023



Clint Adams pushed to branch master at Debian Haskell Group / DHG_packages


Commits:
4d4f4ed1 by Clint Adams at 2023-10-08T21:12:40-04:00
add integer-roots

- - - - -


7 changed files:

- + p/haskell-integer-roots/debian/changelog
- + p/haskell-integer-roots/debian/compat
- + p/haskell-integer-roots/debian/control
- + p/haskell-integer-roots/debian/copyright
- + p/haskell-integer-roots/debian/rules
- + p/haskell-integer-roots/debian/source/format
- + p/haskell-integer-roots/debian/watch


Changes:

=====================================
p/haskell-integer-roots/debian/changelog
=====================================
@@ -0,0 +1,5 @@
+haskell-integer-roots (1.0.1.0-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Clint Adams <clint at debian.org>  Sun, 08 Oct 2023 21:07:52 -0400


=====================================
p/haskell-integer-roots/debian/compat
=====================================
@@ -0,0 +1 @@
+10


=====================================
p/haskell-integer-roots/debian/control
=====================================
@@ -0,0 +1,77 @@
+Source: haskell-integer-roots
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Clint Adams <clint 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,
+ libghc-doctest-dev (>= 0.8),
+ libghc-doctest-prof (>= 0.8),
+ libghc-smallcheck-dev (>= 1.2),
+ libghc-smallcheck-dev (<< 1.3),
+ libghc-smallcheck-prof (>= 1.2),
+ libghc-smallcheck-prof (<< 1.3),
+ libghc-tasty-dev (>= 0.10),
+ libghc-tasty-prof (>= 0.10),
+ libghc-tasty-hunit-dev (>= 0.9),
+ libghc-tasty-hunit-dev (<< 0.11),
+ libghc-tasty-hunit-prof (>= 0.9),
+ libghc-tasty-hunit-prof (<< 0.11),
+ libghc-tasty-quickcheck-dev (>= 0.9),
+ libghc-tasty-quickcheck-dev (<< 0.11),
+ libghc-tasty-quickcheck-prof (>= 0.9),
+ libghc-tasty-quickcheck-prof (<< 0.11),
+ libghc-tasty-smallcheck-dev (>= 0.8),
+ libghc-tasty-smallcheck-dev (<< 0.9),
+ libghc-tasty-smallcheck-prof (>= 0.8),
+ libghc-tasty-smallcheck-prof (<< 0.9),
+Build-Depends-Indep: ghc-doc,
+Standards-Version: 4.6.2
+Homepage: https://github.com/Bodigrim/integer-roots
+X-Description: integer roots and perfect powers
+ Calculating integer roots and testing perfect powers of arbitrary
+ precision.
+
+Package: libghc-integer-roots-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-integer-roots-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-integer-roots-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-integer-roots/debian/copyright
=====================================
@@ -0,0 +1,29 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: integer-roots
+Upstream-Contact: Andrew Lelechenko andrew dot lelechenko at gmail dot com
+Source: https://hackage.haskell.org/package/integer-roots
+
+Files: *
+Copyright: 2011 Daniel Fischer
+           2016-2020 Andrew Lelechenko.
+License: Expat
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+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.


=====================================
p/haskell-integer-roots/debian/rules
=====================================
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = yes
+DEB_CABAL_PACKAGE = integer-roots
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk


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


=====================================
p/haskell-integer-roots/debian/watch
=====================================
@@ -0,0 +1,2 @@
+version=4
+https://hackage.haskell.org/package/integer-roots/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/4d4f4ed1854d27337241836c45d7eca72b33a808

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/4d4f4ed1854d27337241836c45d7eca72b33a808
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/20231009/1cc49708/attachment-0001.htm>


More information about the Pkg-haskell-commits mailing list