summaryrefslogtreecommitdiff
path: root/Build
Commit message (Collapse)AuthorAge
* indent with tabs not spacesGravatar Joey Hess2014-10-09
| | | | | | | | | | | Found these with: git grep "^ " $(find -type f -name \*.hs) |grep -v ': where' Unfortunately there is some inline hamlet that cannot use tabs for indentation. Also, Assistant/WebApp/Bootstrap3.hs is a copy of a module and so I'm leaving it as-is.
* fix some mixed space+tab indentationGravatar Joey Hess2014-10-09
| | | | | | | | | This fixes all instances of " \t" in the code base. Most common case seems to be after a "where" line; probably vim copied the two space layout of that line. Done as a background task while listening to episode 2 of the Type Theory podcast.
* fix buildGravatar Joey Hess2014-08-31
|
* Do not preserve permissions and acls when copying files from one local git ↵Gravatar Joey Hess2014-08-26
| | | | | | | | | | | | | | | | | repository to another. Timestamps are still preserved as long as cp --preserve=timestamps is supported. This avoids cp -a overriding the default mode acls that the user might have set in a git repository. With GNU cp, this behavior change should not be a breaking change, because git-anex also uses rsync sometimes in the same situation, and has only ever preserved timestamps when using rsync. Systems without GNU cp will no longer use cp -a, but instead just cp. So, timestamps will no longer be preserved. Preserving timestamps when copying between repos is not guaranteed anyway. Closes: #729757
* fix buildGravatar Joey Hess2014-08-10
|
* move git-annex to git/cmdGravatar Joey Hess2014-07-16
| | | | | | This way, it works both when using msgit, which will look in both bin and cmd, but also when using cygwin's git, which only looks in PATH, which includes cmd but not bin.
* Windows: Move .vbs files out of git\binGravatar Joey Hess2014-07-16
| | | | | .. To avoid that being in the PATH, which caused some weird breakage. (Thanks, divB)
* indentationGravatar Joey Hess2014-07-13
|
* typoGravatar Joey Hess2014-07-07
|
* windows autobuild images now available from downloads.kitenet.netGravatar Joey Hess2014-06-19
| | | | The autobuilder's own https cert is expired.
* fix generation of infor filesGravatar Joey Hess2014-06-18
| | | | Now have files relative to the top of the repo.
* fix build-version urlGravatar Joey Hess2014-06-18
|
* silence curlGravatar Joey Hess2014-06-18
|
* couple bug fixes in build-version codeGravatar Joey Hess2014-06-18
|
* fix filenamesGravatar Joey Hess2014-06-18
|
* fix urlGravatar Joey Hess2014-06-18
|
* better warningsGravatar Joey Hess2014-06-18
|
* clean up unused importGravatar Joey Hess2014-06-18
|
* make DistributionUpdate download build-version files and use them in the ↵Gravatar Joey Hess2014-06-18
| | | | | | | | | | | | | info files Also automated downloading the builds, finally. I had done it by hand until now. Note that the Windows autobuilder has an expired cert, so it will refuse to download from it currently. I have emailed its admin to get that fixed, hopefully. This commit was sponsored by Peter Hogg.
* add Build/BuildVersion, for use by autobuildersGravatar Joey Hess2014-06-18
|
* don't start minimizedGravatar Joey Hess2014-06-17
|
* crazy quote for spacesGravatar Joey Hess2014-06-17
|
* windows no-DOS-box and autostart, at lastGravatar Joey Hess2014-06-17
| | | | | | | | | Using the crazy but apparently best approach of a VB Script that runs git-annex, in a hidden DOS window. Note that currently the git-annex messages are not directed to daemon.log. Would probably need another layer of script. Also problimatic since the repository may not exist yet.
* fix buildGravatar Joey Hess2014-06-13
|
* make EvilSplicer re-box file-embed's ByteStringsGravatar Joey Hess2014-06-13
| | | | | | | | | The armel autobuilder started failing: Assistant/WebApp/Types.hs:128:14: primitive string literal must contain only characters <= '\xFF' This fixes that.
* better heuristic for what is a package-qualified symbolGravatar Joey Hess2014-05-27
| | | | | Hopefully this will avoid mangling css files embedded in strings inside spliced code.
* proper fix for "foo"# -- need MagicHash extensionGravatar Joey Hess2014-05-25
|
* typoGravatar Joey Hess2014-05-25
|
* put in hack for weird new problem with ghc's emitted splicesGravatar Joey Hess2014-05-25
|
* work around an EvilSplicer bugGravatar Joey Hess2014-05-10
| | | | | | This should fix the android build. The EvilSplicer cannot fix up ghc's misformatting of a case expression with a construstor with a lot of parameters, which spans multiple lines.
* Revert "add debugging for odd OOM or hang on 5 architectures, all where ↵Gravatar Joey Hess2014-04-22
| | | | | | | | configure runs sha224sum" This reverts commit dbc01939f3da3653df51f1fe8b2d5da891ea8828. The OOM was cabal's way of telling us it couldn't resolve dependencies.
* --detach-signGravatar Joey Hess2014-04-21
|
* sign files5.20140421Gravatar Joey Hess2014-04-21
|
* fix distributionupdate buildGravatar Joey Hess2014-04-21
| | | | Including avoiding needing cabal's defines for Utility.URI
* add debugging for odd OOM or hang on 5 architectures, all where configure ↵Gravatar Joey Hess2014-04-20
| | | | runs sha224sum
* use ustar format and omit filnames with colons. new hackage requirementsGravatar Joey Hess2014-04-11
| | | | The tarball on hackage will no longer correspond to the git tag. Oh well.
* Remove wget from OSX dmg, due to issues with cert paths that broke git-annex ↵Gravatar Joey Hess2014-04-10
| | | | automatic upgrading. Instead, curl is used, unless the OSX system has wget installed, which will then be used.
* factor out library code (also used by propellor)Gravatar Joey Hess2014-04-03
|
* fix up old comments that used format=txt, which is no longer enabledGravatar Joey Hess2014-03-20
|
* make configure -Wall cleanGravatar Joey Hess2014-03-10
|
* Probe for quvi version at run time.Gravatar Joey Hess2014-02-28
| | | | | Overhead: git annex addurl runs quvi --version once. And more bloat to Annex state..
* more distributionupdate fixesGravatar Joey Hess2014-02-27
|
* commit before info file build, so that any modified annexed files get updatedGravatar Joey Hess2014-02-21
|
* windows: Fix process termination code.Gravatar Joey Hess2014-02-13
| | | | | | | | | | | The ctrl-c hack used before didn't actually seem to work. No haskell libraries expose TerminateProcess. I tried just calling it via FFI, but got segfaults, probably to do with the wacky process handle not being managed correctly. Moving it all into one C function worked. This was hell. The EvilLinker hack was just final icing on the cake. We all know what the cake was made of.
* fix info file findingGravatar Joey Hess2014-02-10
|
* check for out of date info files at endGravatar Joey Hess2014-02-10
|
* deal with multiarchGravatar Joey Hess2014-02-07
|
* remove debug infoGravatar Joey Hess2014-01-30
|
* fix install_name_tool library name replacementGravatar Joey Hess2014-01-15
|
* fix warningGravatar Joey Hess2014-01-14
|