From c8b79bf686113c3418d8d65ff0a1920da2b409bc Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Thu, 14 Nov 2013 16:35:32 -0500 Subject: initial commit --- debian/changelog | 29 +++++++++++++++++++++++ debian/compat | 1 + debian/control | 20 ++++++++++++++++ debian/copyright | 43 ++++++++++++++++++++++++++++++++++ debian/python-scrypt.lintian-overrides | 4 ++++ debian/rules | 6 +++++ debian/source/format | 1 + 7 files changed, 104 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/python-scrypt.lintian-overrides create mode 100755 debian/rules create mode 100644 debian/source/format (limited to 'debian') diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..38d89fb --- /dev/null +++ b/debian/changelog @@ -0,0 +1,29 @@ +python-scrypt (0.6.1-5) unstable; urgency=low + + * Remove dependency on libscrypt0, it requires porting + + -- Micah Anderson Thu, 22 Aug 2013 16:01:24 -0400 + +python-scrypt (0.6.1-4) unstable; urgency=low + + * Update debian/copyright to fix missing DEP5 field + + -- Micah Anderson Tue, 13 Aug 2013 09:37:16 -0400 + +python-scrypt (0.6.1-3) unstable; urgency=low + + * Fix typo in libscrypt0 package dependency + + -- Micah Anderson Sat, 10 Aug 2013 21:39:40 +0200 + +python-scrypt (0.6.1-2) unstable; urgency=low + + * Add missing license information for embedded scrypt + + -- Micah Anderson Thu, 04 Jul 2013 12:03:29 -0400 + +python-scrypt (0.6.1-1) unstable; urgency=low + + * Initial package (Closes: #710464) + + -- Micah Anderson Thu, 30 May 2013 15:30:06 -0400 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..efa6172 --- /dev/null +++ b/debian/control @@ -0,0 +1,20 @@ +Source: python-scrypt +Maintainer: Micah Anderson +Section: python +Priority: optional +Build-Depends: python-all-dev (>= 2.6.6-3), debhelper (>= 9) +Standards-Version: 3.9.4 + +Package: python-scrypt +Architecture: any +Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends} +Description: Python bindings for the scrypt key derivation function library + This is a set of Python bindings for the scrypt key derivation function. + . + Scrypt is useful when encrypting password as it is possible to specify a + minimum amount of time to use when encrypting and decrypting. If, for + example, a password takes 0.05 seconds to verify, a user won't notice the + slight delay when signing in, but doing a brute force search of several + billion passwords will take a considerable amount of time. This is in + contrast to more traditional hash functions such as MD5 or the SHA family + which can be implemented extremely fast on cheap hardware. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..4af456c --- /dev/null +++ b/debian/copyright @@ -0,0 +1,43 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: scrypt +Upstream-Contact: mhallin@gmail.com +Source: + +Files: * +Copyright: Copyright (C) 2010 Magnus Hallin +License: BSD-2-Clause + +License: BSD-2-Clause + 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 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 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. + +Files: scrypt-1.1.6/* +Copyright: Copyright 2005,2007-2009 Colin Percival +License: BSD-2-Clause + +Files: debian/* +Copyright: Copyright 2013 Micah Anderson +License: GPL-3+ + +License: GPL-3+ + On Debian systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL'. diff --git a/debian/python-scrypt.lintian-overrides b/debian/python-scrypt.lintian-overrides new file mode 100644 index 0000000..472a1d6 --- /dev/null +++ b/debian/python-scrypt.lintian-overrides @@ -0,0 +1,4 @@ +# Only the debian packaging is covered by the GPL, the rest is a 2-clause BSD +# tell lintian to not complain: +python-scrypt: possible-gpl-code-linked-with-openssl + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..bcebae9 --- /dev/null +++ b/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f + +%: + dh $@ --with python2 --buildsystem=python_distutils + + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) -- cgit v1.2.3