debian/0000755000000000000000000000000012253576442007200 5ustar debian/rules0000755000000000000000000000130712250066646010256 0ustar #!/usr/bin/make -f %: dh $@ --with=python2 .PHONY: override_dh_installchangelogs override_dh_installchangelogs: sed -n -e '/^Changes in version/,$$ { /^---/q; p }' < README >changelog dh_installchangelogs changelog .PHONY: override_dh_auto_test override_dh_auto_test: ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) django-admin startproject testproject if [ -d testproject/testproject ]; then \ cp debian/settings.py testproject/testproject ; \ else \ cp debian/settings.py testproject ; \ fi set -e; \ for python in $(shell pyversions -r); do \ PYTHONPATH=".:src:testproject" $$python testproject/manage.py test --settings=testproject.settings picklefield ; \ done rm -rf testproject endif debian/source/0000755000000000000000000000000012253576230010473 5ustar debian/source/format0000644000000000000000000000001411355435150011676 0ustar 3.0 (quilt) debian/control0000644000000000000000000000256112250066646010604 0ustar Source: django-picklefield Section: python Priority: optional Maintainer: Debian Python Modules Team Uploaders: Michael Fladischer Build-Depends: debhelper (>= 8.1.0~), python-all, python-django, python-setuptools, python-six, python-support Standards-Version: 3.9.5 X-Python-Version: >= 2.5 Homepage: https://github.com/gintas/django-picklefield Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/django-picklefield/trunk/ Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/django-picklefield/trunk/ Package: python-django-picklefield Architecture: all Depends: python-django, python-six, ${misc:Depends}, ${python:Depends} Enhances: python-django-south Description: Pickled object field for Django django-picklefield provides an implementation of a pickled object field for the Django framework. Such fields can contain any picklable objects. . It is useful for storing just about anything in the database when there isn't a 'proper' field for the job. PickledObjectField is database-agnostic, and should work with any database backend you can throw at it. You can pass in any Python object and it will automatically be converted behind the scenes. You never have to manually pickle or unpickle anything. debian/clean0000644000000000000000000000013711751426662010206 0ustar src/django_picklefield.egg-info/SOURCES.txt src/django_picklefield.egg-info/PKG-INFO changelog debian/compat0000644000000000000000000000000211355435150010366 0ustar 7 debian/watch0000644000000000000000000000014711355435150010223 0ustar version=3 http://pypi.python.org/packages/source/d/django-picklefield/django-picklefield-(.*)\.tar\.gz debian/settings.py0000644000000000000000000000033611744307000011376 0ustar DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': 'testproject/test.db3' } } INSTALLED_APPS = ["picklefield"] SITE_ID = 1 ROOT_URLCONF = "testproject.urls" SECRET_KEY = "1" debian/changelog0000644000000000000000000000633612253576215011060 0ustar django-picklefield (0.3.1-1) unstable; urgency=low * New upstream release. * Switch to dh_python2. * Bump Standards version to 3.9.5. * Make Build-Depends on python-all and python-django unversioned as no prior versions are available in Wheezy. * Drop XS-Python-Version. * Add X-Python-Version. * Update years in d/copyright. * Rename MIT license to Expat. -- Michael Fladischer Mon, 16 Dec 2013 14:07:50 +0100 django-picklefield (0.3.0-1) unstable; urgency=low [ Michael Fladischer ] * New upstream release. * Add python-six as build and runtime dependency. * Remove temporary fix for PKG-INFO. * Bump standards version to 3.9.4. * Change Build-Depends on debhelper to >= 8.1.0 to satisfy build-arch and build-indep targets. [ Jakub Wilk ] * Use canonical URIs for Vcs-* fields. -- Michael Fladischer Wed, 08 May 2013 08:10:53 +0200 django-picklefield (0.2.1-2) unstable; urgency=low * Add src/django_picklefield.egg-info/PKG-INFO to d/clean to allow the package to be built twice in a row (Closes: #671313). -- Michael Fladischer Fri, 11 May 2012 08:26:24 +0200 django-picklefield (0.2.1-1) unstable; urgency=low * New upstream release. * Fix tests for django (>= 1.4) FTBFS (Closes: #669493). - Add our own settings.py for the tests - Bump B-D on python-django to (>= 1.2) -- Michael Fladischer Mon, 23 Apr 2012 15:00:01 +0200 django-picklefield (0.2.0-1) unstable; urgency=low * New upstream release. * Change order of my name. * Bump standards version to 3.9.3. * Temporary fix for Metadata-Version in PKG-INFO. * Reformat files using wrap-and-sort. * Update DEP-5 URL to 1.0. * Update years in d/copyright. -- Michael Fladischer Fri, 16 Mar 2012 12:28:02 +0100 django-picklefield (0.1.9-2) unstable; urgency=low * Upload to unstable. * Update DEP5 format. * Set PMPT as maintainer and myself as uploader. * Drop debian/pyversions in favour of XS-Python-Version. -- Fladischer Michael Mon, 07 Feb 2011 14:03:43 +0100 django-picklefield (0.1.9-1) experimental; urgency=low * New upstream release. * Remove workaround for #575377 as it is fixed by python-2.5.5-5. * Use DEP5 for copyright file. * Bump Standards-Version to 3.9.1 (no changes required). * Drop python-pysqlite2 b-d. * Change debian/* license from GPL to MIT. * Update homepage. * Update DEP5 revision to 153. -- Fladischer Michael Fri, 07 Jan 2011 16:12:28 +0100 django-picklefield (0.1.6-1) unstable; urgency=low * New upstream release. -- Fladischer Michael Mon, 19 Apr 2010 16:42:35 +0200 django-picklefield (0.1.5-1) unstable; urgency=low * New upstream release. * Add python-django-south to Enhances. * Add Vcs-* fields. * Set Debian Python Modules Packaging Team as Uploaders. -- Fladischer Michael Thu, 08 Apr 2010 16:12:38 +0200 django-picklefield (0.1.4-1) unstable; urgency=low * Initial release (Closes: #573162) -- Fladischer Michael Tue, 30 Mar 2010 14:27:07 +0200 debian/docs0000644000000000000000000000000711355435150010040 0ustar README debian/copyright0000644000000000000000000000301212253576173011130 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: django-picklefield Upstream-Contact: Gintautas Miliauskas Source: http://pypi.python.org/pypi/django-picklefield/ Files: * Copyright: 2009-2013, Gintautas Miliauskas 2009, Taavi Taijala 2007, Oliver Beattie License: Expat Files: debian/* Copyright: 2012-2013, Michael Fladischer License: Expat License: Expat 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.