diff options
| -rw-r--r-- | p/haskell-zxcvbn-c/debian/changelog | 5 | ||||
| -rw-r--r-- | p/haskell-zxcvbn-c/debian/compat | 1 | ||||
| -rw-r--r-- | p/haskell-zxcvbn-c/debian/control | 61 | ||||
| -rw-r--r-- | p/haskell-zxcvbn-c/debian/copyright | 48 | ||||
| -rwxr-xr-x | p/haskell-zxcvbn-c/debian/rules | 7 | ||||
| -rw-r--r-- | p/haskell-zxcvbn-c/debian/source/format | 1 | ||||
| -rw-r--r-- | p/haskell-zxcvbn-c/debian/watch | 2 |
7 files changed, 125 insertions, 0 deletions
diff --git a/p/haskell-zxcvbn-c/debian/changelog b/p/haskell-zxcvbn-c/debian/changelog new file mode 100644 index 000000000..124f83860 --- /dev/null +++ b/p/haskell-zxcvbn-c/debian/changelog @@ -0,0 +1,5 @@ +haskell-zxcvbn-c (1.0.1-1) UNRELEASED; urgency=low + + * Initial release + + -- Sean Whitton <spwhitton@spwhitton.name> Sun, 25 Sep 2016 19:54:09 -0700 diff --git a/p/haskell-zxcvbn-c/debian/compat b/p/haskell-zxcvbn-c/debian/compat new file mode 100644 index 000000000..f599e28b8 --- /dev/null +++ b/p/haskell-zxcvbn-c/debian/compat @@ -0,0 +1 @@ +10 diff --git a/p/haskell-zxcvbn-c/debian/control b/p/haskell-zxcvbn-c/debian/control new file mode 100644 index 000000000..015b5e98d --- /dev/null +++ b/p/haskell-zxcvbn-c/debian/control @@ -0,0 +1,61 @@ +Source: haskell-zxcvbn-c +Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org> +Uploaders: Sean Whitton <spwhitton@spwhitton.name> +Priority: extra +Section: haskell +Build-Depends: debhelper (>= 10), + haskell-devscripts (>= 0.9), + cdbs, + ghc, + ghc-prof, +Build-Depends-Indep: ghc-doc, +Standards-Version: 3.9.6 +Homepage: http://hackage.haskell.org/package/zxcvbn-c +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git/tree/p/haskell-zxcvbn-c +Vcs-Git: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git +X-Description: Password strength estimation + This is a Haskell binding to the C port of the zxcvbn + password strength estimator, from <https://github.com/tsyrogit/zxcvbn-c> + . + An article on the reasons for zxcvbn is at + <https://tech.dropox.com/2012/04/zxcvbn-realistic-password-strength-estimation> + +Package: libghc-zxcvbn-c-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-zxcvbn-c-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-zxcvbn-c-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} diff --git a/p/haskell-zxcvbn-c/debian/copyright b/p/haskell-zxcvbn-c/debian/copyright new file mode 100644 index 000000000..3a155dc3a --- /dev/null +++ b/p/haskell-zxcvbn-c/debian/copyright @@ -0,0 +1,48 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: zxcvbn-c +Upstream-Contact: Joey Hess <id@joeyh.name> +Source: https://hackage.haskell.org/package/zxcvbn-c + +Files: * +Copyright: 2016 Joey Hess, 2015 Tony Evans +License: BSD3 + +Files: debian/* +Copyright: held by the contributors mentioned in debian/changelog +License: BSD3 + +License: BSD3 + /********************************************************************************** + * C implementation of the zxcvbn password strength estimation method. + * Copyright (c) 2015, Tony Evans + * 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. + * + * 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. + * + **********************************************************************************/ + . + The Haskell binding is Copyright 2016 Joey Hess, + and is licensed under the same terms as the C code. diff --git a/p/haskell-zxcvbn-c/debian/rules b/p/haskell-zxcvbn-c/debian/rules new file mode 100755 index 000000000..47af809e6 --- /dev/null +++ b/p/haskell-zxcvbn-c/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +DEB_CABAL_PACKAGE = zxcvbn-c +DEB_DEFAULT_COMPILER = ghc + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/hlibrary.mk diff --git a/p/haskell-zxcvbn-c/debian/source/format b/p/haskell-zxcvbn-c/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/p/haskell-zxcvbn-c/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/p/haskell-zxcvbn-c/debian/watch b/p/haskell-zxcvbn-c/debian/watch new file mode 100644 index 000000000..50b1ab2aa --- /dev/null +++ b/p/haskell-zxcvbn-c/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://hackage.haskell.org/package/zxcvbn-c/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) |
