[Python-modules-commits] [python-django-netfields] 03/03: Initial release (Closes: #864887).

Michael Fladischer fladi at moszumanska.debian.org
Mon Jun 19 08:08:52 UTC 2017


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

fladi pushed a commit to branch master
in repository python-django-netfields.

commit 4950674f58d97b19d6b92f7774ee52c36a6ee070
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Mon Jun 19 10:04:56 2017 +0200

    Initial release (Closes: #864887).
---
 debian/changelog                     |  5 +++++
 debian/clean                         |  6 ++++++
 debian/compat                        |  1 +
 debian/control                       | 30 ++++++++++++++++++++++++++++
 debian/copyright                     | 38 ++++++++++++++++++++++++++++++++++++
 debian/python3-django-netfields.docs |  1 +
 debian/rules                         | 10 ++++++++++
 debian/watch                         |  4 ++++
 8 files changed, 95 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..cd0cc0c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-django-netfields (0.7-1) unstable; urgency=low
+
+  * Initial release (Closes: #864887).
+
+ -- Michael Fladischer <fladi at debian.org>  Fri, 02 Jun 2017 20:27:35 +0200
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..1d6d7b4
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1,6 @@
+django_netfields.egg-info/PKG-INFO
+django_netfields.egg-info/SOURCES.txt
+django_netfields.egg-info/dependency_links.txt
+django_netfields.egg-info/not-zip-safe
+django_netfields.egg-info/requires.txt
+django_netfields.egg-info/top_level.txt
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..d311d83
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,30 @@
+Source: python-django-netfields
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <fladi at debian.org>
+Build-Depends: debhelper (>= 10),
+               dh-python,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.8
+X-Python3-Version: >= 3.3
+Homepage: https://github.com/jimfunk/django-postgresql-netfields/
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-django-netfields.git
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-django-netfields.git
+
+Package: python3-django-netfields
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends}
+Description: Django PostgreSQL netfields implementation (Python3 version)
+ This project is an attempt at making proper PostgreSQL net related fields for
+ Django. In Django pre 1.4 the built in IPAddressField does not support IPv6 and
+ uses an inefficient HOST() cast in all lookups. As of 1.4 you can use
+ GenericIPAddressField for IPv6, but the casting problem remains.
+ .
+ In addition to the basic IPAddressField replacement a CIDR and a MACADDR field
+ have been added. This library also provides a manager that allows for advanced
+ IP based lookup directly in the ORM.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..34d2411
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,38 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-django-netfields
+Upstream-Contact: James Oakley <jfunk at funktronics.ca>
+Source: https://github.com/jimfunk/django-postgresql-netfields/
+
+Files: *
+Copyright: Thomas Adamcik and individual contributors.
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2017, Michael Fladischer <fladi at debian.org>
+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:
+ .
+    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.
+ .
+    3. Neither the name of Django 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 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/python3-django-netfields.docs b/debian/python3-django-netfields.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-django-netfields.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..f4c5c4c
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=django-netfields
+export PYBUILD_DISABLE=test
+
+%:
+	dh $@ --with python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..95c2f48
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=filenamemangle=s/.*\/v([\d\.]+.*)$/python-django-netfields-$1/ \
+https://github.com/jimfunk/django-postgresql-netfields/releases \
+/jimfunk/django-postgresql-netfields/archive/v([\d\.]+)\.tar\.gz

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



More information about the Python-modules-commits mailing list