[Python-modules-commits] [vcr.py] 02/03: Imported Debian patch 1.6.1-1

Daniel Stender danstender-guest at moszumanska.debian.org
Sat Jul 18 14:05:28 UTC 2015


This is an automated email from the git hooks/post-receive script.

danstender-guest pushed a commit to branch master
in repository vcr.py.

commit d823b78664cddb47fb354228f5a028f20772faaa
Author: Daniel Stender <debian at danielstender.com>
Date:   Sat Jul 18 15:59:20 2015 +0200

    Imported Debian patch 1.6.1-1
---
 debian/changelog     |  5 ++++
 debian/compat        |  1 +
 debian/control       | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright     | 32 ++++++++++++++++++++++++
 debian/rules         | 15 +++++++++++
 debian/source/format |  1 +
 debian/watch         |  4 +++
 7 files changed, 128 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..40020bf
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+vcr.py (1.6.1-1) UNRELEASED; urgency=medium
+
+  * Initial release (Closes: #792700).
+
+ -- Daniel Stender <debian at danielstender.com>  Sat, 18 Jul 2015 15:59:20 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c0ad464
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,70 @@
+Source: vcr.py
+Section: python
+Priority: optional
+Maintainer: Daniel Stender <debian at danielstender.com>
+Uploaders:
+ Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends:
+ debhelper (>= 9),
+ dh-python,
+ pandoc,
+ python-all,
+ python-setuptools,
+ python-six (>= 1.5),
+ python-wrapt,
+ python-yaml,
+ python3-all,
+ python3-setuptools,
+ python3-six (>= 1.5),
+ python3-wrapt,
+ python3-yaml
+Standards-Version: 3.9.6
+Homepage: https://github.com/kevin1024/vcrpy/
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/vcr.py.git
+Vcs-Browser: http://anonscm.debian.org/cgit/python-modules/packages/vcr.py.git
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.3
+
+Package: python-vcr
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends}
+Description: record and replay HTML interactions (Python library)
+ vcr.py records all interactions that take place through the HTML libraries
+ it supports and writes them to flat files, called cassettes (YAML format by
+ default). These cassettes could be replayed then for fast, deterministic
+ and accurate HTML testing.
+ .
+ vcr.py supports the following Python HTML libraries:
+  - urllib2 (stdlib)
+  - urllib3
+  - http.client (Python3 stdlib)
+  - Requests
+  - httplib2
+  - Boto (interface to Amazon Web Services)
+  - Tornado's HTTP client
+ .
+ This package contains the modules for Python 2.
+
+Package: python3-vcr
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python3:Depends}
+Description: record and replay HTML interactions (Python3 library)
+ vcr.py records all interactions that take place through the HTML libraries
+ it supports and writes them to flat files, called cassettes (YAML format by
+ default). These cassettes could be replayed then for fast, deterministic
+ and accurate HTML testing.
+ .
+ vcr.py supports the following Python HTML libraries:
+  - urllib2 (stdlib)
+  - urllib3
+  - http.client (Python3 stdlib)
+  - Requests
+  - httplib2
+  - Boto (interface to Amazon Web Services)
+  - Tornado's HTTP client
+ .
+ This package contains the modules for Python 3.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..dbabd4f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,32 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: vcr.py
+Upstream-Contact: Kevin McCarthy <me at kevinmccarthy.org>
+Source: https://github.com/kevin1024/vcrpy
+
+Files: *
+Copyright: 2012-2015 Kevin McCarthy
+License: Expat
+
+Files: debian/*
+Copyright: 2015 Daniel Stender <debian at danielstender.com>
+License: Expat
+
+License: Expat
+ 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.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..7d3303c
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+#export DH_VERBOSE=1
+export DEB_BUILD_OPTIONS=nocheck
+export PYBUILD_NAME=vcr
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_installdocs:
+	pandoc -f rst -t plain -o .pybuild/README README.rst
+	dh_installdocs -A .pybuild/README
+
+override_dh_installchangelogs:
+	sed -n '/'Changelog'/,/'0.0.1'/p' .pybuild/README > .pybuild/changelog
+	dh_installchangelogs -A .pybuild/changelog
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..01e853a
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts="filenamemangle=s/(?:.*\/)?v(\d[\d\.]+)\.tar\.gz/vcr.py-$1.tar.gz/" \
+https://github.com/kevin1024/vcrpy/releases (?:.*/)?v(\d[\d\.]+)\.tar\.gz
+# Github better, ships w/o eggs

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/vcr.py.git



More information about the Python-modules-commits mailing list