Merge branch 'master' of ssh://git-annex.branchable.com

This commit is contained in:
Joey Hess 2019-03-18 16:00:20 -04:00
commit c96e623343
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
3 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,8 @@
[[!comment format=mdwn
username="Ilya_Shlyakhter"
avatar="http://cdn.libravatar.org/avatar/1647044369aa7747829c38b9dcc84df0"
subject="comment 2"
date="2019-03-18T18:08:06Z"
content="""
Tests that rely on gpg fail. I think the latest gpg versions always run gpg-agent. So if you package gpg but not gpg-agent it will try to run the host's gpg-agent which may be incompatible with the gpg included in the standalone package.
"""]]

View file

@ -0,0 +1,10 @@
[[!comment format=mdwn
username="Ilya_Shlyakhter"
avatar="http://cdn.libravatar.org/avatar/1647044369aa7747829c38b9dcc84df0"
subject="comment 2"
date="2019-03-18T19:44:07Z"
content="""
\"Wouldn't you have had to put it in a directory path that's almost 4096 bytes deep for this to happen?\" -- I think it's trying to make a single pathname component corresponding to a directory path, so the relevant limit is 255 chars.
For my specific use cases I've found a way not to need the standalone version for now, by building git-annex conda package the normal way.
"""]]

View file

@ -0,0 +1,9 @@
[[!comment format=mdwn
username="Ilya_Shlyakhter"
avatar="http://cdn.libravatar.org/avatar/1647044369aa7747829c38b9dcc84df0"
subject="comment 2"
date="2019-03-18T19:54:04Z"
content="""
Maybe git considers .git an internal detail, so they might not guarantee things working correctly if it's changed to a symlink?
A clean way to handle this would be to add a 'git annex worktree' command, which normally just passes the rest of the command line to 'git worktree', but handles any git-annex-specific details as needed: e.g. 'git annex worktree add' calls 'git worktree add' then replaces the .git pointer file with symlink; 'git annex worktree remove' puts the .git pointer back then calls 'git worktree remove', etc.
"""]]