This file is indexed.

/usr/share/doc/dh-python/README.PyDist is in dh-python 1.20140128-1ubuntu8.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
============
PyDist files
============

DISTNAME [VRANGE] [DEPENDENCY][; [PEP386] [RULES]]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

PyDist files help tools like dh_python2/3 to translate Python dependencies
(from setup.py's install_requires or egg's requires.txt file) to Debian
dependencies.


Required fields:
~~~~~~~~~~~~~~~~

DISTNAME
````````
Python distribution name (you can find it at the beginning of .egg-info
file/directory name that your package provides).

Examples:
 * SQLAlchemy
 * Jinja2
 * numpy


Optional fields:
~~~~~~~~~~~~~~~~

VRANGE
``````
Python version or version range the line applies to.

Examples:
 * 2.6		(Python 2.6 only)
 * 2.5-		(Python 2.5 and newer)
 * 2.5-2.7	(Python 2.5 or 2.6)
 * -2.7		(Python 2.6 or older)

 * 3.1		(Python 3.1 only)
 * 3.1-		(Python 3.1 and newer)
 * 3.1-3.3	(Python 3.1 or 3.2)
 * -3.4		(Python 3.3 or older)

DEPENDENCY
``````````
Debian dependency, multiple packages or versions are allowed.
If not set, given Python distribution name will be ignored.

Examples:
 * python-mako
 * python-jinja2 | python (>= 2.6)
 * python-sqlalchemy (>= 0.5), python-sqlalchemy (<< 0.6)

 * python3-mako
 * python3-jinja2 | python3 (>= 3.0)
 * python3-sqlalchemy (>= 0.5), python3-sqlalchemy (<< 0.6)

PEP386
``````
Standards flag: upstream uses versioning schema described in PEP 386.

RULES
`````
Rules needed to translate upstream version to Debian one. If PEP386 is
set, its rules will be applied later. Multiple rules are allowed, separate them
with a space.

Examples:
 * s/^/2:/
 * s/alpha/~alpha/ s/^/1:/


Notes:
~~~~~~

You can use multiple lines if binary package provides more than one Python
distribution or if you want to specify different dependencies for each Python
version or version range.

If you use dh_python2, it will install debian/binary_package_name.pydist file
to /usr/share/dh-python/dist/cpython2/binary_package_name automatically.

If you use dh_python3, it will install debian/binary_package_name.pydist file
to /usr/share/dh-python/dist/cpython3/binary_package_name automatically.


Complete examples:
~~~~~~~~~~~~~~~~~~
 * SQLAlchemy python-sqlalchemy (>= 0.5), python-sqlalchemy (<< 0.6)
 * Mako python-mako; PEP386
 * foo -2.5 python-oldfoo; s/^/3:/
 * foo 2.5- python-foo; PEP386
 * Bar 2.6-

 * SQLAlchemy python3-sqlalchemy (>= 0.5), python3-sqlalchemy (<< 0.6)
 * Mako python3-mako; PEP386
 * foo -3.2 python3-oldfoo; s/^/3:/
 * foo 3.2- python3-foo; PEP386
 * Bar 2.6-

.. vim: ft=rst