[Python-modules-commits] r27003 - in packages/python-rsa/trunk (11 files)

takaki at users.alioth.debian.org takaki at users.alioth.debian.org
Sat Jan 4 08:23:13 UTC 2014


    Date: Saturday, January 4, 2014 @ 08:23:12
  Author: takaki
Revision: 27003

[svn-inject] Applying Debian modifications (3.1.2-1) to trunk

Added:
  packages/python-rsa/trunk/debian/
  packages/python-rsa/trunk/debian/changelog
  packages/python-rsa/trunk/debian/compat
  packages/python-rsa/trunk/debian/control
  packages/python-rsa/trunk/debian/copyright
  packages/python-rsa/trunk/debian/docs
  packages/python-rsa/trunk/debian/rules
  packages/python-rsa/trunk/debian/source/
  packages/python-rsa/trunk/debian/source/format
  packages/python-rsa/trunk/debian/source/options
  packages/python-rsa/trunk/debian/watch


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

Added: packages/python-rsa/trunk/debian/changelog
===================================================================
--- packages/python-rsa/trunk/debian/changelog	                        (rev 0)
+++ packages/python-rsa/trunk/debian/changelog	2014-01-04 08:23:12 UTC (rev 27003)
@@ -0,0 +1,5 @@
+python-rsa (3.1.2-1) unstable; urgency=low
+
+  * Initial release (Closes: #733216)
+
+ -- TANIGUCHI Takaki <takaki at debian.org>  Fri, 27 Dec 2013 16:47:49 +0900

Added: packages/python-rsa/trunk/debian/compat
===================================================================
--- packages/python-rsa/trunk/debian/compat	                        (rev 0)
+++ packages/python-rsa/trunk/debian/compat	2014-01-04 08:23:12 UTC (rev 27003)
@@ -0,0 +1 @@
+9

Added: packages/python-rsa/trunk/debian/control
===================================================================
--- packages/python-rsa/trunk/debian/control	                        (rev 0)
+++ packages/python-rsa/trunk/debian/control	2014-01-04 08:23:12 UTC (rev 27003)
@@ -0,0 +1,38 @@
+Source: python-rsa
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: TANIGUCHI Takaki <takaki at debian.org>
+Build-Depends: debhelper (>= 9)
+	, python-all
+	, python3-all
+	, python-setuptools
+	, python3-setuptools
+Standards-Version: 3.9.5
+Homepage: http://stuvel.eu/rsa
+X-Python-Versioni: >= 2.7
+X-Python3-Versioni: >= 3.2
+Vcs-Svn: svn://anonscm.debian.org/python-apps/packages/python-rsa/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-apps/packages/python-rsa/trunk/
+
+Package: python-rsa
+Architecture: all
+Depends: python, ${python:Depends}, ${misc:Depends}
+Description: Pure-Python RSA implementation (Python 2)
+ Python-RSA is a pure-Python RSA implementation. It supports encryption
+ and decryption, signing and verifying signatures, and key generation
+ according to PKCS#1 version 1.5. It can be used as a Python library as
+ well as on the commandline. The code was mostly written by Sybren A. Stüvel.
+ .
+ This package contains the module for Python 2.
+
+Package: python3-rsa
+Architecture: all
+Depends: python3, ${python:Depends}, ${misc:Depends}
+Description: Pure-Python RSA implementation (Python 3)
+ Python-RSA is a pure-Python RSA implementation. It supports encryption
+ and decryption, signing and verifying signatures, and key generation
+ according to PKCS#1 version 1.5. It can be used as a Python library as
+ well as on the commandline. The code was mostly written by Sybren A. Stüvel.
+ .
+ This package contains the module for Python 3.

Added: packages/python-rsa/trunk/debian/copyright
===================================================================
--- packages/python-rsa/trunk/debian/copyright	                        (rev 0)
+++ packages/python-rsa/trunk/debian/copyright	2014-01-04 08:23:12 UTC (rev 27003)
@@ -0,0 +1,27 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-rsa
+Source: https://pypi.python.org/pypi/rsa
+
+Files: *
+Copyright: 2011, Sybren A. Stuvel <sybren at stuvel.eu>
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2013 TANIGUCHI Takaki <takaki at debian.org>
+License: Apache-2.0
+
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ http://www.apache.org/licenses/LICENSE-2.0
+ .
+ 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".

Added: packages/python-rsa/trunk/debian/docs
===================================================================
--- packages/python-rsa/trunk/debian/docs	                        (rev 0)
+++ packages/python-rsa/trunk/debian/docs	2014-01-04 08:23:12 UTC (rev 27003)
@@ -0,0 +1 @@
+README.rst

Added: packages/python-rsa/trunk/debian/rules
===================================================================
--- packages/python-rsa/trunk/debian/rules	                        (rev 0)
+++ packages/python-rsa/trunk/debian/rules	2014-01-04 08:23:12 UTC (rev 27003)
@@ -0,0 +1,19 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+SHELL=/bin/bash
+export PYBUILD_DESTDIR_python2=debian/python-rsa/
+export PYBUILD_DESTDIR_python3=debian/python3-rsa/
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_install:
+	dh_install
+	for i in $(CURDIR)/debian/python3-rsa/usr/bin/pyrsa-* ; do \
+		mv $${i} $${i/pyrsa/py3rsa} ;\
+	done 
+			


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

Added: packages/python-rsa/trunk/debian/source/format
===================================================================
--- packages/python-rsa/trunk/debian/source/format	                        (rev 0)
+++ packages/python-rsa/trunk/debian/source/format	2014-01-04 08:23:12 UTC (rev 27003)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-rsa/trunk/debian/source/options
===================================================================
--- packages/python-rsa/trunk/debian/source/options	                        (rev 0)
+++ packages/python-rsa/trunk/debian/source/options	2014-01-04 08:23:12 UTC (rev 27003)
@@ -0,0 +1 @@
+extend-diff-ignore = "^[^/]*[.]egg-info/"

Added: packages/python-rsa/trunk/debian/watch
===================================================================
--- packages/python-rsa/trunk/debian/watch	                        (rev 0)
+++ packages/python-rsa/trunk/debian/watch	2014-01-04 08:23:12 UTC (rev 27003)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/r/rsa/rsa-(.*).tar.gz




More information about the Python-modules-commits mailing list