make debian packages of dependencies #251

Closed
opened 2007-12-31 23:54:39 +00:00 by warner · 11 comments

To release tahoe-0.7.0, we need debian packages of all runtime dependencies
that aren't already in debian, so that the tahoe .debs will actually be
usable.

That means:

  • zfec-1.3.4
  • pycryptopp-0.2.10
  • foolscap-0.2.3

The zfec package should really depend upon argparse (/usr/bin/zfec requires
it), so that means a debian package for argparse too.

Post-0.7.0, if we implement #47 and depend upon pyutil, then we'll need to
make debian packages of pyutil-1.3.12 too.

Foolscap comes with its own debian packaging rules: just do 'make
debian-feisty' or whatever.

Zooko's packages use setuptools, and I've been using the 'stdeb' utility to
turn them into debian packages. It's not trivial. The first step is to
install stdeb (perhaps from http://stdeb.python-hosting.com/), then have it
generate a .orig.tar.gz, .dsc, and most importantly the .diff.gz debian
files. The next step is to unpack the tarball and apply the patch, then run
'debuild -uc -us' or './debian/rules binary' or dpkg-buildpackage (or some
other utility that I'm not familiar with) and see if it works. Note that it's
best if a copy of the .orig.tar.gz is present in the parent of the working
directory, because then debuild has something against which it can generate a
new .diff file. Also keep a copy of the stdeb-produced .diff.gz somewhere
else, since debuild will probably overwrite the one in the parent directory.

The resulting package must also be inspected to see if it has all the desired
files: usually documentation, examples, and README files are missing and/or
misplaced. Most importantly, the debian/control file needs to be updated to
list all the debian dependencies that the package requires: it can usually
figure out C/.so deps by itself, but it can't usually figure out python
dependencies. Build-time dependencies also go into debian/control . Edit
debian/rules and debian/control until things work the way they ought to, then
run 'debuild'/etc again to regenerate the .diff.gz . Then copy the
.orig.tar.gz and .diff.gz over to a new directory, unpack/patch/build to make
sure it all works. Then the source .orig.tar.gz and .diff.gz get copied to
buildslave@hanford:tahoe-debs/dists/DIST/main/source/ , and the .deb file
gets copied to main/binary-i386/ .

This needs to be done for each debian/ubuntu release we support: edgy,
feisty, gusty, etch, and sid. It would probably be nice to make amd64
versions as well, but we haven't ever done this before and it would require
changes to our repository config to actually make them reachable.

The same .diff.gz can probably be used for multiple releases, although
several minimum versions probably get recorded in the debian/control files,
so if you choose this approach, you might want to run stdeb on our oldest
supported platform (which would be edgy) rather than on the newest (sid).
Either 1: copy the .orig.tar.gz and .diff.gz to a new host, run debuild, then
upload everything to hanford, or 2: copy (on hanford) the .orig.tar.gz and
.diff.gz (and .dsc) into DIST/main/source/ for all dists, then go to the
debian build host and do 'apt-get update && apt-get source PACKAGENAME',
which will grab the source from hanford and unpack it. Doing 'apt-get
build-dep PACKAGENAME' will look at the build-time dependencies and install
them, which can save a lot of time. If you choose this path, you'll only have
to upload the .deb file to hanford.

Once you've added something to tahoe-debs/ , run 'make' in that directory and
it will update the index and push a copy out to org.

Once something has been packaged, it is frequently sufficient to apply the
old .diff.gz to the new release tarball, add an entry to debian/changelog,
modify the version number that stdeb unfortunately embeds in debian/rules,
then run debuild.

Debian build hosts:

  • edgy: slave-edgy.allmydata.com (inside the firewall)
  • feisty: tahoeslave-fesity (inside the firewall)
  • gutsy: tahoecs2 (in colo)
  • etch: slave-etch (inside the firewall)
  • sid: fluxx (inside the firewall)

For reference, we use slave3.allmydata.com (in colo) as a dapper buildslave.
We test tahoe on dapper but don't produce debian package for it (although I
do make foolscap packages for dapper).

To release tahoe-0.7.0, we need debian packages of all runtime dependencies that aren't already in debian, so that the tahoe .debs will actually be usable. That means: * zfec-1.3.4 * pycryptopp-0.2.10 * foolscap-0.2.3 The zfec package should really depend upon argparse (/usr/bin/zfec requires it), so that means a debian package for argparse too. Post-0.7.0, if we implement #47 and depend upon pyutil, then we'll need to make debian packages of pyutil-1.3.12 too. Foolscap comes with its own debian packaging rules: just do 'make debian-feisty' or whatever. Zooko's packages use setuptools, and I've been using the 'stdeb' utility to turn them into debian packages. It's not trivial. The first step is to install stdeb (perhaps from <http://stdeb.python-hosting.com/>), then have it generate a .orig.tar.gz, .dsc, and most importantly the .diff.gz debian files. The next step is to unpack the tarball and apply the patch, then run 'debuild -uc -us' or './debian/rules binary' or dpkg-buildpackage (or some other utility that I'm not familiar with) and see if it works. Note that it's best if a copy of the .orig.tar.gz is present in the parent of the working directory, because then debuild has something against which it can generate a new .diff file. Also keep a copy of the stdeb-produced .diff.gz somewhere else, since debuild will probably overwrite the one in the parent directory. The resulting package must also be inspected to see if it has all the desired files: usually documentation, examples, and README files are missing and/or misplaced. Most importantly, the debian/control file needs to be updated to list all the debian dependencies that the package requires: it can usually figure out C/.so deps by itself, but it can't usually figure out python dependencies. Build-time dependencies also go into debian/control . Edit debian/rules and debian/control until things work the way they ought to, then run 'debuild'/etc again to regenerate the .diff.gz . Then copy the .orig.tar.gz and .diff.gz over to a new directory, unpack/patch/build to make sure it all works. Then the source .orig.tar.gz and .diff.gz get copied to buildslave@hanford:tahoe-debs/dists/DIST/main/source/ , and the .deb file gets copied to main/binary-i386/ . This needs to be done for each debian/ubuntu release we support: edgy, feisty, gusty, etch, and sid. It would probably be nice to make amd64 versions as well, but we haven't ever done this before and it would require changes to our repository config to actually make them reachable. The same .diff.gz can probably be used for multiple releases, although several minimum versions probably get recorded in the debian/control files, so if you choose this approach, you might want to run stdeb on our oldest supported platform (which would be edgy) rather than on the newest (sid). Either 1: copy the .orig.tar.gz and .diff.gz to a new host, run debuild, then upload everything to hanford, or 2: copy (on hanford) the .orig.tar.gz and .diff.gz (and .dsc) into DIST/main/source/ for all dists, then go to the debian build host and do 'apt-get update && apt-get source PACKAGENAME', which will grab the source from hanford and unpack it. Doing 'apt-get build-dep PACKAGENAME' will look at the build-time dependencies and install them, which can save a lot of time. If you choose this path, you'll only have to upload the .deb file to hanford. Once you've added something to tahoe-debs/ , run 'make' in that directory and it will update the index and push a copy out to org. Once something has been packaged, it is frequently sufficient to apply the old .diff.gz to the new release tarball, add an entry to debian/changelog, modify the version number that stdeb unfortunately embeds in debian/rules, then run debuild. Debian build hosts: * edgy: slave-edgy.allmydata.com (inside the firewall) * feisty: tahoeslave-fesity (inside the firewall) * gutsy: tahoecs2 (in colo) * etch: slave-etch (inside the firewall) * sid: fluxx (inside the firewall) For reference, we use slave3.allmydata.com (in colo) as a dapper buildslave. We test tahoe on dapper but don't produce debian package for it (although I do make foolscap packages for dapper).
warner added the
c/packaging
p/major
t/task
v/0.6.1
labels 2007-12-31 23:54:39 +00:00
warner added this to the 0.7.0 milestone 2007-12-31 23:54:39 +00:00
Author

