[Python-modules-commits] [python-cachecontrol] 03/03: Initial release. (Closes: #785059)

Barry Warsaw barry at moszumanska.debian.org
Fri May 15 22:07:57 UTC 2015


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

barry pushed a commit to branch master
in repository python-cachecontrol.

commit 4e16ec4996fe3f5a469dc083b970f6bdc74a1cea
Author: Barry Warsaw <barry at python.org>
Date:   Fri May 15 18:06:33 2015 -0400

    Initial release. (Closes: #785059)
---
 debian/changelog |  5 +++++
 debian/compat    |  1 +
 debian/control   | 43 +++++++++++++++++++++++++++++++++++++++++++
 debian/copyright | 43 +++++++++++++++++++++++++++++++++++++++++++
 debian/rules     |  9 +++++++++
 debian/watch     |  3 +++
 6 files changed, 104 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..c0582a7
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-cachecontrol (0.11.3-1) UNRELEASED; urgency=medium
+
+  * Initial release. (Closes: #785059)
+
+ -- Barry Warsaw <barry at debian.org>  Fri, 15 May 2015 16:17:51 -0400
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..a9dab10
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,43 @@
+Source: python-cachecontrol
+Maintainer: Barry Warsaw <barry at debian.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Homepage: https://github.com/ionrock/cachecontrol
+Section: python
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.4
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all (>= 2.6.6-3~),
+               python-setuptools,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.6
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/python-pluggy.git
+Vcs-Browser: http://anonscm.debian.org/cgit/python-modules/packages/python-pluggy.git
+
+Package: python-cachecontrol
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: caching algorithms in httplib2 for use with requests
+ CacheControl is a port of the caching algorithms in httplib2_ for use with
+ requests_ session object.
+ .
+ It was written because httplib2's better support for caching is often
+ mitigated by its lack of threadsafety. The same is true of requests in
+ terms of caching.
+ .
+ This is the Python 2 library.
+
+Package: python3-cachecontrol
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: caching algorithms in httplib2 for use with requests
+ CacheControl is a port of the caching algorithms in httplib2_ for use with
+ requests_ session object.
+ .
+ It was written because httplib2's better support for caching is often
+ mitigated by its lack of threadsafety. The same is true of requests in
+ terms of caching.
+ .
+ This is the Python 3 library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..de325fc
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,43 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: CacheControl
+Source: https://github.com/ionrock/cachecontrol
+
+Files: *
+Copyright: 2015 Eric Larson
+License: Apache-2.0
+ Copyright 2015 Eric Larson
+ .
+ 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.
+
+Files: debian/*
+Copyright: Copyright 2015 Barry Warsaw <barry at debian.org>
+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..a11f584
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=CacheControl
+#export PYBUILD_VERBOSE=1
+#export DH_VERBOSE=1
+
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..cd0f4dc
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/CacheControl/CacheControl-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file

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



More information about the Python-modules-commits mailing list