]> git.donarmstrong.com Git - neurodebian.git/blob - neurodebian/templates/pkg.rst
Make it work with unicode.
[neurodebian.git] / neurodebian / templates / pkg.rst
1
2 .. _pkg_{{ pkg }}:
3
4
5 {{ title }}
6
7 {{ long_description | wordwrap(width=79, break_long_words=False) }}
8
9 Homepage: {{ db.main.homepage }}
10
11 {% if db.blends %}
12 Associated `Debian Pure Blends <http://wiki.debian.org/DebianPureBlends>`_:
13 {% for blend, name, url in db.blends.tasks %}
14 * `{{ name }} ({{ blend }}) <{{ url }}>`_
15 {% endfor %}
16 {% endif %}
17
18 {% if db.main.debian_popcon or db.main.ubuntu_popcon %}
19 Number of reported installations [#]_:
20 {% if db.main.debian_popcon %}
21 - Debian: {{ db.main.debian_popcon.insts }} (`more info <http://qa.debian.org/popcon.php?package={{ pkg }}>`_)
22 {% endif %}
23 {% if db.main.ubuntu_popcon %}
24 - Ubuntu: {{ db.main.ubuntu_popcon.insts }}
25 {% endif %}
26
27 .. [#] Due to the nature of this data, the reported number can only be
28        considered a conservative estimate of the lower bound of the true
29        number of installations.
30
31 {% endif %}
32
33
34
35 Binary packages
36 ===============
37
38 NeuroDebian
39 -----------
40
41 {% for dist, distpkg in db|dictsort if dist[1].startswith('neurodebian') %}
42 {% if loop.first %}
43 The repository contains binary packages for the following distribution
44 releases and system architectures. The corresponding source packages
45 are available too.
46
47 .. note::
48   Do not download this package manually if you plan to use it
49   regularly. Instead configure your package manager to use this
50   repository by following the instructions on the
51   :ref:`front page <repository_howto>`.
52
53 {% endif %}
54 {{ dist[0] }} [{{ distpkg.component}}]:
55   `{{distpkg.version}} <../../debian/{{ distpkg.poolurl }}>`_ [{{ ', '.join(distpkg.architecture) }}]
56
57 {% if loop.last %}
58 .. seealso::
59
60   - Maintainer: {{ distpkg.maintainer }}
61 {% endif %}
62 {% else %}
63 *There are no packages in the NeuroDebian repository.*
64 {% endfor %}
65
66
67 Debian
68 ------
69
70 {% for dist, distpkg in db|dictsort if dist[1].startswith('debian') %}
71 {% if loop.first %}
72 {% endif %}
73 {{ dist[0] }} [{{ distpkg.component}}]:
74   `{{distpkg.version}} <http://packages.debian.org/search?suite={{ distpkg.release}}&keywords={{ pkg }}>`_ [{{ ', '.join(distpkg.architecture) }}]
75
76 {% if loop.last %}
77 .. seealso::
78
79   - Maintainer: {{ distpkg.maintainer }}
80   - Bug reports: `Debian bugtracking system <http://bugs.debian.org/src:{{ distpkg.source }}>`_
81 {% endif %}
82 {% else %}
83 *There are no official Debian packages available.*
84
85 {% if db.main.debian_itp %}
86 However, a Debian packaging effort has been officially announced.
87 Please see the corresponding
88 `intent-to-package bug report <http://bugs.debian.org/{{ db.main.debian_itp }}>`_
89 for more information about its current status.
90 {% endif %}
91 {% endfor %}
92
93
94 Ubuntu
95 ------
96
97 {% for dist, distpkg in db|dictsort if dist[1].startswith('ubuntu') %}
98 {% if loop.first %}
99 {% endif %}
100 {{ dist[0] }} [{{ distpkg.component }}]:
101   `{{distpkg.version}} <http://packages.ubuntu.com/search?suite={{ distpkg.release }}&keywords={{ pkg }}>`_ [{{ ', '.join(distpkg.architecture) }}]
102
103 {% if loop.last %}
104 .. seealso::
105
106   - Maintainer: {{ distpkg.maintainer }}
107   - Bug reports: `Ubuntu Launchpad <https://bugs.launchpad.net/ubuntu/+source/{{ distpkg.source }}>`_
108 {% endif %}
109 {% else %}
110 *There are no official Ubuntu packages available.*
111 {% endfor %}