]> git.donarmstrong.com Git - neurodebian.git/blob - neurodebian/templates/pkg.rst
4c0b36f79106814652c53a5d37555c02cf74eaed
[neurodebian.git] / neurodebian / templates / pkg.rst
1
2 .. _pkg_{{ pkg }}:
3
4
5 {{ title }}
6
7 {{ long_description }}
8
9 Homepage: {{ db.main.homepage }}
10
11 {% if db.main.publication %}
12 Citable reference:
13   *{{ db.main.publication.authors }}* ({{ db.main.publication.year }}).
14   {%- if db.main.publication.url %} `{{ db.main.publication.title }} <{{ db.main.publication.url }}>`_.
15   {%- else %} {{ db.main.publication.title }}.
16   {%- endif %} {{ db.main.publication.in }}.
17   {%- if db.main.publication.doi %} (`DOI <http://dx.doi.org/{{ db.main.publication.doi }}>`_)
18   {%- endif %}
19 {% endif %}
20
21 {% if db.main.registration %}
22 .. note::
23   The software authors ask users to
24   `register <{{ db.main.registration }}>`_. Available user statistics might be 
25   helpful to acquire funding for this project and therefore foster continued
26   developement in the future.
27 {% endif %}
28
29 {% if db.blends or db.main.debian_popcon or db.main.ubuntu_popcon %}
30
31 Package Details
32 ===============
33
34 {% if db.blends %}
35 `Debian Pure Blends <http://wiki.debian.org/DebianPureBlends>`_ Status
36 ----------------------------------------------------------------------
37
38 Associated blends:
39
40 {% for blend, name, url in db.blends.tasks %}
41 * `{{ name }} ({{ blend }}) <{{ url }}>`_
42 {% endfor %}
43 {% if db.blends.remark %}
44 .. note::
45 {{ db.blends.remark | indent(width=2, indentfirst=true) }}
46 {% endif %}
47 {% endif %}
48
49 {% if db.main.debian_popcon or db.main.ubuntu_popcon %}
50 Reported installations [#]_
51 ---------------------------
52
53 {% if db.main.debian_popcon %}
54 - Debian: {{ db.main.debian_popcon.insts }} (`more info <http://qa.debian.org/popcon.php?package={{ pkg }}>`_)
55 {% endif %}
56 {% if db.main.ubuntu_popcon %}
57 - Ubuntu: {{ db.main.ubuntu_popcon.insts }}
58 {% endif %}
59
60 .. [#] Due to the nature of this data, the reported number can only be
61        considered a conservative estimate of the lower bound of the true
62        number of installations.
63
64 {% endif %}
65
66 {% endif %}
67
68
69
70 Binary packages
71 ===============
72
73 NeuroDebian
74 -----------
75
76 {% for dist, distpkg in db|dictsort if dist[1].startswith('neurodebian') %}
77 {% if loop.first %}
78 The repository contains binary packages for the following distribution
79 releases and system architectures. The corresponding source packages
80 are available too.
81
82 .. note::
83   Do not download this package manually if you plan to use it
84   regularly. Instead configure your package manager to use this
85   repository by following the instructions on the
86   :ref:`front page <repository_howto>`.
87
88 {% endif %}
89 {{ dist[0] }} [{{ distpkg.component}}]:
90   `{{distpkg.version}} <../../debian/{{ distpkg.poolurl }}>`_ [{{ ', '.join(distpkg.architecture) }}]
91
92 {% if loop.last %}
93 .. seealso::
94
95   - Original Maintainer: {{ distpkg.maintainer }}
96
97     (if there is any chance that some problem is specific to the package
98     distributed through the NeuroDebian repository, please contact
99     pkg-exppsy-maintainers@lists.alioth.debian.org instead of the original
100     maintainer)
101 {% endif %}
102 {% else %}
103 *There are no packages in the NeuroDebian repository.*
104 {% endfor %}
105
106
107 Debian
108 ------
109
110 {% for dist, distpkg in db|dictsort if dist[1].startswith('debian') %}
111 {% if loop.first %}
112 {% endif %}
113 {{ dist[0] }} [{{ distpkg.component}}]:
114   `{{distpkg.version}} <http://packages.debian.org/search?suite={{ distpkg.release}}&keywords={{ pkg }}>`_ [{{ ', '.join(distpkg.architecture) }}]
115
116 {% if loop.last %}
117 .. seealso::
118
119   - Maintainer: {{ distpkg.maintainer }}
120   - Bug reports: `Debian bugtracking system <http://bugs.debian.org/src:{{ distpkg.source }}>`_
121 {% endif %}
122 {% else %}
123 *There are no official Debian packages available.*
124
125 {% if db.main.debian_itp %}
126 However, a Debian packaging effort has been officially announced.
127 Please see the corresponding
128 `intent-to-package bug report <http://bugs.debian.org/{{ db.main.debian_itp }}>`_
129 for more information about its current status.
130 {% endif %}
131 {% endfor %}
132
133
134 Ubuntu
135 ------
136
137 {% for dist, distpkg in db|dictsort if dist[1].startswith('ubuntu') %}
138 {% if loop.first %}
139 {% endif %}
140 {{ dist[0] }} [{{ distpkg.component }}]:
141   `{{distpkg.version}} <http://packages.ubuntu.com/search?suite={{ distpkg.release }}&keywords={{ pkg }}>`_ [{{ ', '.join(distpkg.architecture) }}]
142
143 {% if loop.last %}
144 .. seealso::
145
146   - Maintainer: {{ distpkg.maintainer }}
147   - Bug reports: `Ubuntu Launchpad <https://bugs.launchpad.net/ubuntu/+source/{{ distpkg.source }}>`_
148 {% endif %}
149 {% else %}
150 *There are no official Ubuntu packages available.*
151 {% endfor %}