[DHG_packages] 02/10: Remove type-level

Joachim Breitner nomeata at moszumanska.debian.org
Tue Aug 11 09:29:25 UTC 2015


This is an automated email from the git hooks/post-receive script.

nomeata pushed a commit to branch master
in repository DHG_packages.

commit 18fb9e4b4dcb3a7741824fd94d6fab3dcaf30b04
Author: Joachim Breitner <mail at joachim-breitner.de>
Date:   Tue Aug 11 10:17:09 2015 +0200

    Remove type-level
    
    as it does not build and is not in the package plan.
---
 p/haskell-type-level/debian/changelog              | 55 --------------
 p/haskell-type-level/debian/compat                 |  1 -
 p/haskell-type-level/debian/control                | 86 ----------------------
 p/haskell-type-level/debian/copyright              | 36 ---------
 .../patches/00-prune-useless-aliases-docs.diff     | 25 -------
 p/haskell-type-level/debian/patches/series         |  1 -
 p/haskell-type-level/debian/rules                  |  6 --
 p/haskell-type-level/debian/source/format          |  1 -
 p/haskell-type-level/debian/watch                  |  2 -
 9 files changed, 213 deletions(-)

diff --git a/p/haskell-type-level/debian/changelog b/p/haskell-type-level/debian/changelog
deleted file mode 100644
index 504685c..0000000
--- a/p/haskell-type-level/debian/changelog
+++ /dev/null
@@ -1,55 +0,0 @@
-haskell-type-level (0.2.4-8) UNRELEASED; urgency=low
-
-  * Adjust watch file to new hackage layout
-
- -- Joachim Breitner <nomeata at debian.org>  Sat, 05 Oct 2013 18:21:59 +0200
-
-haskell-type-level (0.2.4-7) unstable; urgency=low
-
-  * Enable compat level 9
-  * Use substvars for Haskell description blurbs
-
- -- Joachim Breitner <nomeata at debian.org>  Fri, 24 May 2013 12:52:19 +0200
-
-haskell-type-level (0.2.4-6) experimental; urgency=low
-
-  * Depend on haskell-devscripts 0.8.13 to ensure this packages is built
-    against experimental
-  * Bump standards version, no change
-
- -- Joachim Breitner <nomeata at debian.org>  Sun, 14 Oct 2012 12:02:18 +0200
-
-haskell-type-level (0.2.4-5) unstable; urgency=low
-
-  * Remove doc-base file, avoids squeeze → wheezy upgrade problems
-
- -- Joachim Breitner <nomeata at debian.org>  Sat, 19 May 2012 22:53:51 +0200
-
-haskell-type-level (0.2.4-4) unstable; urgency=low
-
-  * Sourceful upload to rebuild documentation package
-
- -- Iain Lane <laney at debian.org>  Thu, 23 Feb 2012 11:17:27 +0000
-
-haskell-type-level (0.2.4-3) unstable; urgency=low
-
-  * Build-Depend on ghc-ghci, to only attempt builds on architectures where
-    template haskell is available.
-
- -- Joachim Breitner <nomeata at debian.org>  Tue, 05 Apr 2011 20:27:32 +0530
-
-haskell-type-level (0.2.4-2) unstable; urgency=low
-
-  [ Marco Silva ]
-  * Use ghc instead of ghc6
-
-  [ Joachim Breitner ]
-  * Bump standards version, no change
-
- -- Joachim Breitner <nomeata at debian.org>  Sun, 03 Apr 2011 10:09:37 +0530
-
-haskell-type-level (0.2.4-1) unstable; urgency=low
-
-  * Initial debian package. Closes: #574102.
-
- -- Erik de Castro Lopo <erikd at mega-nerd.com>  Tue, 30 Mar 2010 20:26:13 +1100
diff --git a/p/haskell-type-level/debian/compat b/p/haskell-type-level/debian/compat
deleted file mode 100644
index ec63514..0000000
--- a/p/haskell-type-level/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-9
diff --git a/p/haskell-type-level/debian/control b/p/haskell-type-level/debian/control
deleted file mode 100644
index 86be85c..0000000
--- a/p/haskell-type-level/debian/control
+++ /dev/null
@@ -1,86 +0,0 @@
-Source: haskell-type-level
-Section: haskell
-Priority: extra
-Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
-Uploaders: Erik de Castro Lopo <erikd at mega-nerd.com>
-Build-Depends: debhelper (>= 9)
-  , cdbs
-  , haskell-devscripts (>= 0.8.15)
-  , ghc
-  , ghc-prof
-  , libghc-syb-dev
-  , libghc-syb-prof
-  , ghc-ghci
-Build-Depends-Indep: ghc-doc
-  , libghc-syb-doc
-Standards-Version: 3.9.4
-Homepage: http://hackage.haskell.org/package/type-level
-Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-type-level
-Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-type-level
-
-Package: libghc-type-level-dev
-Architecture: any
-Depends: ${haskell:Depends}
-  , ${shlibs:Depends}
-  , ${misc:Depends}
-Recommends: ${haskell:Recommends}
-Suggests: ${haskell:Suggests}
-Provides: ${haskell:Provides}
-Description: A Haskell library for type-level programming${haskell:ShortBlurb}
- A haskell library for performing computations on the type-level. Type-level
- functions are implemented using functional dependencies of multi parameter
- type classes. To date, Booleans and Numerals (Naturals and Positives) are
- supported. With regard to Numerals, there is support for common arithmetic
- operations (addition, substraction, multiplication, division, exponientation,
- logarithm, maximum, comparison, GCD) over natural numbers (using a decimal
- representation to make compile-time errors friendlier). Although making use
- of type-level computations might seem devious and obfuscated at first sight,
- it is indeed useful in practice to implement lightweight dependent types
- such as number-parameterized types (e.g. an array type parameterized by the
- array's size or a modular group type Zn parameterized by the modulus).
- .
- ${haskell:Blurb}
-
-Package: libghc-type-level-prof
-Architecture: any
-Depends: ${haskell:Depends}
-  , ${shlibs:Depends}
-  , ${misc:Depends}
-Recommends: ${haskell:Recommends}
-Suggests: ${haskell:Suggests}
-Provides: ${haskell:Provides}
-Description: Profiling libraries for type-level programming in Haskell${haskell:ShortBlurb}
- A haskell library for performing computations on the type-level. Type-level
- functions are implemented using functional dependencies of multi parameter
- type classes. To date, Booleans and Numerals (Naturals and Positives) are
- supported. With regard to Numerals, there is support for common arithmetic
- operations (addition, substraction, multiplication, division, exponientation,
- logarithm, maximum, comparison, GCD) over natural numbers (using a decimal
- representation to make compile-time errors friendlier). Although making use
- of type-level computations might seem devious and obfuscated at first sight,
- it is indeed useful in practice to implement lightweight dependent types
- such as number-parameterized types (e.g. an array type parameterized by the
- array's size or a modular group type Zn parameterized by the modulus).
- .
- ${haskell:Blurb}
-
-Package: libghc-type-level-doc
-Section: doc
-Architecture: all
-Depends: ${misc:Depends}, ${haskell:Depends}
-Recommends: ${haskell:Recommends}
-Suggests: ${haskell:Suggests}
-Description: Documentation for type-level programming in Haskell${haskell:ShortBlurb}
- A haskell library for performing computations on the type-level. Type-level
- functions are implemented using functional dependencies of multi parameter
- type classes. To date, Booleans and Numerals (Naturals and Positives) are
- supported. With regard to Numerals, there is support for common arithmetic
- operations (addition, substraction, multiplication, division, exponientation,
- logarithm, maximum, comparison, GCD) over natural numbers (using a decimal
- representation to make compile-time errors friendlier). Although making use
- of type-level computations might seem devious and obfuscated at first sight,
- it is indeed useful in practice to implement lightweight dependent types
- such as number-parameterized types (e.g. an array type parameterized by the
- array's size or a modular group type Zn parameterized by the modulus).
- .
- ${haskell:Blurb}
diff --git a/p/haskell-type-level/debian/copyright b/p/haskell-type-level/debian/copyright
deleted file mode 100644
index d80ebb5..0000000
--- a/p/haskell-type-level/debian/copyright
+++ /dev/null
@@ -1,36 +0,0 @@
-Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
-Name: type-level
-Maintainer: Alfonso Acosta <alfonso.acosta at gmail.com>
-Source: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/type-level
-
-Copyright: 2008 Alfonso Acosta, Oleg Kiselyov, Wolfgang Jeltsch and
-   SAM Group at the School of Information and Communication  Technology,
-   (Royal Institute of Technology, Stockholm, Sweden)
-License: BSD
-
-  Copyright (c) 2008 Alfonso Acosta, Oleg Kiselyov, Wolfgang Jeltsch and
-   SAM Group at the School of Information and Communication  Technology,
-   (Royal Institute of Technology, Stockholm, Sweden)
-  All rights reserved.
-
-  Redistribution and use in source and binary forms, with or without
-  modification, are permitted provided that the following conditions are met:
-      * Redistributions of source code must retain the above copyright
-        notice, this list of conditions and the following disclaimer.
-      * 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.
-      * Neither the name of The ForSyDe Team 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 ``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 HOLDERS TEAM 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.
diff --git a/p/haskell-type-level/debian/patches/00-prune-useless-aliases-docs.diff b/p/haskell-type-level/debian/patches/00-prune-useless-aliases-docs.diff
deleted file mode 100644
index 1a154ae..0000000
--- a/p/haskell-type-level/debian/patches/00-prune-useless-aliases-docs.diff
+++ /dev/null
@@ -1,25 +0,0 @@
-Description: The module Data.TypeLevel.Num.Aliases is generated using
- Template Haskell and contains a huge number of stub definitions with
- no real documentation. The resulting HTML file is nearly 10 megabytes
- in size.
- .
- By enabling the Haddock prune option we hide these useless
- documentation stubs.
- .
- This patch has been emailed to the upstream author, but no action has
- yet been taken.
-Forwarded: In private email to upstream author.
-Author: Erik de Castro Lopo <erikd at mega-nerd.com>
-Last-Update: 2010-04-05
-
-Index: haskell-type-level-0.2.4/src/Data/TypeLevel/Num/Aliases.hs
-===================================================================
---- haskell-type-level-0.2.4.orig/src/Data/TypeLevel/Num/Aliases.hs
-+++ haskell-type-level-0.2.4/src/Data/TypeLevel/Num/Aliases.hs
-@@ -1,5 +1,6 @@
- {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
- {-# LANGUAGE CPP, TemplateHaskell #-}
-+{-# OPTIONS_HADDOCK prune #-}
- -----------------------------------------------------------------------------
- -- |
- -- Module      :  Data.TypeLevel.Num.Aliases
diff --git a/p/haskell-type-level/debian/patches/series b/p/haskell-type-level/debian/patches/series
deleted file mode 100644
index e07c1e4..0000000
--- a/p/haskell-type-level/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-00-prune-useless-aliases-docs.diff
diff --git a/p/haskell-type-level/debian/rules b/p/haskell-type-level/debian/rules
deleted file mode 100755
index f2277cb..0000000
--- a/p/haskell-type-level/debian/rules
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/usr/bin/make -f
-
-DEB_BUILD_DEPENDENCIES = build-arch
-
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/hlibrary.mk
diff --git a/p/haskell-type-level/debian/source/format b/p/haskell-type-level/debian/source/format
deleted file mode 100644
index 163aaf8..0000000
--- a/p/haskell-type-level/debian/source/format
+++ /dev/null
@@ -1 +0,0 @@
-3.0 (quilt)
diff --git a/p/haskell-type-level/debian/watch b/p/haskell-type-level/debian/watch
deleted file mode 100644
index 73716c3..0000000
--- a/p/haskell-type-level/debian/watch
+++ /dev/null
@@ -1,2 +0,0 @@
-version=3
-http://hackage.haskell.org/package/type-level/distro-monitor .*-([0-9\.]+).(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-haskell/DHG_packages.git



More information about the Pkg-haskell-commits mailing list