[Python-modules-commits] [python-aws-requests-auth] 02/02: Initial release (Closes: #879745)

Sophie Brun sbrun-guest at moszumanska.debian.org
Wed Oct 25 09:53:57 UTC 2017


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

sbrun-guest pushed a commit to branch debian/master
in repository python-aws-requests-auth.

commit 4fc946648a5c2499913343db3ea26e4f6f34b5e8
Author: Sophie Brun <sophie at freexian.com>
Date:   Wed Oct 25 11:41:14 2017 +0200

    Initial release (Closes: #879745)
---
 debian/changelog                                  |  5 +++
 debian/compat                                     |  1 +
 debian/control                                    | 31 ++++++++++++++++++
 debian/copyright                                  | 39 +++++++++++++++++++++++
 debian/python-aws-requests-auth.lintian-overrides |  3 ++
 debian/rules                                      |  7 ++++
 debian/source/format                              |  1 +
 debian/source/options                             |  1 +
 debian/watch                                      |  2 ++
 9 files changed, 90 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..2373e97
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-aws-requests-auth (0.4.1-1) UNRELEASED; urgency=medium
+
+  * Initial release (Closes: #879745)
+
+ -- Sophie Brun <sophie at freexian.com>  Tue, 24 Oct 2017 16:56:07 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..537fde4
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,31 @@
+Source: python-aws-requests-auth
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Sophie Brun <sophie at freexian.com>
+Build-Depends: debhelper (>= 10), dh-python, python-all, python-setuptools, python3-all, python3-setuptools
+Standards-Version: 4.1.1
+Homepage: https://github.com/davidmuller/aws-requests-auth
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-aws-requests-auth.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-aws-requests-auth.git/
+Testsuite: autopkgtest-pkg-python
+
+Package: python-aws-requests-auth
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Description: AWS Signature Version 4 Signing Process (Python 2)
+ This package contains a AWS Signature Version 4 Signing Process with Python
+ requests. It allows you to authenticate to AWS with Amazon's signature version
+ 4 signing process with the Python requests library.
+ .
+ This package installs the library for Python 2.
+
+Package: python3-aws-requests-auth
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: AWS Signature Version 4 Signing Process (Python 3)
+ This package contains a AWS Signature Version 4 Signing Process with Python
+ requests. It allows you to authenticate to AWS with Amazon's signature version
+ 4 signing process with the Python requests library.
+ .
+ This package installs the library for Python 3.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..68cb494
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,39 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: aws-requests-auth
+Source: https://github.com/davidmuller/aws-requests-auth
+
+Files: *
+Copyright: David Muller
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2017 Sophie Brun <sophie at freexian.com>
+License: BSD-3-clause
+
+License: BSD-3-clause
+ All rights reserved.
+ .
+ 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. The names of its contributors may not 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 THE COPYRIGHT OWNER 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.
diff --git a/debian/python-aws-requests-auth.lintian-overrides b/debian/python-aws-requests-auth.lintian-overrides
new file mode 100644
index 0000000..5df64db
--- /dev/null
+++ b/debian/python-aws-requests-auth.lintian-overrides
@@ -0,0 +1,3 @@
+# we package python2 module as it's for elastalert using
+# Python 2.7 only
+python-aws-requests-auth: new-package-should-not-package-python2-module
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ce4c9a2
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+#export DH_VERBOSE = 1
+
+export PYBUILD_NAME=aws-requests-auth
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
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/source/options b/debian/source/options
new file mode 100644
index 0000000..cb61fa5
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1 @@
+extend-diff-ignore = "^[^/]*[.]egg-info/"
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..9b671da
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=4
+https://pypi.debian.net/aws-requests-auth/aws-requests-auth-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

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



More information about the Python-modules-commits mailing list