[Python-modules-commits] [python-pytest-benchmark] 02/02: Imported Debian patch 3.0.0-1

Hugo Lefeuvre hle at moszumanska.debian.org
Fri Sep 2 13:10:01 UTC 2016


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

hle pushed a commit to branch master
in repository python-pytest-benchmark.

commit c55a87514e4490481ac8b642bf129cd1ce180cc7
Author: Hugo Lefeuvre <hle at debian.org>
Date:   Sat Aug 27 21:54:12 2016 +0200

    Imported Debian patch 3.0.0-1
---
 debian/changelog                          |  5 +++
 debian/compat                             |  1 +
 debian/control                            | 52 +++++++++++++++++++++++++++++++
 debian/copyright                          | 31 ++++++++++++++++++
 debian/python-pytest-benchmark.changelogs |  1 +
 debian/python-pytest-benchmark.docs       |  1 +
 debian/rules                              | 10 ++++++
 debian/source/format                      |  1 +
 debian/watch                              |  3 ++
 9 files changed, 105 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..ec3d67e
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-pytest-benchmark (3.0.0-1) unstable; urgency=medium
+
+  * Initial release (Closes: #834519)
+
+ -- Hugo Lefeuvre <hle at debian.org>  Sat, 27 Aug 2016 21:54:12 +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..798b504
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,52 @@
+Source: python-pytest-benchmark
+Section: python
+Priority: optional
+Maintainer: Hugo Lefeuvre <hle at debian.org>
+Build-Depends: debhelper (>=9),
+               dh-python,
+               python-all (>= 2.6.6-3~),
+               python-setuptools,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.8
+Homepage: https://github.com/ionelmc/pytest-benchmark
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-pytest-benchmark.git
+Vcs-Browser: https://anonscm.debian.org/git/python-modules/packages/python-pytest-benchmark.git
+
+Package: python-pytest-benchmark
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends},
+         python-pytest (>= 2.6)
+Description: pytest fixture for benchmarking code (Python 2)
+ This plugin provides a benchmark fixture. This fixture is a callable object
+ that will benchmark any function passed to it.
+ .
+ Notable features and goals:
+  - Sensible defaults and automatic calibration for microbenchmarks
+  - Good integration with pytest
+  - Comparison and regression tracking
+  - Exhausive statistics
+  - JSON export
+ .
+ This package installs the library for Python 2.
+
+Package: python3-pytest-benchmark
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends},
+         python3-pytest (>= 2.6)
+Description: pytest fixture for benchmarking code (Python 3)
+ This plugin provides a benchmark fixture. This fixture is a callable object
+ that will benchmark any function passed to it.
+ .
+ Notable features and goals:
+  - Sensible defaults and automatic calibration for microbenchmarks
+  - Good integration with pytest
+  - Comparison and regression tracking
+  - Exhausive statistics
+  - JSON export
+ .
+ This package installs the library for Python 3.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..2cf95d5
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pytest-benchmark
+Source: https://github.com/ionelmc/pytest-benchmark
+
+Files: *
+Copyright: 2014-2016 Ionel Cristian Mărieș <contact at ionelmc.ro>
+License: BSD-2
+
+Files: debian/*
+Copyright: 2016 Hugo Lefeuvre <hle at debian.org>
+License: BSD-2
+
+License: BSD-2
+ 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.
+ .
+ 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 HOLDER 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-pytest-benchmark.changelogs b/debian/python-pytest-benchmark.changelogs
new file mode 100644
index 0000000..ca47367
--- /dev/null
+++ b/debian/python-pytest-benchmark.changelogs
@@ -0,0 +1 @@
+CHANGELOG.rst
diff --git a/debian/python-pytest-benchmark.docs b/debian/python-pytest-benchmark.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-pytest-benchmark.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..5ca7c58
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+#export DH_VERBOSE = 1
+
+export PYBUILD_NAME=pytest-benchmark
+
+%:
+	dh $@  --with python2,python3 --buildsystem=pybuild
+
+override_dh_python3:
+	        dh_python3 --shebang=/usr/bin/python3
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..19acdab
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/pytest-benchmark-$1\.tar\.gz/ \
+  https://github.com/ionelmc/pytest-benchmark/tags .*/v?(\d\S*)\.tar\.gz

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



More information about the Python-modules-commits mailing list