[Python-modules-commits] r30595 - in packages/slowaes/trunk (10 files)
mithrandi at users.alioth.debian.org
mithrandi at users.alioth.debian.org
Sat Sep 13 11:38:13 UTC 2014
Date: Saturday, September 13, 2014 @ 11:38:12
Author: mithrandi
Revision: 30595
[svn-inject] Applying Debian modifications (0.1a1-2) to trunk
Added:
packages/slowaes/trunk/debian/
packages/slowaes/trunk/debian/changelog
packages/slowaes/trunk/debian/clean
packages/slowaes/trunk/debian/compat
packages/slowaes/trunk/debian/control
packages/slowaes/trunk/debian/copyright
packages/slowaes/trunk/debian/rules
packages/slowaes/trunk/debian/source/
packages/slowaes/trunk/debian/source/format
packages/slowaes/trunk/debian/watch
Property changes on: packages/slowaes/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/slowaes/trunk/debian/changelog
===================================================================
--- packages/slowaes/trunk/debian/changelog (rev 0)
+++ packages/slowaes/trunk/debian/changelog 2014-09-13 11:38:12 UTC (rev 30595)
@@ -0,0 +1,20 @@
+slowaes (0.1a1-2) unstable; urgency=low
+
+ * debian/control
+ - New maintainer (Closes: #724068)
+ - Update Standards-Version to 3.9.5
+ - Fix capitialization of Python in description
+ - Add Homepage for source
+ * debian/copyright
+ - Add new maintainer for files in debian/
+ * debian/watch
+ - Add debian/watch file
+
+ -- Joseph Bisch <joseph.bisch at gmail.com> Wed, 03 Sep 2014 16:43:34 -0400
+
+slowaes (0.1a1-1) unstable; urgency=low
+
+ * Initial package in Debian. Closes: #704476.
+
+ -- Bart Martens <bartm at debian.org> Mon, 01 Apr 2013 20:00:00 +0000
+
Added: packages/slowaes/trunk/debian/clean
===================================================================
--- packages/slowaes/trunk/debian/clean (rev 0)
+++ packages/slowaes/trunk/debian/clean 2014-09-13 11:38:12 UTC (rev 30595)
@@ -0,0 +1,4 @@
+python/slowaes.egg-info/dependency_links.txt
+python/slowaes.egg-info/PKG-INFO
+python/slowaes.egg-info/SOURCES.txt
+python/slowaes.egg-info/top_level.txt
Added: packages/slowaes/trunk/debian/compat
===================================================================
--- packages/slowaes/trunk/debian/compat (rev 0)
+++ packages/slowaes/trunk/debian/compat 2014-09-13 11:38:12 UTC (rev 30595)
@@ -0,0 +1 @@
+9
Added: packages/slowaes/trunk/debian/control
===================================================================
--- packages/slowaes/trunk/debian/control (rev 0)
+++ packages/slowaes/trunk/debian/control 2014-09-13 11:38:12 UTC (rev 30595)
@@ -0,0 +1,15 @@
+Source: slowaes
+Maintainer: Joseph Bisch <joseph.bisch at gmail.com>
+Section: python
+Priority: optional
+Build-Depends: python-all (>= 2.6.6-3), debhelper (>= 9), python-setuptools
+Standards-Version: 3.9.5
+Homepage: http://code.google.com/p/slowaes/
+
+Package: python-slowaes
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: implementation of AES in Python
+ This package contains an implementation of AES in Python. This implementation
+ is slow (hence the project name) but still useful when faster ones are not
+ available.
Added: packages/slowaes/trunk/debian/copyright
===================================================================
--- packages/slowaes/trunk/debian/copyright (rev 0)
+++ packages/slowaes/trunk/debian/copyright 2014-09-13 11:38:12 UTC (rev 30595)
@@ -0,0 +1,125 @@
+Debian package creation : Bart Martens, 1 April 2013.
+
+Upstream source : http://code.google.com/p/slowaes/
+
+The files js/aes.js, js/jsHash.js and js/cryptoHelpers.js contain this
+copyright and license information :
+
+ | aes.js: implements AES - Advanced Encryption Standard
+ | from the SlowAES project, http://code.google.com/p/slowaes/
+ |
+ | Copyright (c) 2008 Josh Davis ( http://www.josh-davis.org ),
+ | Mark Percival ( http://mpercival.com ),
+ |
+ | Ported from C code written by Laurent Haan ( http://www.progressive-coding.com )
+ |
+ | Licensed under the Apache License, Version 2.0
+ | http://www.apache.org/licenses/
+
+ | jsHash.js: implements AES - Advanced Encryption Standard
+ | from the SlowAES project, http://code.google.com/p/slowaes/
+ |
+ | Copyright (c) 2008 Josh Davis ( http://www.josh-davis.org )
+ |
+ | Licensed under the Apache License, Version 2.0
+ | http://www.apache.org/licenses/
+ |
+ | sha2 portions adapted from jsSHA2 ( http://anmar.eu.org/projects/jssha2/ )
+ | Copyright Angel Marin 2003-2004 - http://anmar.eu.org/
+ | Distributed under the BSD License
+
+ | cryptoHelpers.js: implements AES - Advanced Encryption Standard
+ | from the SlowAES project, http://code.google.com/p/slowaes/
+ |
+ | Copyright (c) 2008 Josh Davis ( http://www.josh-davis.org ),
+ | Mark Percival ( http://mpercival.com ),
+ | Johan Sundstrom ( http://ecmanaut.blogspot.com ),
+ | John Resig ( http://ejohn.org )
+ |
+ | Licensed under the Apache License, Version 2.0
+ | http://www.apache.org/licenses/
+
+The files php/cryptoHelpers.php, php/aes_small.php and php/aes_fast.php contain
+this copyright and license information :
+
+ | cryptoHelpers.php: implements AES - Advanced Encryption Standard
+ | from the SlowAES project, http://code.google.com/p/slowaes/
+ |
+ | Copyright (c) 2008 Josh Davis ( http://www.josh-davis.org ),
+ | Mark Percival ( http://mpercival.com ),
+ | Johan Sundstrom ( http://ecmanaut.blogspot.com ),
+ | John Resig ( http://ejohn.org )
+ |
+ | Ported from JavaScript to PHP by ALeX Kazik
+ |
+ | Licensed under the Apache License, Version 2.0
+ | http://www.apache.org/licenses/
+
+ | aes.php: implements AES - Advanced Encryption Standard
+ | from the SlowAES project, http://code.google.com/p/slowaes/
+ |
+ | Copyright (c) 2008 Josh Davis ( http://www.josh-davis.org ),
+ | Mark Percival ( http://mpercival.com ),
+ |
+ | Ported from C code written by Laurent Haan ( http://www.progressive-coding.com )
+ |
+ | Ported from JavaScript to PHP by ALeX Kazik
+ |
+ | Licensed under the Apache License, Version 2.0
+ | http://www.apache.org/licenses/
+
+ | aes.php: implements AES - Advanced Encryption Standard
+ | from the SlowAES project, http://code.google.com/p/slowaes/
+ |
+ | Copyright (c) 2008 Josh Davis ( http://www.josh-davis.org ),
+ | Mark Percival ( http://mpercival.com ),
+ |
+ | Ported from C code written by Laurent Haan ( http://www.progressive-coding.com )
+ |
+ | Ported from JavaScript to PHP by ALeX Kazik
+ |
+ | Licensed under the Apache License, Version 2.0
+ | http://www.apache.org/licenses/
+
+The file python/aes.py contains this copyright and license information :
+
+ | aes.py: implements AES - Advanced Encryption Standard
+ | from the SlowAES project, http://code.google.com/p/slowaes/
+ |
+ | Copyright (c) 2008 Josh Davis ( http://www.josh-davis.org ),
+ | Alex Martelli ( http://www.aleax.it )
+ |
+ | Ported from C code written by Laurent Haan ( http://www.progressive-coding.com )
+ |
+ | Licensed under the Apache License, Version 2.0
+ | http://www.apache.org/licenses/
+
+The files in the ruby/ directory have this copyright and license :
+
+ | Copyright (c) 2007 Alex Boussinet
+ |
+ | Permission is hereby granted, free of charge, to any person obtaining
+ | a copy of this software and associated documentation files (the
+ | "Software"), to deal in the Software without restriction, including
+ | without limitation the rights to use, copy, modify, merge, publish,
+ | distribute, sublicense, and/or sell copies of the Software, and to
+ | permit persons to whom the Software is furnished to do so, subject to
+ | the following conditions:
+ |
+ | The above copyright notice and this permission notice shall be
+ | included in all copies or substantial portions of the Software.
+ |
+ | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+ | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+ | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+The Debian packaging is
+Copyright (C) 2014 Joseph Bisch <joseph.bisch at gmail.com>
+Copyright (C) 2013 Bart Martens <bartm at knars.be>
+and is licensed under the GPL version 3, see :
+/usr/share/common-licenses/GPL-3
+
Added: packages/slowaes/trunk/debian/rules
===================================================================
--- packages/slowaes/trunk/debian/rules (rev 0)
+++ packages/slowaes/trunk/debian/rules 2014-09-13 11:38:12 UTC (rev 30595)
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --sourcedirectory=python --with python2 --buildsystem=python_distutils
Property changes on: packages/slowaes/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/slowaes/trunk/debian/source/format
===================================================================
--- packages/slowaes/trunk/debian/source/format (rev 0)
+++ packages/slowaes/trunk/debian/source/format 2014-09-13 11:38:12 UTC (rev 30595)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/slowaes/trunk/debian/watch
===================================================================
--- packages/slowaes/trunk/debian/watch (rev 0)
+++ packages/slowaes/trunk/debian/watch 2014-09-13 11:38:12 UTC (rev 30595)
@@ -0,0 +1,2 @@
+version=3
+https://pypi.python.org/packages/source/s/slowaes/slowaes-(.*)\.(?:tar\.gz|zip|tar\.bz2)
More information about the Python-modules-commits
mailing list