[Python-modules-commits] [python-mockupdb] 05/05: Initial release. (Closes: #816971)

Ondřej Nový onovy at moszumanska.debian.org
Thu Nov 10 21:34:27 UTC 2016


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

onovy pushed a commit to branch master
in repository python-mockupdb.

commit a3bb478181d86af50ab526fcba19ad1b7e48d664
Author: Ondřej Nový <onovy at debian.org>
Date:   Thu Nov 10 22:26:55 2016 +0100

    Initial release. (Closes: #816971)
---
 debian/.git-dpm              |  3 +++
 debian/changelog             |  5 +++++
 debian/compat                |  1 +
 debian/control               | 38 +++++++++++++++++++++++++++++++
 debian/copyright             | 53 ++++++++++++++++++++++++++++++++++++++++++++
 debian/python-mockupdb.docs  |  1 +
 debian/python3-mockupdb.docs |  1 +
 debian/rules                 |  6 +++++
 debian/watch                 |  3 +++
 9 files changed, 111 insertions(+)

diff --git a/debian/.git-dpm b/debian/.git-dpm
index 4172110..76379f1 100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@ -6,3 +6,6 @@ d0ec7e392d12c77e3c756a71312c09d98df031d1
 python-mockupdb_1.1.0.orig.tar.gz
 62d0eb9a573c94d07bd11ad089b0dc31e37ef0fb
 123024
+debianTag="debian/%e%v"
+patchedTag="patched/%e%v"
+upstreamTag="upstream/%e%u"
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..ab28511
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-mockupdb (1.1.0-1) unstable; urgency=medium
+
+  * Initial release. (Closes: #816971)
+
+ -- Ondřej Nový <onovy at debian.org>  Thu, 10 Nov 2016 22:26:50 +0100
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..36e03b1
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,38 @@
+Source: python-mockupdb
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Ondřej Nový <onovy at debian.org>,
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 10),
+               dh-python,
+               python-all,
+               python-setuptools,
+               python-pymongo (>= 3),
+               python3-all,
+               python3-setuptools,
+               python3-pymongo (>= 3),
+Standards-Version: 3.9.8
+Homepage: https://github.com/ajdavis/mongo-mockup-db
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-mockupdb.git/
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-mockupdb.git
+Testsuite: autopkgtest-pkg-python
+
+Package: python-mockupdb
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends},
+Description: MongoDB Wire Protocol server library - Python 2.x
+ Mock server for testing MongoDB clients and creating MongoDB Wire Protocol
+ servers.
+ .
+ This package contains the Python 2.x module.
+
+Package: python3-mockupdb
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends},
+Description: MongoDB Wire Protocol server library - Python 3.x
+ Mock server for testing MongoDB clients and creating MongoDB Wire Protocol
+ servers.
+ .
+ This package contains the Python 3.x module.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..ed5501c
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,53 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: mongo-mockup-db
+Source: https://github.com/ajdavis/mongo-mockup-db
+
+Files: *
+Copyright: 2009-2015 MongoDB, Inc.
+License: Apache-2
+
+Files: docs/_static/sidebar.js
+Copyright: 2007-2011 by the Sphinx team, see AUTHORS.
+License: BSD-2-clause
+
+Files: debian/*
+Copyright: 2016 Ondřej Nový <onovy at debian.org>
+License: Apache-2
+
+License: Apache-2
+ 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.
+ .
+ On Debian-based systems the full text of the Apache version 2.0 license
+ can be found in `/usr/share/common-licenses/Apache-2.0'.
+
+License: BSD-2-clause
+ 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
+ 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-mockupdb.docs b/debian/python-mockupdb.docs
new file mode 100644
index 0000000..095a08d
--- /dev/null
+++ b/debian/python-mockupdb.docs
@@ -0,0 +1 @@
+docs/tutorial.rst
diff --git a/debian/python3-mockupdb.docs b/debian/python3-mockupdb.docs
new file mode 100644
index 0000000..095a08d
--- /dev/null
+++ b/debian/python3-mockupdb.docs
@@ -0,0 +1 @@
+docs/tutorial.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..9bd00fd
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#! /usr/bin/make -f
+
+export PYBUILD_NAME = mockupdb
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..520038b
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/python-mockupdb-$1\.tar\.gz/ \
+  https://github.com/ajdavis/mongo-mockup-db/tags .*/v?(\d\S*)\.tar\.gz

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



More information about the Python-modules-commits mailing list