This file is indexed.

/usr/share/doc/tahoe-lafs/debian.rst is in tahoe-lafs 1.12.1-2+build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
.. -*- coding: utf-8-with-signature -*-

=========================
Debian and Ubuntu Support
=========================

1.  `Overview`_
2.  `Dependency Packages`_


Overview
========

Tahoe-LAFS is provided as a ``.deb`` package in current Debian (>= wheezy)
and Ubuntu (>= lucid) releases. Before official packages were added, the Tahoe
source tree provided support for building unofficial packages for a variety
of popular Debian/Ubuntu versions. The project also ran buildbots to create
``.debs`` of current trunk for ease of testing.

As of version 1.9, the source tree no longer provides these tools. To
construct a ``.deb`` from current trunk, your best bet is to apply the current
Debian diff from the latest upstream package and invoke the ``debian/rules``
as usual. Debian's standard ``apt-get`` tool can be used to fetch the current
source package (including the Debian-specific diff): run
"``apt-get source tahoe-lafs``". That will fetch three files: the ``.dsc``
control file, the main Tahoe tarball, and the Debian-specific
``.debian.tar.gz`` file. Just unpack the ``.debian.tar.gz`` file inside
your Tahoe source tree, modify the version number in ``debian/changelog``,
then run "``fakeroot ./debian/rules binary``", and a new ``.deb`` will be
placed in the parent directory.


Dependency Packages
===================

Tahoe depends upon a number of additional libraries. When building Tahoe from
source, any dependencies that are not already present in the environment will
be downloaded (via ``pip`` and ``easy_install``) and installed in the
virtualenv.

The ``.deb`` packages, of course, rely solely upon other ``.deb`` packages.
For reference, here is a list of the debian package names that provide Tahoe's
dependencies as of the 1.9 release:

* python
* python-zfec
* python-pycryptopp
* python-foolscap
* python-openssl (needed by foolscap)
* python-twisted
* python-nevow
* python-mock
* python-simplejson
* python-setuptools
* python-support (for Debian-specific install-time tools)

When building your own Debian packages, a convenient way to get all these
dependencies installed is to first install the official "tahoe-lafs" package,
then uninstall it, leaving the dependencies behind. You may also find it
useful to run "``apt-get build-dep tahoe-lafs``" to make sure all the usual
build-essential tools are installed.