summaryrefslogtreecommitdiff
path: root/jsonschema-0.6/debian/python-jsonschema/DEBIAN
diff options
context:
space:
mode:
Diffstat (limited to 'jsonschema-0.6/debian/python-jsonschema/DEBIAN')
-rw-r--r--jsonschema-0.6/debian/python-jsonschema/DEBIAN/control12
-rw-r--r--jsonschema-0.6/debian/python-jsonschema/DEBIAN/md5sums7
-rwxr-xr-xjsonschema-0.6/debian/python-jsonschema/DEBIAN/postinst7
-rwxr-xr-xjsonschema-0.6/debian/python-jsonschema/DEBIAN/prerm7
4 files changed, 33 insertions, 0 deletions
diff --git a/jsonschema-0.6/debian/python-jsonschema/DEBIAN/control b/jsonschema-0.6/debian/python-jsonschema/DEBIAN/control
new file mode 100644
index 0000000..548bcf5
--- /dev/null
+++ b/jsonschema-0.6/debian/python-jsonschema/DEBIAN/control
@@ -0,0 +1,12 @@
+Package: python-jsonschema
+Version: 0.6-1
+Architecture: all
+Maintainer: Kristina Clair <kclair@leap.se>
+Installed-Size: 92
+Depends: python (>= 2.6), python-support (>= 0.90.0)
+Section: python
+Priority: optional
+Homepage: http://pypi.python.org/pypi/jsonschema
+Description: Provides the jsonschema python package
+ Provides the jsonschema python package,
+ which is an implementation of JSON Schema for python.
diff --git a/jsonschema-0.6/debian/python-jsonschema/DEBIAN/md5sums b/jsonschema-0.6/debian/python-jsonschema/DEBIAN/md5sums
new file mode 100644
index 0000000..467f834
--- /dev/null
+++ b/jsonschema-0.6/debian/python-jsonschema/DEBIAN/md5sums
@@ -0,0 +1,7 @@
+39440ee04f8451db46af9b324e36bf60 usr/share/doc/python-jsonschema/README.Debian
+96fe96b300c2eed023c601be503a78aa usr/share/doc/python-jsonschema/README.rst
+925e05fb5e93ec64cdd5d7dd696b8c70 usr/share/doc/python-jsonschema/changelog.Debian.gz
+705bc94b94d9a542833c37c0cc1a6728 usr/share/doc/python-jsonschema/copyright
+26722d006c9bc3cb6956939886478e13 usr/share/pyshared/jsonschema-0.6.egg-info
+6fd447dc9ac61fb54314443a6f8b60d5 usr/share/pyshared/jsonschema.py
+cf99d8fd284d97fac533d1caf10b1c59 usr/share/python-support/python-jsonschema.public
diff --git a/jsonschema-0.6/debian/python-jsonschema/DEBIAN/postinst b/jsonschema-0.6/debian/python-jsonschema/DEBIAN/postinst
new file mode 100755
index 0000000..5be270c
--- /dev/null
+++ b/jsonschema-0.6/debian/python-jsonschema/DEBIAN/postinst
@@ -0,0 +1,7 @@
+#!/bin/sh
+set -e
+# Automatically added by dh_pysupport
+if which update-python-modules >/dev/null 2>&1; then
+ update-python-modules python-jsonschema.public
+fi
+# End automatically added section
diff --git a/jsonschema-0.6/debian/python-jsonschema/DEBIAN/prerm b/jsonschema-0.6/debian/python-jsonschema/DEBIAN/prerm
new file mode 100755
index 0000000..bf381c4
--- /dev/null
+++ b/jsonschema-0.6/debian/python-jsonschema/DEBIAN/prerm
@@ -0,0 +1,7 @@
+#!/bin/sh
+set -e
+# Automatically added by dh_pysupport
+if which update-python-modules >/dev/null 2>&1; then
+ update-python-modules -c python-jsonschema.public
+fi
+# End automatically added section