CI to automate build of cargo lockfiles on different Alpine releases for git-annex aports https://gitlab.alpinelinux.org/alpine/aports/-/tree/master/community/git-annex
Find a file
Joey Hess 643b233860 an optimization that also fixes a reversion
This is a little optimisation; avoid loading the info file for the
download of the current key when checking for other downloads.

The reversion it fixes is sorta strange.
a812d598ef broke checking for transfers
that were already in progress. Indeed, the transfer lock was not held
after getTransfers was called.

Why? I think it's magic in ghc's handling of getLock and setLock,
although it's hard to tell since those functions are almost entirely
undocumented as to their semantics.

Something, either the RTS (or maybe it's linux?) notices that the
same process has taken a lock and is now calling getLock on a FD attached
to the same file. So, it drops the lock.

So, this optimisation avoids that problematic behavior.
2015-05-12 18:34:49 -04:00
Annex Avoid accumulating transfer failure log files unless the assistant is being used. 2015-05-12 15:53:38 -04:00
Assistant couple of AMP warnings I missed before 2015-05-10 16:51:03 -04:00
Backend
Build require RELEAEE_BUILD to be 1, not any value 2015-05-11 09:44:01 -04:00
CmdLine Merge branch 'master' into concurrentprogress 2015-05-12 13:23:22 -04:00
Command Avoid accumulating transfer failure log files unless the assistant is being used. 2015-05-12 15:53:38 -04:00
Common
Config more {-# OPTIONS_GHC -fno-warn-tabs #-} ... Forcing people who have what is merely a difference of opinion to you to do this is a bit of an asshole move. Just saying. 2015-05-10 16:38:49 -04:00
Database rejigger imports for clean build with ghc 7.10's AMP changes 2015-05-10 16:20:30 -04:00
debian Avoid accumulating transfer failure log files unless the assistant is being used. 2015-05-12 15:53:38 -04:00
doc devblog 2015-05-12 16:36:39 -04:00
Git couple of AMP warnings I missed before 2015-05-10 16:51:03 -04:00
Limit
Logs an optimization that also fixes a reversion 2015-05-12 18:34:49 -04:00
Messages allow building without ascii-progress, since it is not ready yet 2015-05-12 13:54:16 -04:00
Remote Avoid accumulating transfer failure log files unless the assistant is being used. 2015-05-12 15:53:38 -04:00
RemoteDaemon
standalone add a wrapper for ssh-keygen 2015-05-08 14:55:57 -04:00
static
templates
Types Merge branch 'master' into concurrentprogress 2015-05-12 13:23:22 -04:00
Upgrade
Utility couple of AMP warnings I missed before 2015-05-10 16:51:03 -04:00
.ghci
.gitattributes
.gitignore
.mailmap Add all combinations for Joey Hess 2015-05-03 02:25:55 +02:00
Annex.hs Merge branch 'master' into concurrentprogress 2015-05-12 13:23:22 -04:00
Assistant.hs unused import on windows 2015-04-20 11:27:47 -04:00
Backend.hs
build.bat let build.bat also be run from cygwin terminal 2015-04-21 14:12:14 -04:00
BuildFlags.hs add filename to progress bar, and display ok/failed at end 2015-04-14 16:35:10 -04:00
CHANGELOG
Checks.hs
CmdLine.hs
Command.hs
Common.hs
Config.hs
configure.hs
COPYRIGHT
Creds.hs a few hlints 2015-04-11 00:10:34 -04:00
Crypto.hs rejigger imports for clean build with ghc 7.10's AMP changes 2015-05-10 16:20:30 -04:00
ghci
git-annex.cabal allow building without ascii-progress, since it is not ready yet 2015-05-12 13:54:16 -04:00
git-annex.hs
git-union-merge.hs
Git.hs removed all uses of undefined from code base 2015-04-19 00:38:29 -04:00
INSTALL
Limit.hs refactor 2015-04-30 14:02:56 -04:00
Locations.hs a few hlints 2015-04-11 00:10:34 -04:00
Logs.hs rethought distributed fsck; instead add activity.log and expire command 2015-04-05 12:50:02 -04:00
Makefile ENH: make debianstandalone{,-dsc} rules 2015-05-11 11:50:59 -04:00
Messages.hs Merge branch 'master' into concurrentprogress 2015-05-12 13:23:22 -04:00
NEWS
README
Remote.hs improve messages 2015-04-30 14:10:28 -04:00
Setup.hs and anoher one.. 2015-05-10 16:40:24 -04:00
Test.hs rejigger imports for clean build with ghc 7.10's AMP changes 2015-05-10 16:20:30 -04:00
Types.hs
Upgrade.hs

git-annex allows managing files with git, without checking the file
contents into git. While that may seem paradoxical, it is useful when
dealing with files larger than git can currently easily handle, whether due
to limitations in memory, checksumming time, or disk space.

For documentation, see doc/ or <https://git-annex.branchable.com/>