File: day_110__release_prep.mdwn

package info (click to toggle)
git-annex 10.20250416-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 73,572 kB
  • sloc: haskell: 90,656; javascript: 9,103; sh: 1,469; makefile: 211; perl: 137; ansic: 44
file content (25 lines) | stat: -rw-r--r-- 1,082 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Last night I tracked down and fixed a bug in the DAV library that has been
affecting WebDAV remotes. I've been deploying the fix for that today,
including to the android and arm autobuilders. While I finished a clean
reinstall of the android autobuilder, I ran into problems getting a clean
reinstall of the arm autobuilder (some type mismatch error building
yesod-core), so manually fixed its DAV for now.

The WebDAV fix and other recent fixes makes me want to make a release soon,
probably Monday.

ObWindows: Fixed git-annex to not crash when run on Windows
in a git repository that has a remote with a unix-style path 
like "/foo/bar". Seems that not everything aggrees on whether such a path
is absolute; even sometimes different parts of the same library disagree!

[[!format haskell """
import System.FilePath.Windows

prop_windows_is_sane :: Bool
prop_windows_is_sane = isAbsolute upath || ("C:\\STUFF" </> upath /= upath)
  where upath = "/foo/bar"
"""]]

Perhaps more interestingly, I've been helping dxtrish port git-annex to
OpenBSD and it seems most of the way there.