[Python-modules-commits] r26494 - in packages/requests-aws/trunk (12 files)

toabctl-guest at users.alioth.debian.org toabctl-guest at users.alioth.debian.org
Sat Nov 23 15:48:47 UTC 2013


    Date: Saturday, November 23, 2013 @ 15:48:46
  Author: toabctl-guest
Revision: 26494

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

Added:
  packages/requests-aws/trunk/debian/
  packages/requests-aws/trunk/debian/changelog
  packages/requests-aws/trunk/debian/clean
  packages/requests-aws/trunk/debian/compat
  packages/requests-aws/trunk/debian/control
  packages/requests-aws/trunk/debian/copyright
  packages/requests-aws/trunk/debian/docs
  packages/requests-aws/trunk/debian/examples
  packages/requests-aws/trunk/debian/rules
  packages/requests-aws/trunk/debian/source/
  packages/requests-aws/trunk/debian/source/format
  packages/requests-aws/trunk/debian/watch


Property changes on: packages/requests-aws/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/requests-aws/trunk/debian/changelog
===================================================================
--- packages/requests-aws/trunk/debian/changelog	                        (rev 0)
+++ packages/requests-aws/trunk/debian/changelog	2013-11-23 15:48:46 UTC (rev 26494)
@@ -0,0 +1,5 @@
+requests-aws (0.1.5-1) unstable; urgency=low
+
+  * Initial release (Closes: #729951)
+
+ -- Thomas Bechtold <thomasbechtold at jpberlin.de>  Tue, 19 Nov 2013 10:44:06 +0100

Added: packages/requests-aws/trunk/debian/clean
===================================================================
--- packages/requests-aws/trunk/debian/clean	                        (rev 0)
+++ packages/requests-aws/trunk/debian/clean	2013-11-23 15:48:46 UTC (rev 26494)
@@ -0,0 +1 @@
+requests_aws.egg-info/*

Added: packages/requests-aws/trunk/debian/compat
===================================================================
--- packages/requests-aws/trunk/debian/compat	                        (rev 0)
+++ packages/requests-aws/trunk/debian/compat	2013-11-23 15:48:46 UTC (rev 26494)
@@ -0,0 +1 @@
+9

Added: packages/requests-aws/trunk/debian/control
===================================================================
--- packages/requests-aws/trunk/debian/control	                        (rev 0)
+++ packages/requests-aws/trunk/debian/control	2013-11-23 15:48:46 UTC (rev 26494)
@@ -0,0 +1,49 @@
+Source: requests-aws
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Thomas Bechtold <thomasbechtold at jpberlin.de>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all (>= 2.6.6-3~),
+               python-setuptools,
+               python3-all,
+               python3-setuptools,
+               python-requests (>= 0.14.0),
+               python3-requests (>= 0.14.0),
+Standards-Version: 3.9.5
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.3
+Homepage: https://github.com/tax/python-requests-aws
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/requests-aws/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/requests-aws/trunk/
+
+Package: python-requests-aws
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends},
+ python-requests (>= 0.14.0),
+Description: AWS authentication for Amazon S3 for the python-requests module
+ Requests allow you to send HTTP/1.1 requests. You can add headers, form data,
+ multipart files, and parameters with simple Python dictionaries, and access the
+ response data in the same way. It's powered by httplib and urllib3, but it does
+ all the hard work and crazy hacks for you.
+ .
+ This module adds AWS authentication for Amazon S3 based on the python-requests
+ module.
+
+Package: python3-requests-aws
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python3:Depends},
+ python3-requests (>= 0.14.0),
+Description: AWS authentication for Amazon S3 for the python3-requests module
+ Requests allow you to send HTTP/1.1 requests. You can add headers, form data,
+ multipart files, and parameters with simple Python dictionaries, and access the
+ response data in the same way. It's powered by httplib and urllib3, but it does
+ all the hard work and crazy hacks for you.
+ .
+ This module adds AWS authentication for Amazon S3 based on the python3-requests
+ module.

Added: packages/requests-aws/trunk/debian/copyright
===================================================================
--- packages/requests-aws/trunk/debian/copyright	                        (rev 0)
+++ packages/requests-aws/trunk/debian/copyright	2013-11-23 15:48:46 UTC (rev 26494)
@@ -0,0 +1,41 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: requests-aws
+Upstream-Contact: Paul Tax <paultax at gmail.com>
+Source: http://pypi.python.org/pypi/requests-aws
+
+Files: *
+Copyright: 2011-2013, Kenneth Reitz
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2013, Thomas Bechtold <thomasbechtold at jpberlin.de>
+License: BSD-3-clause
+
+License: BSD-3-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.
+ .
+ 3. Neither the name of Infrae nor the names of its contributors may
+    be used to endorse or promote products derived from this software
+    without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 INFRAE 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.

Added: packages/requests-aws/trunk/debian/docs
===================================================================
--- packages/requests-aws/trunk/debian/docs	                        (rev 0)
+++ packages/requests-aws/trunk/debian/docs	2013-11-23 15:48:46 UTC (rev 26494)
@@ -0,0 +1 @@
+README.md

Added: packages/requests-aws/trunk/debian/examples
===================================================================
--- packages/requests-aws/trunk/debian/examples	                        (rev 0)
+++ packages/requests-aws/trunk/debian/examples	2013-11-23 15:48:46 UTC (rev 26494)
@@ -0,0 +1 @@
+example.py

Added: packages/requests-aws/trunk/debian/rules
===================================================================
--- packages/requests-aws/trunk/debian/rules	                        (rev 0)
+++ packages/requests-aws/trunk/debian/rules	2013-11-23 15:48:46 UTC (rev 26494)
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=requests-aws
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild


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

Added: packages/requests-aws/trunk/debian/source/format
===================================================================
--- packages/requests-aws/trunk/debian/source/format	                        (rev 0)
+++ packages/requests-aws/trunk/debian/source/format	2013-11-23 15:48:46 UTC (rev 26494)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/requests-aws/trunk/debian/watch
===================================================================
--- packages/requests-aws/trunk/debian/watch	                        (rev 0)
+++ packages/requests-aws/trunk/debian/watch	2013-11-23 15:48:46 UTC (rev 26494)
@@ -0,0 +1,2 @@
+version=3
+https://pypi.python.org/packages/source/r/requests-aws/requests-aws-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list