ok, foolscap-0.2.3 debs have been created for i386 on all releases

ok, foolscap-0.2.3 debs have been created for i386 on all releases
Author

I started to work on the pycrypto debs, but the new pycrypto requires darcsver and setuptools_darcs and stuff, and that got to be too much work, so I think I'll leave it for zooko. I suspect zfec has the same requirements.

I started to work on the pycrypto debs, but the new pycrypto requires darcsver and setuptools_darcs and stuff, and that got to be too much work, so I think I'll leave it for zooko. I suspect zfec has the same requirements.

"To release tahoe-0.7.0, we need debian packages of all runtime dependencies that aren't already in debian, so that the tahoe .debs will actually be usable.
...
This needs to be done for each debian/ubuntu release we support: edgy, feisty, gusty, etch, and sid."

Okay, I've just spent some time learning how to to this -- thank you, Brian, for the extensive notes -- and it seems like packaging things for Debian is a lot of work.

Could we de-prioritize this for v0.7.0?

My general strategy for Tahoe until now has been not to offer binaries, because that's more work for us, and I don't mind if Tahoe v0.7.0 is available only to that subset of people who are willing to build from source, and I would like to spend our development effort on improving the build-from-source process. (Which still needs a lot of work, as we speak.)

My intent had been to make Tahoe v0.7.0 more easily installable from source (and we've succeeded -- see the new install.html), and then to start offering binary packages in Tahoe v0.7.1.

When it is time for us to spend the development resources to support binary distributions, then my priorities for platforms to support would be: 1. Whatever Zandr wants to deploy Tahoe on (I guess that is Gutsy), 2. Windows, which would potentially help Mike, Dmitry, Greg Hazel, Fabrice (?), Peter, Richard Samantha, and lots of other people, 3. whatever platform Richard Samantha has in his lab. 4. More Debian-likes not already supported for Zandr as number 1 above, 5. Mac OS X (note that allmydata.com receives frequent requests for a Mac client).

So I accept responsibility for increasing the work-load of making Debian packages by my choice of how to split up Python packages. Part of my justification for doing that is that it decreases the work-load for development and for making Python packages, which is the kind of trade-off that led me to focus on source packaging this time around.

So I'm willing to spend my time and effort to support Debian, which is a platform that I love and which I consider very important, but I would like to prioritize other things (The Roadmap) over this issue for v0.7.0.

By the way, both darcsver and setuptools_darcs are build requirements, not install requirements, so presumably we don't need to produce .deb's for them. Hopefully that will make things easier.

"To release tahoe-0.7.0, we need debian packages of all runtime dependencies that aren't already in debian, so that the tahoe .debs will actually be usable. ... This needs to be done for each debian/ubuntu release we support: edgy, feisty, gusty, etch, and sid." Okay, I've just spent some time learning how to to this -- thank you, Brian, for the extensive notes -- and it seems like packaging things for Debian is a lot of work. Could we de-prioritize this for v0.7.0? My general strategy for Tahoe until now has been not to offer binaries, because that's more work for us, and I don't mind if Tahoe v0.7.0 is available only to that subset of people who are willing to build from source, and I would like to spend our development effort on improving the build-from-source process. (Which still needs a lot of work, as we speak.) My intent had been to make Tahoe v0.7.0 more easily installable from source (and we've succeeded -- see the new [install.html](http://allmydata.org/trac/tahoe/browser/docs/install.html)), and then to start offering binary packages in Tahoe v0.7.1. When it is time for us to spend the development resources to support binary distributions, then my priorities for platforms to support would be: 1. Whatever Zandr wants to deploy Tahoe on (I guess that is Gutsy), 2. Windows, which would potentially help Mike, Dmitry, Greg Hazel, Fabrice (?), Peter, Richard Samantha, and lots of other people, 3. whatever platform Richard Samantha has in his lab. 4. More Debian-likes not already supported for Zandr as number 1 above, 5. Mac OS X (note that allmydata.com receives frequent requests for a Mac client). So I accept responsibility for increasing the work-load of making Debian packages by my choice of how to split up Python packages. Part of my justification for doing that is that it decreases the work-load for development and for making Python packages, which is the kind of trade-off that led me to focus on source packaging this time around. So I'm willing to spend my time and effort to support Debian, which is a platform that I love and which I consider very important, but I would like to prioritize other things ([The Roadmap](http://allmydata.org/trac/tahoe/wiki/TracRoadmap)) over this issue for v0.7.0. By the way, both darcsver and setuptools_darcs are build requirements, not install requirements, so presumably we don't need to produce .deb's for them. Hopefully that will make things easier.
Author

Could we de-prioritize this for v0.7.0?

I'm willing to accept that (although I can't say I'm happy about the
regression). The consequences are:

  • production nodes (testnet, perfnet, loadnet, i.e. tahoebs1-5 and tahoecs2)
    will be unable to run from debian packages, and must therefore run from
    source. I'm unwilling to have production machines using code installed via
    easy_install, and I'm reluctant to have them use code from /usr/local :
    these machines are a test case for how Zandr would deploy servers, so if
    we're not going to run them from debian packages, the remaining option
    which is the easiest to keep straight and to clean up after is running
    from a local source tree.

  • we should stop updating our APT repository with new Tahoe .debs, since
    they are unusable, and older ones (before these new dependencies went in)
    are more usable than the new ones. In fact we should figure out what the
    last known usable version is, and remove any .debs produced after that
    date. Of course we should keep the buildbot .deb builder running.. we can
    just turn off the automatic mirror-to-org script. We should also update
    the .deb making code in our tree to express the new dependencies, so
    that anyone who does try to use them gets a clear install error rather
    than a cryptic runtime error.

Both of those are pretty easy to manage. So, ok, 0.7.0 will not have
functional .debs, but the first thing we do for 0.7.1 should be to make these
work again.

> Could we de-prioritize this for v0.7.0? I'm willing to accept that (although I can't say I'm happy about the regression). The consequences are: * production nodes (testnet, perfnet, loadnet, i.e. tahoebs1-5 and tahoecs2) will be unable to run from debian packages, and must therefore run from source. I'm unwilling to have production machines using code installed via easy_install, and I'm reluctant to have them use code from /usr/local : these machines are a test case for how Zandr would deploy servers, so if we're not going to run them from debian packages, the remaining option which is the easiest to keep straight and to clean up after is running from a local source tree. * we should stop updating our APT repository with new Tahoe .debs, since they are unusable, and older ones (before these new dependencies went in) are more usable than the new ones. In fact we should figure out what the last known usable version is, and remove any .debs produced after that date. Of course we should keep the buildbot .deb builder running.. we can just turn off the automatic mirror-to-org script. We should also update the .deb making code in our tree to express the new dependencies, so that anyone who *does* try to use them gets a clear install error rather than a cryptic runtime error. Both of those are pretty easy to manage. So, ok, 0.7.0 will not have functional .debs, but the first thing we do for 0.7.1 should be to make these work again.
Author

oh, and I concur that darcsver and setuptools_darcs do not require debian packages, as long as they are buildable in the Desert Island mode: the debian/rules code that build the tahoe .deb will need to build these as well, to figure out the version number that should be put into the debian/changelog (and thus determine the .deb's version number).

oh, and I concur that darcsver and setuptools_darcs do not require debian packages, as long as they are buildable in the Desert Island mode: the debian/rules code that build the tahoe .deb will need to build these as well, to figure out the version number that should be put into the debian/changelog (and thus determine the .deb's version number).
Author

Hm, you might have lucked out: according to our calc-deps.py, tahoe only currently requires zfec-1.0.3 and pycryptopp-0.2.8 (even though we ship newer versions of both as tarballs in misc/dependencies/). We already have zfec-1.1 .debs for all platforms, and we have a pycryptopp-0.2.8 for feisty (which means that I've already done the necessary debianization work for that version). The current versions of zfec and pycryptopp are harder to build because of the new dependencies, but if we can get away with using the older versions for tahoe-0.7.0, then we can yet manage to have 0.7.0 be debian installable.

I'll look at the pycryptopp-0.2.8 feisty .deb and see how much work it will take to build it on the other platforms.

Hm, you might have lucked out: according to our calc-deps.py, tahoe only currently requires zfec-1.0.3 and pycryptopp-0.2.8 (even though we ship newer versions of both as tarballs in misc/dependencies/). We already have zfec-1.1 .debs for all platforms, and we have a pycryptopp-0.2.8 for feisty (which means that I've already done the necessary debianization work for that version). The current versions of zfec and pycryptopp are harder to build because of the new dependencies, but if we can get away with using the older versions for tahoe-0.7.0, then we can yet manage to have 0.7.0 be debian installable. I'll look at the pycryptopp-0.2.8 feisty .deb and see how much work it will take to build it on the other platforms.
Author

ok, we've now got pycryptopp-0.2.8 debs on all platforms. I think this will be enough to allow tahoe .debs to be installed and run.

ok, we've now got pycryptopp-0.2.8 debs on all platforms. I think this will be enough to allow tahoe .debs to be installed and run.
zooko added this to the 0.8.0 (Allmydata 3.0 Beta) milestone 2008-01-23 02:43:22 +00:00
zooko modified the milestone from 0.8.0 (Allmydata 3.0 Beta) to 0.9.0 (Allmydata 3.0 final) 2008-03-08 02:54:38 +00:00

As long as we can run production servers against zfec-1.1 and pycryptopp-0.2.8, then we are currently okay on this issue, so I'm moving this to Milestone 0.10.0.

As long as we can run production servers against zfec-1.1 and pycryptopp-0.2.8, then we are currently okay on this issue, so I'm moving this to Milestone 0.10.0.
Author

This has become critical again, since tahoe trunk now depends upon a newer version of pycryptopp than we have .debs for. We'll need those .debs to update our production machines to code beyond 1.0.0

This has become critical again, since tahoe trunk now depends upon a newer version of pycryptopp than we have .debs for. We'll need those .debs to update our production machines to code beyond 1.0.0
warner added
p/critical
and removed
p/major
labels 2008-05-15 19:53:31 +00:00

Okay! I can produce a python-pycryptopp-0.5.2-1_amd64.deb just by running ./setup.py sdist_dsc && cd deb_dist/pycryptopp-0.5.2 && dpkg-buildpackage -rfakeroot -uc -us.

I've figured out how to configure pycryptopp so that the README.txt, COPYING.GPL and COPYING.TGPPL.html go into the right place (/usr/share/docs/python-pycryptopp.

Next, I want to figure out how to make the resulting .deb automatically depend on python-setuptools based on the fact that the setup.py specifies that pycryptopp install_requires setuptools:

http://allmydata.org/trac/pycryptopp/browser/setup.py

This is non-trivial, because setuptools and debian don't use exactly the same namespace -- i.e. I need to write either a heuristic ("foo in setuptools world probably means python-foo in debian world") or a map. Hm... :-)

Well, okay, it might be best to just use the feature which is explicitly for this purpose in the stdeb config file... We'll see... :-)

Okay! I can produce a `python-pycryptopp-0.5.2-1_amd64.deb` just by running `./setup.py sdist_dsc && cd deb_dist/pycryptopp-0.5.2 && dpkg-buildpackage -rfakeroot -uc -us`. I've figured out how to configure pycryptopp so that the `README.txt`, `COPYING.GPL` and `COPYING.TGPPL.html` go into the right place (`/usr/share/docs/python-pycryptopp`. Next, I want to figure out how to make the resulting .deb automatically depend on `python-setuptools` based on the fact that the `setup.py` specifies that pycryptopp install_requires setuptools: <http://allmydata.org/trac/pycryptopp/browser/setup.py> This is non-trivial, because setuptools and debian don't use exactly the same namespace -- i.e. I need to write either a heuristic ("foo in setuptools world probably means python-foo in debian world") or a map. Hm... :-) Well, okay, it might be best to just use the feature which is explicitly for this purpose in the stdeb config file... We'll see... :-)

Okay, we have new .deb's for zfec, argparse, pyutil, and pycryptopp, and we have an easy way to make more of them when desired, so we're closing this ticket.

See also follow-on tickets #422 (stdeb: run from buildslaves), #423 (stdeb: use stdeb on tahoe itself), and #424 (stdeb: push to upstream).

Okay, we have new .deb's for `zfec`, `argparse`, `pyutil`, and `pycryptopp`, and we have an easy way to make more of them when desired, so we're closing this ticket. See also follow-on tickets #422 (stdeb: run from buildslaves), #423 (stdeb: use stdeb on tahoe itself), and #424 (stdeb: push to upstream).
zooko added the
r/fixed
label 2008-05-29 23:05:15 +00:00
zooko closed this issue 2008-05-29 23:05:15 +00:00
Sign in to join this conversation.
No labels
c/code
c/code-dirnodes
c/code-encoding
c/code-frontend
c/code-frontend-cli
c/code-frontend-ftp-sftp
c/code-frontend-magic-folder
c/code-frontend-web
c/code-mutable
c/code-network
c/code-nodeadmin
c/code-peerselection
c/code-storage
c/contrib
c/dev-infrastructure
c/docs
c/operational
c/packaging
c/unknown
c/website
kw:2pc
kw:410
kw:9p
kw:ActivePerl
kw:AttributeError
kw:DataUnavailable
kw:DeadReferenceError
kw:DoS
kw:FileZilla
kw:GetLastError
kw:IFinishableConsumer
kw:K
kw:LeastAuthority
kw:Makefile
kw:RIStorageServer
kw:StringIO
kw:UncoordinatedWriteError
kw:about
kw:access
kw:access-control
kw:accessibility
kw:accounting
kw:accounting-crawler
kw:add-only
kw:aes
kw:aesthetics
kw:alias
kw:aliases
kw:aliens
kw:allmydata
kw:amazon
kw:ambient
kw:annotations
kw:anonymity
kw:anonymous
kw:anti-censorship
kw:api_auth_token
kw:appearance
kw:appname
kw:apport
kw:archive
kw:archlinux
kw:argparse
kw:arm
kw:assertion
kw:attachment
kw:auth
kw:authentication
kw:automation
kw:avahi
kw:availability
kw:aws
kw:azure
kw:backend
kw:backoff
kw:backup
kw:backupdb
kw:backward-compatibility
kw:bandwidth
kw:basedir
kw:bayes
kw:bbfreeze
kw:beta
kw:binaries
kw:binutils
kw:bitcoin
kw:bitrot
kw:blacklist
kw:blocker
kw:blocks-cloud-deployment
kw:blocks-cloud-merge
kw:blocks-magic-folder-merge
kw:blocks-merge
kw:blocks-raic
kw:blocks-release
kw:blog
kw:bom
kw:bonjour
kw:branch
kw:branding
kw:breadcrumbs
kw:brians-opinion-needed
kw:browser
kw:bsd
kw:build
kw:build-helpers
kw:buildbot
kw:builders
kw:buildslave
kw:buildslaves
kw:cache
kw:cap
kw:capleak
kw:captcha
kw:cast
kw:centos
kw:cffi
kw:chacha
kw:charset
kw:check
kw:checker
kw:chroot
kw:ci
kw:clean
kw:cleanup
kw:cli
kw:cloud
kw:cloud-backend
kw:cmdline
kw:code
kw:code-checks
kw:coding-standards
kw:coding-tools
kw:coding_tools
kw:collection
kw:compatibility
kw:completion
kw:compression
kw:confidentiality
kw:config
kw:configuration
kw:configuration.txt
kw:conflict
kw:connection
kw:connectivity
kw:consistency
kw:content
kw:control
kw:control.furl
kw:convergence
kw:coordination
kw:copyright
kw:corruption
kw:cors
kw:cost
kw:coverage
kw:coveralls
kw:coveralls.io
kw:cpu-watcher
kw:cpyext
kw:crash
kw:crawler
kw:crawlers
kw:create-container
kw:cruft
kw:crypto
kw:cryptography
kw:cryptography-lib
kw:cryptopp
kw:csp
kw:curl
kw:cutoff-date
kw:cycle
kw:cygwin
kw:d3
kw:daemon
kw:darcs
kw:darcsver
kw:database
kw:dataloss
kw:db
kw:dead-code
kw:deb
kw:debian
kw:debug
kw:deep-check
kw:defaults
kw:deferred
kw:delete
kw:deletion
kw:denial-of-service
kw:dependency
kw:deployment
kw:deprecation
kw:desert-island
kw:desert-island-build
kw:design
kw:design-review-needed
kw:detection
kw:dev-infrastructure
kw:devpay
kw:directory
kw:directory-page
kw:dirnode
kw:dirnodes
kw:disconnect
kw:discovery
kw:disk
kw:disk-backend
kw:distribute
kw:distutils
kw:dns
kw:do_http
kw:doc-needed
kw:docker
kw:docs
kw:docs-needed
kw:dokan
kw:dos
kw:download
kw:downloader
kw:dragonfly
kw:drop-upload
kw:duplicity
kw:dusty
kw:earth-dragon
kw:easy
kw:ec2
kw:ecdsa
kw:ed25519
kw:egg-needed
kw:eggs
kw:eliot
kw:email
kw:empty
kw:encoding
kw:endpoint
kw:enterprise
kw:enum34
kw:environment
kw:erasure
kw:erasure-coding
kw:error
kw:escaping
kw:etag
kw:etch
kw:evangelism
kw:eventual
kw:example
kw:excess-authority
kw:exec
kw:exocet
kw:expiration
kw:extensibility
kw:extension
kw:failure
kw:fedora
kw:ffp
kw:fhs
kw:figleaf
kw:file
kw:file-descriptor
kw:filename
kw:filesystem
kw:fileutil
kw:fips
kw:firewall
kw:first
kw:floatingpoint
kw:flog
kw:foolscap
kw:forward-compatibility
kw:forward-secrecy
kw:forwarding
kw:free
kw:freebsd
kw:frontend
kw:fsevents
kw:ftp
kw:ftpd
kw:full
kw:furl
kw:fuse
kw:garbage
kw:garbage-collection
kw:gateway
kw:gatherer
kw:gc
kw:gcc
kw:gentoo
kw:get
kw:git
kw:git-annex
kw:github
kw:glacier
kw:globalcaps
kw:glossary
kw:google-cloud-storage
kw:google-drive-backend
kw:gossip
kw:governance
kw:grid
kw:grid-manager
kw:gridid
kw:gridsync
kw:grsec
kw:gsoc
kw:gvfs
kw:hackfest
kw:hacktahoe
kw:hang
kw:hardlink
kw:heartbleed
kw:heisenbug
kw:help
kw:helper
kw:hint
kw:hooks
kw:how
kw:how-to
kw:howto
kw:hp
kw:hp-cloud
kw:html
kw:http
kw:https
kw:i18n
kw:i2p
kw:i2p-collab
kw:illustration
kw:image
kw:immutable
kw:impressions
kw:incentives
kw:incident
kw:init
kw:inlineCallbacks
kw:inotify
kw:install
kw:installer
kw:integration
kw:integration-test
kw:integrity
kw:interactive
kw:interface
kw:interfaces
kw:interoperability
kw:interstellar-exploration
kw:introducer
kw:introduction
kw:iphone
kw:ipkg
kw:iputil
kw:ipv6
kw:irc
kw:jail
kw:javascript
kw:joke
kw:jquery
kw:json
kw:jsui
kw:junk
kw:key-value-store
kw:kfreebsd
kw:known-issue
kw:konqueror
kw:kpreid
kw:kvm
kw:l10n
kw:lae
kw:large
kw:latency
kw:leak
kw:leasedb
kw:leases
kw:libgmp
kw:license
kw:licenss
kw:linecount
kw:link
kw:linux
kw:lit
kw:localhost
kw:location
kw:locking
kw:logging
kw:logo
kw:loopback
kw:lucid
kw:mac
kw:macintosh
kw:magic-folder
kw:manhole
kw:manifest
kw:manual-test-needed
kw:map
kw:mapupdate
kw:max_space
kw:mdmf
kw:memcheck
kw:memory
kw:memory-leak
kw:mesh
kw:metadata
kw:meter
kw:migration
kw:mime
kw:mingw
kw:minimal
kw:misc
kw:miscapture
kw:mlp
kw:mock
kw:more-info-needed
kw:mountain-lion
kw:move
kw:multi-users
kw:multiple
kw:multiuser-gateway
kw:munin
kw:music
kw:mutability
kw:mutable
kw:mystery
kw:names
kw:naming
kw:nas
kw:navigation
kw:needs-review
kw:needs-spawn
kw:netbsd
kw:network
kw:nevow
kw:new-user
kw:newcaps
kw:news
kw:news-done
kw:news-needed
kw:newsletter
kw:newurls
kw:nfc
kw:nginx
kw:nixos
kw:no-clobber
kw:node
kw:node-url
kw:notification
kw:notifyOnDisconnect
kw:nsa310
kw:nsa320
kw:nsa325
kw:numpy
kw:objects
kw:old
kw:openbsd
kw:openitp-packaging
kw:openssl
kw:openstack
kw:opensuse
kw:operation-helpers
kw:operational
kw:operations
kw:ophandle
kw:ophandles
kw:ops
kw:optimization
kw:optional
kw:options
kw:organization
kw:os
kw:os.abort
kw:ostrom
kw:osx
kw:osxfuse
kw:otf-magic-folder-objective1
kw:otf-magic-folder-objective2
kw:otf-magic-folder-objective3
kw:otf-magic-folder-objective4
kw:otf-magic-folder-objective5
kw:otf-magic-folder-objective6
kw:p2p
kw:packaging
kw:partial
kw:password
kw:path
kw:paths
kw:pause
kw:peer-selection
kw:performance
kw:permalink
kw:permissions
kw:persistence
kw:phone
kw:pickle
kw:pip
kw:pipermail
kw:pkg_resources
kw:placement
kw:planning
kw:policy
kw:port
kw:portability
kw:portal
kw:posthook
kw:pratchett
kw:preformance
kw:preservation
kw:privacy
kw:process
kw:profile
kw:profiling
kw:progress
kw:proxy
kw:publish
kw:pyOpenSSL
kw:pyasn1
kw:pycparser
kw:pycrypto
kw:pycrypto-lib
kw:pycryptopp
kw:pyfilesystem
kw:pyflakes
kw:pylint
kw:pypi
kw:pypy
kw:pysqlite
kw:python
kw:python3
kw:pythonpath
kw:pyutil
kw:pywin32
kw:quickstart
kw:quiet
kw:quotas
kw:quoting
kw:raic
kw:rainhill
kw:random
kw:random-access
kw:range
kw:raspberry-pi
kw:reactor
kw:readonly
kw:rebalancing
kw:recovery
kw:recursive
kw:redhat
kw:redirect
kw:redressing
kw:refactor
kw:referer
kw:referrer
kw:regression
kw:rekey
kw:relay
kw:release
kw:release-blocker
kw:reliability
kw:relnotes
kw:remote
kw:removable
kw:removable-disk
kw:rename
kw:renew
kw:repair
kw:replace
kw:report
kw:repository
kw:research
kw:reserved_space
kw:response-needed
kw:response-time
kw:restore
kw:retrieve
kw:retry
kw:review
kw:review-needed
kw:reviewed
kw:revocation
kw:roadmap
kw:rollback
kw:rpm
kw:rsa
kw:rss
kw:rst
kw:rsync
kw:rusty
kw:s3
kw:s3-backend
kw:s3-frontend
kw:s4
kw:same-origin
kw:sandbox
kw:scalability
kw:scaling
kw:scheduling
kw:schema
kw:scheme
kw:scp
kw:scripts
kw:sdist
kw:sdmf
kw:security
kw:self-contained
kw:server
kw:servermap
kw:servers-of-happiness
kw:service
kw:setup
kw:setup.py
kw:setup_requires
kw:setuptools
kw:setuptools_darcs
kw:sftp
kw:shared
kw:shareset
kw:shell
kw:signals
kw:simultaneous
kw:six
kw:size
kw:slackware
kw:slashes
kw:smb
kw:sneakernet
kw:snowleopard
kw:socket
kw:solaris
kw:space
kw:space-efficiency
kw:spam
kw:spec
kw:speed
kw:sqlite
kw:ssh
kw:ssh-keygen
kw:sshfs
kw:ssl
kw:stability
kw:standards
kw:start
kw:startup
kw:static
kw:static-analysis
kw:statistics
kw:stats
kw:stats_gatherer
kw:status
kw:stdeb
kw:storage
kw:streaming
kw:strports
kw:style
kw:stylesheet
kw:subprocess
kw:sumo
kw:survey
kw:svg
kw:symlink
kw:synchronous
kw:tac
kw:tahoe-*
kw:tahoe-add-alias
kw:tahoe-admin
kw:tahoe-archive
kw:tahoe-backup
kw:tahoe-check
kw:tahoe-cp
kw:tahoe-create-alias
kw:tahoe-create-introducer
kw:tahoe-debug
kw:tahoe-deep-check
kw:tahoe-deepcheck
kw:tahoe-lafs-trac-stream
kw:tahoe-list-aliases
kw:tahoe-ls
kw:tahoe-magic-folder
kw:tahoe-manifest
kw:tahoe-mkdir
kw:tahoe-mount
kw:tahoe-mv
kw:tahoe-put
kw:tahoe-restart
kw:tahoe-rm
kw:tahoe-run
kw:tahoe-start
kw:tahoe-stats
kw:tahoe-unlink
kw:tahoe-webopen
kw:tahoe.css
kw:tahoe_files
kw:tahoewapi
kw:tarball
kw:tarballs
kw:tempfile
kw:templates
kw:terminology
kw:test
kw:test-and-set
kw:test-from-egg
kw:test-needed
kw:testgrid
kw:testing
kw:tests
kw:throttling
kw:ticket999-s3-backend
kw:tiddly
kw:time
kw:timeout
kw:timing
kw:to
kw:to-be-closed-on-2011-08-01
kw:tor
kw:tor-protocol
kw:torsocks
kw:tox
kw:trac
kw:transparency
kw:travis
kw:travis-ci
kw:trial
kw:trickle
kw:trivial
kw:truckee
kw:tub
kw:tub.location
kw:twine
kw:twistd
kw:twistd.log
kw:twisted
kw:twisted-14
kw:twisted-trial
kw:twitter
kw:twn
kw:txaws
kw:type
kw:typeerror
kw:ubuntu
kw:ucwe
kw:ueb
kw:ui
kw:unclean
kw:uncoordinated-writes
kw:undeletable
kw:unfinished-business
kw:unhandled-error
kw:unhappy
kw:unicode
kw:unit
kw:unix
kw:unlink
kw:update
kw:upgrade
kw:upload
kw:upload-helper
kw:uri
kw:url
kw:usability
kw:use-case
kw:utf-8
kw:util
kw:uwsgi
kw:ux
kw:validation
kw:variables
kw:vdrive
kw:verify
kw:verlib
kw:version
kw:versioning
kw:versions
kw:video
kw:virtualbox
kw:virtualenv
kw:vista
kw:visualization
kw:visualizer
kw:vm
kw:volunteergrid2
kw:volunteers
kw:vpn
kw:wapi
kw:warners-opinion-needed
kw:warning
kw:weapi
kw:web
kw:web.port
kw:webapi
kw:webdav
kw:webdrive
kw:webport
kw:websec
kw:website
kw:websocket
kw:welcome
kw:welcome-page
kw:welcomepage
kw:wiki
kw:win32
kw:win64
kw:windows
kw:windows-related
kw:winscp
kw:workaround
kw:world-domination
kw:wrapper
kw:write-enabler
kw:wui
kw:x86
kw:x86-64
kw:xhtml
kw:xml
kw:xss
kw:zbase32
kw:zetuptoolz
kw:zfec
kw:zookos-opinion-needed
kw:zope
kw:zope.interface
p/blocker
p/critical
p/major
p/minor
p/normal
p/supercritical
p/trivial
r/cannot reproduce
r/duplicate
r/fixed
r/invalid
r/somebody else's problem
r/was already fixed
r/wontfix
r/worksforme
t/defect
t/enhancement
t/task
v/0.2.0
v/0.3.0
v/0.4.0
v/0.5.0
v/0.5.1
v/0.6.0
v/0.6.1
v/0.7.0
v/0.8.0
v/0.9.0
v/1.0.0
v/1.1.0
v/1.10.0
v/1.10.1
v/1.10.2
v/1.10a2
v/1.11.0
v/1.12.0
v/1.12.1
v/1.13.0
v/1.14.0
v/1.15.0
v/1.15.1
v/1.2.0
v/1.3.0
v/1.4.1
v/1.5.0
v/1.6.0
v/1.6.1
v/1.7.0
v/1.7.1
v/1.7β
v/1.8.0
v/1.8.1
v/1.8.2
v/1.8.3
v/1.8β
v/1.9.0
v/1.9.0-s3branch
v/1.9.0a1
v/1.9.0a2
v/1.9.0b1
v/1.9.1
v/1.9.2
v/1.9.2a1
v/cloud-branch
v/unknown
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: tahoe-lafs/trac#251
No description provided.