[Python-modules-commits] [python-jsonref] 02/05: WIP initial release

Paolo Greppi paolog-guest at moszumanska.debian.org
Tue Nov 29 07:28:36 UTC 2016


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

paolog-guest pushed a commit to branch master
in repository python-jsonref.

commit c7e548c2c72f534bda40810272c8390785462e1b
Author: Paolo Greppi <paolo.greppi at libpf.com>
Date:   Sat Nov 19 07:45:55 2016 +0000

    WIP initial release
    
        TODOs:
        - clean up after gbp buildpackage
        - tests are not running
        - lintian warnings:
          - W: python-jsonref-doc: empty-binary-package
          - W: python-jsonref source: file-without-copyright-information LICENSE
---
 debian/changelog |  5 +++++
 debian/compat    |  1 +
 debian/control   | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright | 47 +++++++++++++++++++++++++++++++++++++++++++++++
 debian/rules     |  7 +++++++
 debian/watch     |  3 +++
 6 files changed, 118 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..ce59068
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-jsonref (0.1-1) UNRELEASED; urgency=medium
+
+  * Initial release (Closes: #844986).
+
+ -- Paolo Greppi <paolo.greppi at libpf.com>  Sat, 19 Nov 2016 07:39:37 +0000
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..8e66c08
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,55 @@
+Source: python-jsonref
+Section: python
+Priority: optional
+Maintainer: Paolo Greppi <paolo.greppi at libpf.com>
+Build-Depends: debhelper (>= 10), dh-python, python-all, python-setuptools, python3-all, python3-setuptools, python-docutils, python-sphinx, python-xmltodict, python-termcolor, python-yaml, python-markdown
+Standards-Version: 3.9.8
+Homepage: https://github.com/gazpachoking/jsonref
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.3
+#Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/#PACKAGE#.git
+#Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/#PACKAGE#.git/
+#Testsuite: autopkgtest-pkg-python
+
+Package: python-jsonref
+Section: python
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Suggests: python-jsonref-doc
+Description: JSON Reference implementation for Python 2
+ Python library for automatic dereferencing of JSON Reference objects.
+ . 
+ It lets you use a data structure with JSON reference objects, as if the
+ references had been replaced with the referent data. References are evaluated
+ lazily. Nothing is dereferenced until it is used. Recursive references are
+ supported, and create recursive python data structures.
+ .
+ This package installs the library for Python 2.
+
+Package: python3-jsonref
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Suggests: python-jsonref-doc
+Description: JSON Reference implementation for Python 3
+ Python library for automatic dereferencing of JSON Reference object.
+ . 
+ It lets you use a data structure with JSON reference objects, as if the
+ references had been replaced with the referent data. References are evaluated
+ lazily. Nothing is dereferenced until it is used. Recursive references are
+ supported, and create recursive python data structures.
+ .
+ This package installs the library for Python 3.
+
+Package: python-jsonref-doc
+Architecture: all
+Section: doc
+Depends: ${sphinxdoc:Depends}, ${misc:Depends}
+Description: JSON Reference implementation for Python (common documentation)
+ Python library for automatic dereferencing of JSON Reference objects.
+ . 
+ It lets you use a data structure with JSON reference objects, as if the
+ references had been replaced with the referent data. References are evaluated
+ lazily. Nothing is dereferenced until it is used. Recursive references are
+ supported, and create recursive python data structures.
+ .
+ This is the common documentation package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..617ab0f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,47 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: jsonref
+Source: <https://github.com/gazpachoking/jsonref>
+
+Files:     .travis.yml
+           MANIFEST.in
+           README.rst
+           docs/conf.py
+           docs/index.rst
+           jsonref.py
+           proxytypes.py
+           setup.py
+           tests.py
+Copyright: Copyright (C) 2013 Chase Sterling
+License: MIT
+ The MIT License
+ .
+ Copyright (C) 2013 Chase Sterling
+ .
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+
+Files:     debian/changelog
+           debian/copyright
+           debian/compat
+           debian/control
+           debian/rules
+           debian/watch
+Copyright: Copyright (C) 2016 Paolo Greppi
+License: GPL-3+
+ On Debian systems, the full text of the GNU General Public
+ License version 3 can be found in the file
+ `/usr/share/common-licenses/GPL-3'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..96c0a8d
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#! /usr/bin/make -f
+
+#export DH_VERBOSE = 1
+export PYBUILD_NAME = jsonref
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..70001b9
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=4
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/python-jsonref-$1\.tar\.gz/ \
+  https://github.com/gazpachoking/jsonref/tags .*/v?(\d\S*)\.tar\.gz

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



More information about the Python-modules-commits mailing list