[Python-modules-commits] r25260 - in packages/python-django-jsonfield/trunk (10 files)

hertzog at users.alioth.debian.org hertzog at users.alioth.debian.org
Thu Jul 25 13:05:17 UTC 2013


    Date: Thursday, July 25, 2013 @ 13:05:15
  Author: hertzog
Revision: 25260

[svn-inject] Application des modifications Debian (0.9.10-1) pour le tronc

Added:
  packages/python-django-jsonfield/trunk/debian/
  packages/python-django-jsonfield/trunk/debian/changelog
  packages/python-django-jsonfield/trunk/debian/compat
  packages/python-django-jsonfield/trunk/debian/control
  packages/python-django-jsonfield/trunk/debian/copyright
  packages/python-django-jsonfield/trunk/debian/docs
  packages/python-django-jsonfield/trunk/debian/rules
  packages/python-django-jsonfield/trunk/debian/source/
  packages/python-django-jsonfield/trunk/debian/source/format
  packages/python-django-jsonfield/trunk/debian/watch


Property changes on: packages/python-django-jsonfield/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-django-jsonfield/trunk/debian/changelog
===================================================================
--- packages/python-django-jsonfield/trunk/debian/changelog	                        (rev 0)
+++ packages/python-django-jsonfield/trunk/debian/changelog	2013-07-25 13:05:15 UTC (rev 25260)
@@ -0,0 +1,5 @@
+python-django-jsonfield (0.9.10-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Raphaël Hertzog <hertzog at debian.org>  Thu, 25 Jul 2013 14:51:15 +0200

Added: packages/python-django-jsonfield/trunk/debian/compat
===================================================================
--- packages/python-django-jsonfield/trunk/debian/compat	                        (rev 0)
+++ packages/python-django-jsonfield/trunk/debian/compat	2013-07-25 13:05:15 UTC (rev 25260)
@@ -0,0 +1 @@
+9

Added: packages/python-django-jsonfield/trunk/debian/control
===================================================================
--- packages/python-django-jsonfield/trunk/debian/control	                        (rev 0)
+++ packages/python-django-jsonfield/trunk/debian/control	2013-07-25 13:05:15 UTC (rev 25260)
@@ -0,0 +1,22 @@
+Source: python-django-jsonfield
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Raphaël Hertzog <hertzog at debian.org>
+Standards-Version: 3.9.4
+Build-Depends: debhelper (>= 9), python (>= 2.6.6-3~)
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-django-jsonfield/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-django-tagging/trunk/
+Homepage: https://bitbucket.org/schinckel/django-jsonfield/
+
+Package: python-django-jsonfield
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, python-django (>= 1.3)
+Description: JSON field for Django models
+ This package provides a Django field (jsonfield.JSONField) that you can use to
+ store arbitrary JSON structures in a simple text field at the database level.
+ .
+ Accessing the field returns a decoded object (list, dict, string).
+ .
+ In forms, it appears like a TextField but the input is validated to be valid
+ JSON.

Added: packages/python-django-jsonfield/trunk/debian/copyright
===================================================================
--- packages/python-django-jsonfield/trunk/debian/copyright	                        (rev 0)
+++ packages/python-django-jsonfield/trunk/debian/copyright	2013-07-25 13:05:15 UTC (rev 25260)
@@ -0,0 +1,33 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: django-jsonfield
+Source: https://pypi.python.org/pypi/django-jsonfield/
+
+Files: *
+Copyright: 2012 Matthew Schinckel
+License: BSD-3-Clause
+
+Files: debian/*
+Copyright: 2012 Raphaël Hertzog <hertzog 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:
+     * 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.
+     * 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 MATTHEW SCHINCKEL 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.

Added: packages/python-django-jsonfield/trunk/debian/docs
===================================================================
--- packages/python-django-jsonfield/trunk/debian/docs	                        (rev 0)
+++ packages/python-django-jsonfield/trunk/debian/docs	2013-07-25 13:05:15 UTC (rev 25260)
@@ -0,0 +1 @@
+README.rst

Added: packages/python-django-jsonfield/trunk/debian/rules
===================================================================
--- packages/python-django-jsonfield/trunk/debian/rules	                        (rev 0)
+++ packages/python-django-jsonfield/trunk/debian/rules	2013-07-25 13:05:15 UTC (rev 25260)
@@ -0,0 +1,12 @@
+#!/usr/bin/make -f
+
+PKG = $(shell dh_listpackages)
+
+%:
+	dh $@ --with python2
+
+override_dh_installdocs:
+	dh_installdocs
+	# Generate documentation
+	rst2html <docs/overview.txt >debian/$(PKG)/usr/share/doc/$(PKG)/overview.html
+


Property changes on: packages/python-django-jsonfield/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-django-jsonfield/trunk/debian/source/format
===================================================================
--- packages/python-django-jsonfield/trunk/debian/source/format	                        (rev 0)
+++ packages/python-django-jsonfield/trunk/debian/source/format	2013-07-25 13:05:15 UTC (rev 25260)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-django-jsonfield/trunk/debian/watch
===================================================================
--- packages/python-django-jsonfield/trunk/debian/watch	                        (rev 0)
+++ packages/python-django-jsonfield/trunk/debian/watch	2013-07-25 13:05:15 UTC (rev 25260)
@@ -0,0 +1,3 @@
+version=3
+http://pypi.python.org/pypi/django-jsonfield/ \
+ .*/django-jsonfield/django-jsonfield-(.+).tar.gz




More information about the Python-modules-commits mailing list