File: control

package info (click to toggle)
django-picklefield 0.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 196 kB
  • ctags: 71
  • sloc: python: 205; makefile: 20
file content (58 lines) | stat: -rw-r--r-- 2,345 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Source: django-picklefield
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Michael Fladischer <fladi@debian.org>
Build-Depends: debhelper (>= 9),
               dh-python,
               python-all,
               python-django,
               python-setuptools,
               python-six,
               python3-all,
               python3-django,
               python3-setuptools,
               python3-six
Standards-Version: 3.9.7
X-Python-Version: >= 2.5
X-Python3-Version: >= 3.0
Homepage: https://github.com/gintas/django-picklefield
Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/django-picklefield.git
Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/django-picklefield.git

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.

Package: python3-django-picklefield
Architecture: all
Depends: python3-django,
         python3-six,
         ${misc:Depends},
         ${python3:Depends}
Description: Pickled object field for Django (Python3 version)
 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.
 .
 This package contains the Python 3 version of the library.