[Python-modules-commits] r13486 - in packages/python-keyczar/trunk (12 files)

chrisk-guest at users.alioth.debian.org chrisk-guest at users.alioth.debian.org
Fri Jun 18 18:25:40 UTC 2010


    Date: Friday, June 18, 2010 @ 18:25:31
  Author: chrisk-guest
Revision: 13486

[svn-inject] Applying Debian modifications (0.6~b.061709-1) to trunk

Added:
  packages/python-keyczar/trunk/debian/
  packages/python-keyczar/trunk/debian/README.Debian
  packages/python-keyczar/trunk/debian/changelog
  packages/python-keyczar/trunk/debian/compat
  packages/python-keyczar/trunk/debian/control
  packages/python-keyczar/trunk/debian/copyright
  packages/python-keyczar/trunk/debian/docs
  packages/python-keyczar/trunk/debian/pyversions
  packages/python-keyczar/trunk/debian/rules
  packages/python-keyczar/trunk/debian/source/
  packages/python-keyczar/trunk/debian/source/format
  packages/python-keyczar/trunk/debian/watch


Property changes on: packages/python-keyczar/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-keyczar/trunk/debian/README.Debian
===================================================================
--- packages/python-keyczar/trunk/debian/README.Debian	                        (rev 0)
+++ packages/python-keyczar/trunk/debian/README.Debian	2010-06-18 18:25:31 UTC (rev 13486)
@@ -0,0 +1,7 @@
+python-keyczar for Debian
+-------------------------
+
+This is the python version of keyczar. If you need Java or C++ versions, you
+can download them from the project's website at http://www.keyczar.org.
+
+ -- Christian Kastner <debian at kvr.at>  Thu, 27 May 2010 03:13:20 +0200

Added: packages/python-keyczar/trunk/debian/changelog
===================================================================
--- packages/python-keyczar/trunk/debian/changelog	                        (rev 0)
+++ packages/python-keyczar/trunk/debian/changelog	2010-06-18 18:25:31 UTC (rev 13486)
@@ -0,0 +1,5 @@
+python-keyczar (0.6~b.061709-1) unstable; urgency=low
+
+  * Initial release (Closes: #494868)
+
+ -- Christian Kastner <debian at kvr.at>  Thu, 27 May 2010 03:13:20 +0200

Added: packages/python-keyczar/trunk/debian/compat
===================================================================
--- packages/python-keyczar/trunk/debian/compat	                        (rev 0)
+++ packages/python-keyczar/trunk/debian/compat	2010-06-18 18:25:31 UTC (rev 13486)
@@ -0,0 +1 @@
+7

Added: packages/python-keyczar/trunk/debian/control
===================================================================
--- packages/python-keyczar/trunk/debian/control	                        (rev 0)
+++ packages/python-keyczar/trunk/debian/control	2010-06-18 18:25:31 UTC (rev 13486)
@@ -0,0 +1,34 @@
+Source: python-keyczar
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Christian Kastner <debian at kvr.at>
+Build-Depends:
+    debhelper (>= 7.0.50~),
+    python-all,
+    python-simplejson,
+    python-pyasn1,
+    python-crypto
+Standards-Version: 3.8.4
+Homepage: http://www.keyczar.org/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-keyczar/trunk
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-keyczar/trunk
+
+Package: python-keyczar
+Architecture: all
+Depends:
+    ${python:Depends},
+    ${misc:Depends},
+    python-simplejson,
+    python-pyasn1,
+    python-crypto
+Description: Toolkit for safe and simple cryptography for Python
+ Keyczar is an open source cryptographic toolkit designed to make it easier and
+ safer for devlopers to use cryptography in their applications. Keyczar
+ supports authentication and encryption with both symmetric and asymmetric keys.
+ Some features of Keyczar include:
+ .
+  * A simple API
+  * Key rotation and versioning
+  * Safe default algorithms, modes, and key lengths
+  * Automated generation of initialization vectors and ciphertext signatures

Added: packages/python-keyczar/trunk/debian/copyright
===================================================================
--- packages/python-keyczar/trunk/debian/copyright	                        (rev 0)
+++ packages/python-keyczar/trunk/debian/copyright	2010-06-18 18:25:31 UTC (rev 13486)
@@ -0,0 +1,39 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Name: python-keyczar
+Maintainer: Arkajit Dey <arkajit.dey at gmail.com>
+Source: http://code.google.com/p/keyczar/
+
+Copyright: 2008-2009 Google Inc.
+License: Apache-2
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ On Debian systems, the complete text of the Apache version 2.0 license
+ can be found in "/usr/share/common-licenses/Apache-2.0".
+
+Files: debian/*
+Copyright: 2010, Christian Kastner <debian at kvr.at>
+License: GPL-3+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA 
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 3 can be found in
+ `/usr/share/common-licenses/GPL-3'.

Added: packages/python-keyczar/trunk/debian/docs
===================================================================
--- packages/python-keyczar/trunk/debian/docs	                        (rev 0)
+++ packages/python-keyczar/trunk/debian/docs	2010-06-18 18:25:31 UTC (rev 13486)
@@ -0,0 +1 @@
+README

Added: packages/python-keyczar/trunk/debian/pyversions
===================================================================
--- packages/python-keyczar/trunk/debian/pyversions	                        (rev 0)
+++ packages/python-keyczar/trunk/debian/pyversions	2010-06-18 18:25:31 UTC (rev 13486)
@@ -0,0 +1 @@
+2.5-

Added: packages/python-keyczar/trunk/debian/rules
===================================================================
--- packages/python-keyczar/trunk/debian/rules	                        (rev 0)
+++ packages/python-keyczar/trunk/debian/rules	2010-06-18 18:25:31 UTC (rev 13486)
@@ -0,0 +1,19 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PYVERS = $(shell pyversions -r -v)
+
+%:
+	dh $@
+
+override_dh_auto_test:
+ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
+	set -e ;\
+	cd tests/keyczar ;\
+	for py in $(PYVERS); do  \
+		PYTHONPATH=$(CURDIR)/build/lib python$$py alltests.py; \
+	done
+endif


Property changes on: packages/python-keyczar/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-keyczar/trunk/debian/source/format
===================================================================
--- packages/python-keyczar/trunk/debian/source/format	                        (rev 0)
+++ packages/python-keyczar/trunk/debian/source/format	2010-06-18 18:25:31 UTC (rev 13486)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-keyczar/trunk/debian/watch
===================================================================
--- packages/python-keyczar/trunk/debian/watch	                        (rev 0)
+++ packages/python-keyczar/trunk/debian/watch	2010-06-18 18:25:31 UTC (rev 13486)
@@ -0,0 +1,6 @@
+version=3
+opts=\
+downloadurlmangle=s|.*[?]name=(.*?)&.*|http://keyczar.googlecode.com/files/$1|,\
+filenamemangle=s|[^/]+[?]name=(.*?)&.*|$1|,\
+dversionmangle=s/~// \
+http://code.google.com/p/keyczar/downloads/detail[?]name=python-keyczar-(.*).tar.gz&.*




More information about the Python-modules-commits mailing list