Commit 7b0baced authored by Ilias Tsitsimpis's avatar Ilias Tsitsimpis
Browse files

wcwidth: Initial release of v0.0.2

This is a dependency for newer versions of haskell-tasty (>= 1.1.0.2).
parent 720deba0
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
haskell-wcwidth (0.0.2-1) unstable; urgency=low

  * Initial release (Closes: #910361)

 -- Ilias Tsitsimpis <iliastsi@debian.org>  Fri, 05 Oct 2018 13:10:27 +0300
+1 −0
Original line number Diff line number Diff line
10
+59 −0
Original line number Diff line number Diff line
Source: haskell-wcwidth
Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
Uploaders: Ilias Tsitsimpis <iliastsi@debian.org>
Priority: optional
Section: haskell
Build-Depends: debhelper (>= 10),
 haskell-devscripts-minimal | haskell-devscripts (>= 0.9),
 cdbs,
 ghc,
 ghc-prof,
Build-Depends-Indep: ghc-doc,
Standards-Version: 4.2.1
Homepage: https://github.com/solidsnack/wcwidth/
Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-wcwidth
Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-wcwidth]
X-Description: bindings for system's native wcwidth
 This package provides the wcwidth function which can be used to learn, for
 most of Unicode, how wide the individual Char code points will come out on the
 terminal.

Package: libghc-wcwidth-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-wcwidth-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-wcwidth-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}
+41 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: wcwidth
Upstream-Contact: oss@solidsnack.be
Source: https://hackage.haskell.org/package/wcwidth

Files: *
Copyright: Copyright 2009 Jason Dusek
License: BSD-3-clause

Files: debian/*
Copyright: held by the contributors mentioned in debian/changelog
License: BSD-3-clause

License: BSD-3-clause
 .
  Copyright 2009 Jason Dusek.
 .
  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.
 .
 .  Names of the contributors to this software may not be used to endorse or
    promote products derived from this software without specific prior written
    permission.
 .
  This software is provided by the 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 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.
+6 −0
Original line number Diff line number Diff line
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS=hardening=+all

include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
Loading