Changes between Version 4 and Version 5 of DownloadDebianPackages


Ignore:
Timestamp:
2007-08-21T22:00:02Z (17 years ago)
Author:
warner
Comment:

reference the ubuntu bug number for the edgy-nevow problem

Legend:

Unmodified
Added
Removed
Modified
  • DownloadDebianPackages

    v4 v5  
    1 At this time, precompiled packages are available only for Debian-like systems, using recent releases of Debian or Ubuntu.
     1At this time, precompiled packages are available only for Debian-like
     2systems, using recent releases of Debian or Ubuntu.
    23
    3 To install debian packages for edgy, or feisty, add the following lines to your {{{/etc/apt/sources.list}}}, replacing the word {{{DIST}}} with {{{edgy}}}, or {{{feisty}}} as appropriate:
     4To install debian packages for edgy, or feisty, add the following lines to
     5your {{{/etc/apt/sources.list}}}, replacing the word {{{DIST}}} with
     6{{{edgy}}}, or {{{feisty}}} as appropriate:
    47
    58{{{
     
    811}}}
    912
    10 Then update and install the {{{allmydata-tahoe}}} package.  apt-get will automatically acquire a {{{foolscap}}} .deb package from the same location in order to satisfy its dependencies.  These packages are generated each time the code is changed, and represent the most up-to-date (read "unstable") version available.  The usual warnings about no guarantees apply: it might cause your computer to catch fire, might steal your dog, etc.
     13Then update and install the {{{allmydata-tahoe}}} package. apt-get will
     14automatically acquire a {{{foolscap}}} .deb package from the same location in
     15order to satisfy its dependencies. These packages are generated each time the
     16code is changed, and represent the most up-to-date (read "unstable") version
     17available. The usual warnings about no guarantees apply: it might cause your
     18computer to catch fire, might steal your dog, etc.
    1119
    12 After installing see the [http://allmydata.org/trac/tahoe/browser/README the README file] for how to use it.
     20After installing see the [http://allmydata.org/trac/tahoe/browser/README the
     21README file] for how to use it.
    1322
    1423Tahoe packages for debian "etch" are in the works.
    1524
    16 There are no pre-built packages available for dapper or sarge, as these releases are too old to provide the necessary support packages (python-central, setuptools, etc). You can probably still install from source on these releases, however.
     25There are no pre-built packages available for dapper or sarge, as these
     26releases are too old to provide the necessary support packages
     27(python-central, setuptools, etc). You can probably still install from source
     28on these releases, however.
    1729
    1830== Problems ==
     
    2032=== Edgy ===
    2133
    22 While the tahoe package on edgy will install, it appears that the version of Nevow (0.7.0) which shipped with edgy is broken, preventing the tahoe node's webserver from running. The symptom is an exception at node startup that looks like this:
     34While the tahoe package on edgy will install, it appears that the version of
     35Nevow (0.7.0) which shipped with edgy is broken (ubuntu bug
     36[https://bugs.launchpad.net/ubuntu/+source/nevow/+bug/61423 #61423]),
     37preventing the tahoe node's webserver from running. The symptom is an
     38exception at node startup that looks like this:
    2339
    2440{{{
    25           File "/var/lib/python-support/python2.4/formless/annotate.py", line 17, in ?
    26             from nevow.compy import Interface, MetaInterface
    27         exceptions.ImportError: cannot import name MetaInterface
     41  File "/var/lib/python-support/python2.4/formless/annotate.py", line 17, in ?
     42     from nevow.compy import Interface, MetaInterface
     43exceptions.ImportError: cannot import name MetaInterface
    2844}}}
    2945
    30 We do not yet know of a solid workaround for this. One suggestion is to comment out the "from allmydata.webish import WebishServer" line from allmydata/client.py and not use the 'webport' feature. Another is to modify formless/annotate.py and try to fix that import problem. A third is to find a backport of a newer version of nevow.
     46We do not yet know of a solid workaround for this. One suggestion is to
     47comment out the "from allmydata.webish import WebishServer" line from
     48allmydata/client.py and not use the 'webport' feature. Another is to modify
     49formless/annotate.py and try to fix that import problem. A third is to find a
     50backport of a newer version of nevow.
    3151