summaryrefslogtreecommitdiff
path: root/debian
Commit message (Collapse)AuthorAge
* better streaming while encrypting/decryptingGravatar Joey Hess2012-11-18
| | | | | | Both the directory and webdav special remotes used to have to buffer the whole file contents before it could be decrypted, as they read from chunks. Now the chunks are streamed through gpg with no buffering.
* blog for the dayGravatar Joey Hess2012-11-16
|
* webdav is fully working in non-enctypted modeGravatar Joey Hess2012-11-16
|
* update to dav 0.1, and basic uploading is working!Gravatar Joey Hess2012-11-15
|
* Merge branch 'master' into webdavGravatar Joey Hess2012-11-15
|\
| * OSX: Fix RunAtLoad value in plist file.Gravatar Joey Hess2012-11-15
| |
* | skeltal webdav special remoteGravatar Joey Hess2012-11-14
|/ | | | | Doesn't actually store anything yet, but initremote works and tests the server.
* remove async build depGravatar Joey Hess2012-11-14
| | | | Not needed.. At least for now..
* automatic repolist updatingGravatar Joey Hess2012-11-13
|
* Fix build of assistant without yesod.Gravatar Joey Hess2012-11-13
|
* Show error message to user when testing XMPP creds.Gravatar Joey Hess2012-11-13
|
* looses xmpp build dep slightlyGravatar Joey Hess2012-11-12
| | | | | My upload of -2 seems to have gotten lost, but there is a +b1 binNMU that rebuilds against the new gnutls.
* releasing version 3.201211123.20121112Gravatar Joey Hess2012-11-12
|
* release notes for tomorrow's releaseGravatar Joey Hess2012-11-12
|
* added a runTimeout functionGravatar Joey Hess2012-11-11
| | | | | | This adds a dep on haskell's async library, but since that's been added to the recent haskell platform release, it should not be much hardship to my poor long-suffering library chasing users.
* changelogGravatar Joey Hess2012-11-10
|
* changelogGravatar Joey Hess2012-11-10
|
* version gnutls d-b to avoid segfaultGravatar Joey Hess2012-11-10
| | | | debian testing still has the buggy version..
* Bugfix: Fix hang in webapp when setting up a ssh remote with an absolute path.Gravatar Joey Hess2012-11-05
|
* webapp: When setting up authorized_keys, use GIT_ANNEX_SHELL_DIRECTORY.Gravatar Joey Hess2012-11-05
|
* git-annex-shell: GIT_ANNEX_SHELL_DIRECTORY can be set to limit it to ↵Gravatar Joey Hess2012-11-05
| | | | operating on a specified directory.
* switch to new URI version by default, -DWITH_OLD_URI for oldGravatar Joey Hess2012-11-03
|
* webapp: Ensure that rsync special remotes are enabled using the same name ↵Gravatar Joey Hess2012-10-31
| | | | | | | they were originally created using. It was creating a new special remote with a different name, unless the stars perfectly aligned and the names matched.
* webapp: Generate better git remote names.Gravatar Joey Hess2012-10-31
| | | | | | Wrote a better git remote name sanitizer. Git blows up on lots of weird stuff, especially if it starts the remote name, but I managed to get some common punctuation working.
* webapp: Fix renaming of special remotes.Gravatar Joey Hess2012-10-31
| | | | | Working around what seems to me to be a git bug. Surely there are valid setups of real git remotes that don't have fetch set?
* webapp: Fix creation of rsync.net repositories.Gravatar Joey Hess2012-10-31
|
* avoid using Blaze directlyGravatar Joey Hess2012-10-31
| | | | | New 0.5 changes the api, rather gratuitously, so run away. I can juse use Hamlet here.
* added a missing build-depGravatar Joey Hess2012-10-31
|
* assistant: Fix syncing local drives.Gravatar Joey Hess2012-10-30
| | | | | Amoung other things, this makes it immediately sync files from a removable drive when it's added.
* webapp: Make an initial, empty commit so there is a master branchGravatar Joey Hess2012-10-30
| | | | Several things only happen when on a branch, so make sure we're on one.
* add build-dep on blaze-markupGravatar Joey Hess2012-10-30
| | | | which blaze-html depends on, so not a significant new dep
* The standalone tarball's runshell now takes care of installing a ↵Gravatar Joey Hess2012-10-29
| | | | ~/.ssh/git-annex-shell wrapper the first time it's run.
* rsync special remote: Include annex-rsync-options when running rsync to test ↵Gravatar Joey Hess2012-10-28
| | | | | | | a key's presence. Also, use the new withQuietOutput function to avoid running the shell to /dev/null stderr in two other places.
* recommend bind9-hostGravatar Joey Hess2012-10-27
|
* updateGravatar Joey Hess2012-10-27
|
* Merge branch 'xmpp'Gravatar Joey Hess2012-10-27
|\
| * gnutls segfault fixedGravatar Joey Hess2012-10-26
| | | | | | | | | | | | | | | | Adjust build deps to ensure that only a fixed version of the library will be used. Also, removed the bound thread stuff, which I now think was (probably) a red herring.
* | fix syntaxGravatar Joey Hess2012-10-26
| |
| * Merge branch 'master' into xmppGravatar Joey Hess2012-10-26
| |\ | |/ |/| | | | | Conflicts: Assistant/Threads/NetWatcher.hs
* | NetWatcher: When dbus connection is lost, try to reconnect.Gravatar Joey Hess2012-10-26
| | | | | | | | | | | | | | | | MountWatcher can't do this, because it uses the session dbus, and won't have access to the new DBUS_SESSION_BUS_ADDRESS if a new session is started. Bumped dbus library version, FD leak in it is fixed.
| * Merge branch 'master' into xmppGravatar Joey Hess2012-10-26
| |\ | |/ |/| | | | | | | Conflicts: Assistant/Threads/MountWatcher.hs Assistant/Threads/NetWatcher.hs
* | Use USER and HOME environment when set, and only fall back to getpwent, ↵Gravatar Joey Hess2012-10-25
| | | | | | | | which doesn't work with LDAP or NIS.
| * Merge branch 'master' into xmppGravatar Joey Hess2012-10-25
| |\ | |/ |/|
* | Re-enable dbus, using a new version of the library that fixes the memory leak.Gravatar Joey Hess2012-10-25
| | | | | | | | | | | | | | For now, when dbus goes away, the assistant keeps running but does not fall back or reconnect. To do so needs more changes to the DBus library; in particular a connectSessionWith and connectSystemWith to let me specify my own clientThreadRunner.
| * Merge remote-tracking branch 'origin/master' into xmppGravatar Joey Hess2012-10-25
| |\ | |/ |/| | | | | Conflicts: doc/design/assistant/cloud.mdwn
* | configure: Check that checksum programs produce correct checksums. + bitter rantGravatar Joey Hess2012-10-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | So, it might be called sha1sum, or on some other OS, it might be called sha1. It might be hidden away off of PATH on that OS. That's just expected insanity; UNIX has been this way since 1980's. And these days, nobody even gives the flying flip about standards that we briefly did in the 90's after the first round of unix wars. But it's the 2010's now, and we've certainly learned something. So, let's make it so sometimes sha1 is a crazy program that wants to run as root so it can lock memory while prompting for a passphrase, and outputting binary garbage. Yes, that'd be wise. Let's package that in major Linux distros, too, so users can stumble over it.
| * Merge branch 'master' into xmppGravatar Joey Hess2012-10-24
| |\ | |/ |/|
* | bugfix: Don't fail transferring content from read-only repos. Closes: #691341Gravatar Joey Hess2012-10-24
| | | | | | | | | | This used to work, but got broken when the transfer info files were added, as it failed writing them on the readonly filesystem.
| * added network-protocol-xmpp and -DWITH_XMPPGravatar Joey Hess2012-10-23
|/
* bup: Don't pass - to bup-split to make it read stdinGravatar Joey Hess2012-10-23
| | | | | | | bup 0.25 does not accept that; and bup split reads from stdin by default if no file is given. I'm not sure what version of bup changed this. This only affected bup special remotes that were encrypted.