summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorJohan Fleury <jfleury@arcaik.net>2018-10-09 15:38:46 -0400
committerJohan Fleury <jfleury@arcaik.net>2018-10-09 15:38:46 -0400
commitaef27d57ce03684ad7f90a52053083d5a7560021 (patch)
tree8b679d04157e14cf5fc724f29a2939f30de77f29 /debian
parent735c78d3ecb695dd16cb37879880f522c4b29c72 (diff)
Initial release (Closes: #910557)
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control47
-rw-r--r--debian/copyright47
-rw-r--r--debian/examples1
-rw-r--r--debian/pykwalify.install1
-rw-r--r--debian/python3-pykwalify.install1
-rwxr-xr-xdebian/rules10
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch3
10 files changed, 117 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..9fa0754
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+pykwalify (1.7.0-1) UNRELEASED; urgency=medium
+
+ * Initial release (Closes: #910557).
+
+ -- Johan Fleury <jfleury@arcaik.net> Sun, 07 Oct 2018 23:35:24 -0400
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..b4de394
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+11
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..8d9ad7a
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,47 @@
+Source: pykwalify
+Section: python
+Priority: optional
+Maintainer: Johan Fleury <jfleury@arcaik.net>
+Build-Depends:
+ debhelper (>= 11),
+ dh-python,
+ python-all,
+ python-setuptools,
+ python-dateutil,
+ python-docopt,
+ python-pytest,
+ python-ruamel.yaml,
+ python-testfixtures,
+ python3-all,
+ python3-setuptools,
+ python3-dateutil,
+ python3-docopt,
+ python3-pytest,
+ python3-ruamel.yaml,
+ python3-testfixtures
+Standards-Version: 4.2.1
+Homepage: https://github.com/grokzen/pykwalify
+X-Python3-Version: >= 3.6
+Vcs-Git: https://salsa.debian.org/Arcaik-guest/python-pykwalify.git
+Vcs-browser: https://salsa.debian.org/Arcaik-guest/python-pykwalify/
+
+Package: python3-pykwalify
+Architecture: any
+Depends: ${misc:Depends}, ${python3:Depends}
+Recommends: python3-ruamel.yaml
+Description: Python YAML/JSON schema validation library (Python 3)
+ PyKwalify is a open source port of the kwalify lib and specification.
+ .
+ This package installs the library for Python 3.
+
+Package: pykwalify
+Section: utils
+Architecture: any
+Depends:
+ ${misc:Depends},
+ ${python3:Depends},
+ python3-pykwalify
+Description: Python YAML/JSON schema validation library (command line program)
+ PyKwalify is a open source port of the kwalify lib and specification.
+ .
+ This package installs the command line program.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..b41550d
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,47 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pykwalify
+Source: https://github.com/Grokzen/pykwalify
+
+Files: *
+Copyright: 2013-2018 Johan Andersson
+License: MIT
+
+Files: debian/*
+Copyright: 2018 Johan Fleury <jfleury@arcaik.net>
+License: GPL-3.0+
+
+License: MIT
+ 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 THE SOFTWARE.
+
+License: GPL-3.0+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
diff --git a/debian/examples b/debian/examples
new file mode 100644
index 0000000..e39721e
--- /dev/null
+++ b/debian/examples
@@ -0,0 +1 @@
+examples/*
diff --git a/debian/pykwalify.install b/debian/pykwalify.install
new file mode 100644
index 0000000..bc7b689
--- /dev/null
+++ b/debian/pykwalify.install
@@ -0,0 +1 @@
+/usr/bin/
diff --git a/debian/python3-pykwalify.install b/debian/python3-pykwalify.install
new file mode 100644
index 0000000..0d902e5
--- /dev/null
+++ b/debian/python3-pykwalify.install
@@ -0,0 +1 @@
+/usr/lib/python3.*/dist-packages/
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..673a2d9
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE = 1
+
+%:
+ dh $@ --with python3 --buildsystem=pybuild --no-guessing-deps
+
+override_dh_clean:
+ dh_clean
+ rm -rf .pytest_cache pykwalify.egg-info
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..ef6ea4e
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=4
+opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/pykwalify-$1\.tar\.gz/ \
+https://github.com/Grokzen/pykwalify/tags .*/v?(\d\S+)\.tar\.gz