[Python-modules-commits] r30803 - in packages/responses/trunk (11 files)

laarmen-guest at users.alioth.debian.org laarmen-guest at users.alioth.debian.org
Sun Sep 28 19:56:02 UTC 2014


    Date: Sunday, September 28, 2014 @ 19:56:01
  Author: laarmen-guest
Revision: 30803

[svn-inject] Application des modifications Debian (0.2.2-1) pour le tronc

Added:
  packages/responses/trunk/debian/
  packages/responses/trunk/debian/changelog
  packages/responses/trunk/debian/clean
  packages/responses/trunk/debian/compat
  packages/responses/trunk/debian/control
  packages/responses/trunk/debian/copyright
  packages/responses/trunk/debian/docs
  packages/responses/trunk/debian/rules
  packages/responses/trunk/debian/source/
  packages/responses/trunk/debian/source/format
  packages/responses/trunk/debian/watch


Property changes on: packages/responses/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/responses/trunk/debian/changelog
===================================================================
--- packages/responses/trunk/debian/changelog	                        (rev 0)
+++ packages/responses/trunk/debian/changelog	2014-09-28 19:56:01 UTC (rev 30803)
@@ -0,0 +1,6 @@
+responses (0.2.2-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #763273)
+  * Disabling test runs as they are not provided within the upstream tarball
+
+ -- Simon Chopin <chopin.simon at gmail.com>  Sat, 24 Dec 2011 17:42:15 +0200

Added: packages/responses/trunk/debian/clean
===================================================================
--- packages/responses/trunk/debian/clean	                        (rev 0)
+++ packages/responses/trunk/debian/clean	2014-09-28 19:56:01 UTC (rev 30803)
@@ -0,0 +1 @@
+responses.egg-info/*

Added: packages/responses/trunk/debian/compat
===================================================================
--- packages/responses/trunk/debian/compat	                        (rev 0)
+++ packages/responses/trunk/debian/compat	2014-09-28 19:56:01 UTC (rev 30803)
@@ -0,0 +1 @@
+8

Added: packages/responses/trunk/debian/control
===================================================================
--- packages/responses/trunk/debian/control	                        (rev 0)
+++ packages/responses/trunk/debian/control	2014-09-28 19:56:01 UTC (rev 30803)
@@ -0,0 +1,40 @@
+Source: responses
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Simon Chopin <chopin.simon at gmail.com>
+Build-Depends:
+ debhelper (>= 8.1),
+ dh-python,
+ python-all (>= 2.6.6-3~),
+ python3-all,
+ python-setuptools,
+ python3-setuptools
+Standards-Version: 3.9.6
+Homepage: https://github.com/dropbox/responses
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/responses/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/responses/trunk/
+
+Package: python-responses
+Architecture: all
+Depends:
+ python-requests (>= 1.0),
+ ${misc:Depends},
+ ${python:Depends}
+Description: Utility library for mocking out the requests Python library
+ responses is a module used to mock out the `requests' Python library in
+ order to perform unit tests.
+ .
+ This package provides the Python 2 module.
+
+Package: python3-responses
+Architecture: all
+Depends:
+ python-requests (>= 1.0),
+ ${misc:Depends},
+ ${python3:Depends}
+Description: Utility library for mocking out the requests Python 3 library
+ responses is a module used to mock out the `requests' Python 3 library in
+ order to perform unit tests.
+ .
+ This package provides the Python 3 module.

Added: packages/responses/trunk/debian/copyright
===================================================================
--- packages/responses/trunk/debian/copyright	                        (rev 0)
+++ packages/responses/trunk/debian/copyright	2014-09-28 19:56:01 UTC (rev 30803)
@@ -0,0 +1,45 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: stomper
+Source: https://github.com/oisinmulvihill/stomper/
+
+Files: *
+Copyright: 2013-2014 Dropbox, Inc.
+License: Apache
+
+Files: debian/*
+Copyright: 2014 Simon Chopin <chopin.simon at gmail.com>
+License: Apache
+
+License: Apache
+ 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.
+ 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.
+ .
+ On Debian systems, a copy of the license should be at
+ /usr/share/common-licenses/Apache-2.0

Added: packages/responses/trunk/debian/docs
===================================================================
--- packages/responses/trunk/debian/docs	                        (rev 0)
+++ packages/responses/trunk/debian/docs	2014-09-28 19:56:01 UTC (rev 30803)
@@ -0,0 +1 @@
+README.rst

Added: packages/responses/trunk/debian/rules
===================================================================
--- packages/responses/trunk/debian/rules	                        (rev 0)
+++ packages/responses/trunk/debian/rules	2014-09-28 19:56:01 UTC (rev 30803)
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_DISABLE=test
+export PYBUILD_NAME=responses
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild


Property changes on: packages/responses/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/responses/trunk/debian/source/format
===================================================================
--- packages/responses/trunk/debian/source/format	                        (rev 0)
+++ packages/responses/trunk/debian/source/format	2014-09-28 19:56:01 UTC (rev 30803)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/responses/trunk/debian/watch
===================================================================
--- packages/responses/trunk/debian/watch	                        (rev 0)
+++ packages/responses/trunk/debian/watch	2014-09-28 19:56:01 UTC (rev 30803)
@@ -0,0 +1,3 @@
+version=3
+
+https://pypi.python.org/packages/source/r/responses/responses-(.+).tar.gz




More information about the Python-modules-commits mailing list