[Python-modules-commits] [flask-gravatar] 02/02: Import Debian changes 0.4.2-1

Christoph Berg myon at debian.org
Sun Dec 3 20:25:45 UTC 2017


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

myon pushed a commit to branch debian/master
in repository flask-gravatar.

commit d4b79115c26ceff0451158bff2575dbbf9be8011
Author: Adrian Vondendriesch <adrian.vondendriesch at credativ.de>
Date:   Tue Apr 4 18:09:22 2017 +0200

    Import Debian changes 0.4.2-1
    
    flask-gravatar (0.4.2-1) unstable; urgency=low
    
      * Initial package version.
---
 debian/changelog                                   |  5 ++
 debian/compat                                      |  1 +
 debian/control                                     | 39 +++++++++++++++
 debian/copyright                                   | 55 ++++++++++++++++++++++
 debian/gbp.conf                                    |  2 +
 ...-setup-remove-coverage-version-dependency.patch | 22 +++++++++
 debian/patches/0002-pytest-remove-cache-test.patch | 20 ++++++++
 debian/patches/series                              |  2 +
 debian/rules                                       | 11 +++++
 debian/source/format                               |  1 +
 debian/watch                                       |  4 ++
 11 files changed, 162 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..b5c853b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+flask-gravatar (0.4.2-1) UNRELEASED; urgency=low
+
+  * Initial package version.
+  
+ -- Adrian Vondendriesch <adrian.vondendriesch at credativ.de>  Tue, 04 Apr 2017 18:09:22 +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..f186b20
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,39 @@
+Source: flask-gravatar
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Adrian Vondendriesch <adrian.vondendriesch at credativ.de>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all (>= 2.6.6-3),
+               python-coverage,
+               python-flask,
+               python-pytest,
+	       python-pytest-pep8,
+               python-pytest-cov,
+               python-setuptools (>= 0.6b3),
+               python3-all,
+               python3-coverage,
+               python3-flask,
+               python3-pytest,
+	       python3-pytest-pep8,
+               python3-setuptools,
+               python3-pytest-cov
+Standards-Version: 3.9.8
+Homepage: https://github.com/zzzsochi/Flask-Gravatar/
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/flask-gravatar.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/flask-gravatar.git
+
+Package: python-flask-gravatar
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Extension for Flask to make usage of Gravatar service
+ flask-gravatar is a small extension for Flask to make usage of
+ Gravatar service easy.
+
+Package: python3-flask-gravatar
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: Extension for Flask to make usage of Gravatar service
+ flask-gravatar is a small extension for Flask to make usage of
+ Gravatar service easy.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..a21daf4
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,55 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Flask-Gravatar
+Upstream-Contact: Alexander Zelenyak <zzz.sochi at gmail.com>
+Source: https://github.com/zzzsochi/Flask-Gravatar
+
+Files: *
+Copyright:
+  2010, Armin Ronacher
+  2011, Max Countryman
+  2011-2015, Alexander Zelenyak
+  2012, Honza Javorek
+  2012, Klinkin
+  2013, Donald Stufft
+  2013, Julien Kauffmann
+  2013, Li Chuangbo
+  2013, Miguel Grinberg
+  2014, Andrew Grigorev
+  2014, Nauman Ahmad
+  2014, Paul Bonser
+  2014, Tom Powell
+  2015, CERN
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2017, Adrian Vondendriesch
+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:
+ .
+ * Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+ .
+ * 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.
+ .
+ * Neither the name of the copyright holder 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 THE COPYRIGHT
+ HOLDERS 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/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..3879982
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,2 @@
+[DEFAULT]
+debian-branch=debian/master
diff --git a/debian/patches/0001-setup-remove-coverage-version-dependency.patch b/debian/patches/0001-setup-remove-coverage-version-dependency.patch
new file mode 100644
index 0000000..9e8a46a
--- /dev/null
+++ b/debian/patches/0001-setup-remove-coverage-version-dependency.patch
@@ -0,0 +1,22 @@
+From b162ab08f60270910f3c97769ae663ef0d0f58f9 Mon Sep 17 00:00:00 2001
+From: Adrian Vondendriesch <adrian.vondendriesch at credativ.de>
+Date: Mon, 29 May 2017 16:25:51 +0200
+Subject: setup: remove coverage version dependency
+
+---
+ setup.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/setup.py b/setup.py
+index 29fed02..e374a29 100644
+--- a/setup.py
++++ b/setup.py
+@@ -47,7 +47,7 @@ tests_require = [
+     'pytest-cov>=1.8.0',
+     'pytest-pep8>=1.0.6',
+     'pytest>=2.6.1',
+-    'coverage<4.0a1'
++    'coverage'
+ ]
+ 
+ setup(
diff --git a/debian/patches/0002-pytest-remove-cache-test.patch b/debian/patches/0002-pytest-remove-cache-test.patch
new file mode 100644
index 0000000..ff0d6ff
--- /dev/null
+++ b/debian/patches/0002-pytest-remove-cache-test.patch
@@ -0,0 +1,20 @@
+From 0c364338761381ae856405ff51a2ba0250ae004d Mon Sep 17 00:00:00 2001
+From: Adrian Vondendriesch <adrian.vondendriesch at credativ.de>
+Date: Mon, 29 May 2017 16:30:17 +0200
+Subject: pytest: remove cache test
+
+We don't have python-pytest-cache in debian yet.
+---
+ pytest.ini | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/pytest.ini b/pytest.ini
+index 4ddd416..d3c7150 100644
+--- a/pytest.ini
++++ b/pytest.ini
+@@ -9,4 +9,4 @@
+ 
+ 
+ [pytest]
+-addopts = --clearcache --pep8 --ignore=docs --cov=flask_gravatar --cov-report=term-missing tests flask_gravatar
++addopts = --pep8 --ignore=docs --cov=flask_gravatar --cov-report=term-missing tests flask_gravatar
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..38bed08
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,2 @@
+0001-setup-remove-coverage-version-dependency.patch
+0002-pytest-remove-cache-test.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..d4bff0e
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+
+# This file was automatically generated by stdeb 0.8.5 at
+# Tue, 04 Apr 2017 18:09:22 +0200
+export PYBUILD_NAME=flask-gravatar
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_install:
+	dh_auto_install
+	find debian -type f -name ".coverage" -delete
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..215592d
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+# please also check http://pypi.debian.net/Flask-Gravatar/watch
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/Flask-Gravatar-$1\.tar\.gz/ \
+  https://github.com/zzzsochi/Flask-Gravatar/tags .*/v?(\d\S+)\.tar\.gz
\ No newline at end of file

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



More information about the Python-modules-commits mailing list