]> git.donarmstrong.com Git - neurodebian.git/blob - neurodebian/templates/pkg.rst
Adjust to changes in DDE and build for more releases.
[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 Binary packages
19 ===============
20
21 NeuroDebian
22 -----------
23
24 {% for dist, distpkg in db|dictsort if dist[1].startswith('neurodebian') %}
25 {% if loop.first %}
26 The repository contains binary packages for the following distribution
27 releases and system architectures. The corresponding source packages
28 are available too.
29
30 .. note::
31   Do not download this package manually if you plan to use it
32   regularly. Instead configure your package manager to use this
33   repository by following the instructions on the
34   :ref:`front page <repository_howto>`.
35
36 {% endif %}
37 {{ dist[0] }} [{{ distpkg.component}}]:
38   `{{distpkg.version}} <../../debian/{{ distpkg.poolurl }}>`_ [{{ ', '.join(distpkg.architecture) }}]
39
40 {% if loop.last %}
41 .. seealso::
42
43   - Maintainer: {{ distpkg.maintainer }}
44 {% endif %}
45 {% else %}
46 *There are no packages in the NeuroDebian repository.*
47 {% endfor %}
48
49
50 Debian
51 ------
52
53 {% for dist, distpkg in db|dictsort if dist[1].startswith('debian') %}
54 {% if loop.first %}
55 {% endif %}
56 {{ dist[0] }} [{{ distpkg.component}}]:
57   `{{distpkg.version}} <http://packages.debian.org/search?suite={{ distpkg.release}}&keywords={{ pkg }}>`_ [{{ ', '.join(distpkg.architecture) }}]
58
59 {% if loop.last %}
60 .. seealso::
61
62   - Maintainer: {{ distpkg.maintainer }}
63   - Bug reports: `Debian bugtracking system <http://bugs.debian.org/src:{{ distpkg.source }}>`_
64 {% if distpkg.popcon %}
65   - Reported installations: {{ distpkg.popcon.insts }} (`more info <http://qa.debian.org/popcon.php?package={{ pkg }}>`_)
66 {% endif %}
67 {% endif %}
68 {% else %}
69 *There are no official Debian packages available.*
70
71 {% if db.main.debian_itp %}
72 However, a Debian packaging effort has been officially announced.
73 Please see the corresponding
74 `intent-to-package bug report <http://bugs.debian.org/{{ db.main.debian_itp }}>`_
75 for more information about its current status.
76 {% endif %}
77 {% endfor %}
78
79
80 Ubuntu
81 ------
82
83 {% for dist, distpkg in db.iteritems() if dist[1].startswith('ubuntu') %}
84 {% if loop.first %}
85 {% endif %}
86 {{ dist[0] }} [{{ distpkg.component }}]:
87   `{{distpkg.version}} <http://packages.ubuntu.com/search?suite={{ distpkg.release }}&keywords={{ pkg }}>`_ [{{ ', '.join(distpkg.architecture) }}]
88
89 {% if loop.last %}
90 .. seealso::
91
92   - Maintainer: {{ distpkg.maintainer }}
93   - Bug reports: `Ubuntu Launchpad <https://bugs.launchpad.net/ubuntu/+source/{{ distpkg.source }}>`_
94 {% if distpkg.popcon %}
95   - Reported installations: {{ distpkg.popcon.insts }}
96 {% endif %}
97 {% endif %}
98 {% else %}
99 *There are no official Ubuntu packages available.*
100 {% endfor %}