]> git.donarmstrong.com Git - neurodebian.git/blob - neurodebian/templates/pkg.rst
Big rewrite using DDE and jinja insead of homebrew.
[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 {% for dist, distpkg in db|dictsort if dist[1].startswith('neurodebian') %}
22 {% if loop.first %}
23 NeuroDebian
24 -----------
25
26 {% endif %}
27 {{ dist[0] }} [{{ distpkg.drc.split()[2]}}]:
28   `{{distpkg.version}} <../../debian/{{ distpkg.poolurl }}>`_ [{{ ', '.join(distpkg.architecture) }}]
29
30 {% if loop.last %}
31 .. seealso::
32
33   - Maintainer: {{ distpkg.maintainer }}
34 {% endif %}
35 {% else %}
36 *There are no packages in the NeuroDebian repository.*
37 {% endfor %}
38
39
40 {% for dist, distpkg in db|dictsort if dist[1].startswith('debian') %}
41 {% if loop.first %}
42 Debian
43 ------
44
45 {% endif %}
46 {{ dist[0] }} [{{ distpkg.drc.split()[2]}}]:
47   `{{distpkg.version}} <http://packages.debian.org/search?suite={{ distpkg.drc.split()[1]}}&keywords={{ pkg }}>`_ [{{ ', '.join(distpkg.architecture) }}]
48
49 {% if loop.last %}
50 .. seealso::
51
52   - Maintainer: {{ distpkg.maintainer }}
53   - Bug reports: `Debian bugtracking system <http://bugs.debian.org/src:{{ distpkg.sv.split()[0] }}>`_
54 {% if distpkg.popcon %}
55   - Reported installations: {{ distpkg.popcon.insts }}
56 {% endif %}
57 {% endif %}
58 {% else %}
59 *There are no official Debian packages available.*
60
61 {% if db.main.debian_itp %}
62 However, a Debian packaging effort has been officially announced.
63 Please see the corresponding
64 `intent-to-package bug report <http://bugs.debian.org/{{ db.main.debian_itp }}>`_
65 for more information about its current status.
66 {% endif %}
67 {% endfor %}
68
69
70 {% for dist, distpkg in db.iteritems() if dist[1].startswith('ubuntu') %}
71 {% if loop.first %}
72 Ubuntu
73 ------
74
75 {% endif %}
76 {{ dist[0] }} [{{ distpkg.drc.split()[2]}}]:
77   `{{distpkg.version}} <http://packages.ubuntu.com/search?suite={{ distpkg.drc.split()[1]}}&keywords={{ pkg }}>`_ [{{ ', '.join(distpkg.architecture) }}]
78
79 {% if loop.last %}
80 .. seealso::
81
82   - Maintainer: {{ distpkg.maintainer }}
83   - Bug reports: `Ubuntu Launchpad <https://bugs.launchpad.net/ubuntu/+source/{{ distpkg.sv.split()[0] }}>`_
84 {% if distpkg.popcon %}
85   - Reported installations: {{ distpkg.popcon.insts }}
86 {% endif %}
87 {% endif %}
88 {% else %}
89 *There are no official Ubuntu packages available.*
90 {% endfor %}