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

Ondrej Koblizek kobla-guest at moszumanska.debian.org
Tue Sep 12 12:03:05 UTC 2017


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

kobla-guest pushed a commit to branch master
in repository python-logfury.

commit 7811f5208e28230fc068138b8f578f1857c505c4
Author: Ondřej Kobližek <ondrej.koblizek at firma.seznam.cz>
Date:   Tue Sep 12 13:04:51 2017 +0200

    Initial release. (Closes: #875561)
---
 debian/CHANGELOG      | 35 +++++++++++++++++++++++++++++++++++
 debian/changelog      |  5 +++++
 debian/compat         |  1 +
 debian/control        | 34 ++++++++++++++++++++++++++++++++++
 debian/copyright      | 37 +++++++++++++++++++++++++++++++++++++
 debian/rules          | 17 +++++++++++++++++
 debian/source/options |  1 +
 debian/watch          |  3 +++
 8 files changed, 133 insertions(+)

diff --git a/debian/CHANGELOG b/debian/CHANGELOG
new file mode 100644
index 0000000..f0c3ceb
--- /dev/null
+++ b/debian/CHANGELOG
@@ -0,0 +1,35 @@
+commit b084e6297eed8e3f5158ef458adda05752bad109
+Author: Pawel Polewicz <p.polewicz at gmail.com>
+Date:   Fri Oct 7 17:36:53 2016 +0200
+
+    Add DefaultTraceAbstractMeta
+
+commit 83330f90c38e6963ad2e2c5d0b2b38325816b636
+Author: Pawel Polewicz <p.polewicz at gmail.com>
+Date:   Mon Sep 26 03:18:45 2016 +0200
+
+    Add Python 2.6 support
+
+commit 35c8ec373dfcdc21e4a58e5c8010df53b2eeb163
+Author: Pawel Polewicz <p.polewicz at gmail.com>
+Date:   Sun Sep 25 04:08:34 2016 +0200
+
+    Fixes before pypi release
+
+commit 051fc4c020449711ebd291b06bfa8142abab0622
+Author: Pawel Polewicz <p.polewicz at gmail.com>
+Date:   Sun Sep 25 03:43:37 2016 +0200
+
+    Add check-manifest to CI
+
+commit 231051a14b6a734552080ab49849ffccf68dc4bd
+Author: Pawel Polewicz <p.polewicz at gmail.com>
+Date:   Sun Sep 25 03:28:57 2016 +0200
+
+    Add readme_renderer check to CI
+
+commit b943552c62d05a7f8a8848f2d1ce45dab5b8c1dd
+Author: Pawel Polewicz <p.polewicz at gmail.com>
+Date:   Sat Sep 24 02:36:59 2016 +0200
+
+    Initial commit
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..639a5a1
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-logfury (0.1.2-1) unstable; urgency=medium
+
+  * Initial release. (Closes: #875561)
+
+ -- Ondřej Kobližek <koblizeko at gmail.com>  Tue, 12 Sep 2017 10:28:18 +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..9f4886f
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,34 @@
+Source: python-logfury
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Ondřej Kobližek <koblizeko at gmail.com>,
+           Ondřej Nový <onovy at debian.org>,
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 10),
+               dh-python,
+               pylint (>= 1.4.5),
+               pylint3 (>= 1.4.5),
+               python3-all,
+               python3-nose,
+               python3-pyflakes,
+               python3-pytest (>= 2.7),
+               python3-setuptools,
+               python3-six (>= 1.10),
+               python3-testfixtures,
+               yapf3,
+Standards-Version: 4.0.0
+Homepage: https://github.com/ppolewicz/logfury
+X-Python3-Version: >= 3.3
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-logfury.git/
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-logfury.git
+Testsuite: autopkgtest-pkg-python
+
+Package: python3-logfury
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends},
+Description: Responsible, logging of method calls for Python libs - Python 3.x
+ logfury is for Python library maintainers. It allows for responsible,
+ low-boilerplate logging of method calls.
+ .
+ This package contains the Python 3.x module.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..96afe19
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,37 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: logfury
+Source: https://github.com/ppolewicz/logfury
+
+Files: *
+Copyright: 2016-2017, Pawel Polewicz <p.polewicz at gmail.com>
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2017, Ondřej Kobližek <koblizeko at gmail.com>
+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 logfury 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 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/rules b/debian/rules
new file mode 100755
index 0000000..74080b5
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,17 @@
+#! /usr/bin/make -f
+
+#export DH_VERBOSE = 1
+export PYBUILD_NAME = python-logfury
+
+%:
+	dh $@ --with python3 --buildsystem=pybuild
+
+override_dh_auto_test:
+
+override_dh_auto_install:
+	dh_auto_install
+	PYBUILD_SYSTEM=custom PYBUILD_TEST_ARGS="{interpreter} -m pytest -v -x --ignore debian" dh_auto_test
+	# run tests after install: plugin needs to get registered by setup.py/entry_points
+
+override_dh_installchangelogs:
+	dh_installchangelogs $(CURDIR)/debian/CHANGELOG
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..382df29
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/python-logfury-$1\.tar\.gz/ \
+  https://github.com/ppolewicz/logfury/tags .*/v?(\d\S*)\.tar\.gz

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



More information about the Python-modules-commits mailing list