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
|
# Source package requires lxml because it builds an initial rpki.conf.
# rp package requires xinetd for historical reasons, could use "rpki-rtr server" instead.
# Division between rp and ca packages is somewhat arbitrary, and becomes less relevant as we move more and
# more of the code from C into Python. Some day we may just collapse down to a single binary package again.
# Old required database was MySQL, because we used it directly. These days we use Django ORM for everything,
# and can run over SQLite3, MySQL, PostgreSQL, or, really, anything with a Django driver. We're in the process
# of moving towards using PostgreSQL as the default but there are still some MySQL vestiges to be cleaned up.
Source: rpki
Section: net
Priority: extra
Maintainer: Rob Austein <sra@hactrn.net>
Build-Depends: debhelper (>= 8.0.0), autotools-dev, python (>= 2.7), python-all-dev, python-setuptools, python-lxml
Standards-Version: 3.9.3
Homepage: http://trac.rpki.net/
Vcs-Svn: http://subvert-rpki.hactrn.net/
Vcs-Browser: http://trac.rpki.net/browser
X-Python-Version: 2.7
Package: rpki-rp
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, python (>= 2.7), apache2, ssl-cert, python-lxml, postgresql, postgresql-client, python-psycopg2, python-django (>= 1.8.0), python-tornado, rrdtool, rsync, xinetd
Description: rpki.net relying party tools
"Relying party" validation tools from the rpki.net toolkit.
See the online documentation at http://rpki.net/.
Replaces: rpki-ca (<= 0.5767)
Package: rpki-ca
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, python (>= 2.7), apache2, ssl-cert, python-lxml, postgresql, postgresql-client, python-psycopg2, python-django (>= 1.8.0), python-tornado, libapache2-mod-wsgi, python-vobject, python-yaml, python-netifaces, rpki-rp (= ${binary:Version})
Description: rpki.net certification authority tools
"Certification authority" tools for issuing RPKI certificates and
related objects using the rpki.net toolkit.
See the online documentation at http://rpki.net/.
|