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

This commit is contained in:
Joey Hess 2018-12-17 16:10:12 -04:00
commit 0aaf6bbe18
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
3 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1 @@
In stack.yaml, the 'dbus' and 'magicmime' flags are off by default. What is the reason for that? When building e.g. conda-forge package, is there reason not to build with these flags on? @joeyh

View file

@ -0,0 +1,13 @@
Since 7.20181121 Debian has been seeing test suite failures, on the mips autobuilders and on the amd64 CI infrastructure, but not on the amd64 autobuilders.
With 7.20181205 I was not able to reproduce the mips failure on a porterbox. Instead, a bunch of different tests failed. I have not yet had time to try 7.20181121 on a porterbox.
However, the most recent failures on the CI infrastructure and the mips autobuilders looks to be the same set of tests that have failed. So I am inclined to think that the problem is not a flaky test.
I won't have time to investigate for a few days but I thought that I would at least get this bug filed.
- [mips log](https://spwhitton.name/pub/git-annex-dec18/mipsbuildd.txt)
- [CI log](https://spwhitton.name/pub/git-annex-dec18/debci.txt)
--spwhitton

View file

@ -0,0 +1,19 @@
I might be wrong, but I believe this stopped working since "pointer files" are used in v7 smudge/clean filters and [[tips/unlocked files]]:
$ git annex unused
unused . (checking for unused data...) (checking kingston/master...) (checking kingston/adjusted/master(unlocked)...) (checking master...)
Some annexed data is no longer used by any files:
NUMBER KEY
[...]
(To see where data was previously used, try: git log --stat -S'KEY')
To remove unwanted data: git-annex dropunused NUMBER
ok
Indeed, -S doesn't find anything here. I suspect that is because git's
smudge/clean interface kicks in in `--stat`. The above text should add
the `--no-textconv` argument to avoid that. At least it works here. :)
-- [[anarcat]]