summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-11-14 16:35:32 -0500
committerMicah Anderson <micah@riseup.net>2013-11-14 16:35:32 -0500
commitc8b79bf686113c3418d8d65ff0a1920da2b409bc (patch)
tree4c76ad4dcedcbd25d653d261ad5033bf21911f0f /debian
initial commit
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog29
-rw-r--r--debian/compat1
-rw-r--r--debian/control20
-rw-r--r--debian/copyright43
-rw-r--r--debian/python-scrypt.lintian-overrides4
-rwxr-xr-xdebian/rules6
-rw-r--r--debian/source/format1
7 files changed, 104 insertions, 0 deletions
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 <micah@debian.org> 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 <micah@debian.org> 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 <micah@debian.org> 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 <micah@debian.org> Thu, 04 Jul 2013 12:03:29 -0400
+
+python-scrypt (0.6.1-1) unstable; urgency=low
+
+ * Initial package (Closes: #710464)
+
+ -- Micah Anderson <micah@debian.org> 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 <micah@debian.org>
+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: <http://bitbucket.org/mhallin/py-scrypt>
+
+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 <micah@leap.se>
+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)