| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-11-24 | haddock improvements | Joey Hess | |
| 2015-11-24 | Added User.hasDesktopGroups property. | Joey Hess | |
| Based on a property in spwhitton's config, but rewritten. | |||
| 2015-11-24 | fixes | Joey Hess | |
| 2015-11-24 | found this handy conversion of my blog post to propellor property in ↵ | Joey Hess | |
| spwhitton's repo | |||
| 2015-11-24 | refactor | Joey Hess | |
| 2015-11-24 | fix indent | Joey Hess | |
| 2015-11-24 | Git.repoConfigured and Git.repoAcceptsNonFFs props | Sean Whitton | |
| The latter is useful when setting up Git hosting using the Git.bareRepo property. Signed-off-by: Sean Whitton <spwhitton@spwhitton.name> (cherry picked from commit cf3b48217a78460758615b52849e2b717ec24de9) | |||
| 2015-11-21 | Merge branch 'joeyconfig' | Joey Hess | |
| 2015-11-21 | DebianMirror: use a lensy approach to set values of a DebianMirror | Félix Sipma | |
| (cherry picked from commit 359e449157f831bbd22a212d618b6762a58b47de) | |||
| 2015-11-21 | DebianMirror: add DebianMirror type | Félix Sipma | |
| (cherry picked from commit 82d949506dbadabff7d62de85a2f601b9d5755cc) | |||
| 2015-11-20 | DebianMirror: add a [RsyncExtra] argument | Félix Sipma | |
| (cherry picked from commit baff70140cbf3f6113439335b96f3016f261a6a0) | |||
| 2015-11-20 | DebianMirror: debmirror --host argument should be a hostname, not an url | Félix Sipma | |
| (cherry picked from commit f0e374b4a43db750868f1ca4ccc465cee5691748) | |||
| 2015-11-17 | Removed the (unused) dependency on quickcheck. | Joey Hess | |
| 2015-11-17 | DiskImage creation automatically uses Chroot.noServices. | Joey Hess | |
| 2015-11-17 | Added Chroot.noServices property. | Joey Hess | |
| 2015-11-17 | export for haddock | Joey Hess | |
| 2015-11-11 | Merge branch 'joeyconfig' | Joey Hess | |
| 2015-11-11 | rename for clarity | Joey Hess | |
| 2015-11-11 | Merge branch 'joeyconfig' | Joey Hess | |
| 2015-11-11 | Add Propellor.Property.PropellorRepo.hasUrl, an explicit way to set the git ↵ | Joey Hess | |
| repository url normally implicitly set when using --spin. | |||
| 2015-11-08 | Merge branch 'joeyconfig' | Joey Hess | |
| 2015-11-01 | merge from concurrent-output | Joey Hess | |
| 2015-11-01 | run editor processes in foreground | Joey Hess | |
| 2015-11-01 | a few tweaks for concurrent output | Joey Hess | |
| Force console mode when --spin calls SimpleRun | |||
| 2015-11-01 | Revert "propellor spin" | Joey Hess | |
| This reverts commit 2891006d9f18b9f50b7d8dfc6d32e326499913f0. | |||
| 2015-11-01 | propellor spin | Joey Hess | |
| 2015-11-01 | Merge branch 'joeyconfig' | Joey Hess | |
| 2015-11-01 | take dkim out of test mode | Joey Hess | |
| 2015-10-29 | generalize what can be output | Joey Hess | |
| This adds a dependency on Text, but I don't mind propellor depending on it and am somewhat surprised it doesn't already. Using Text also lets this use encodeUtf8 instead of the nasty hack it was using to go from String -> ByteString. | |||
| 2015-10-28 | propellor spin | Joey Hess | |
| 2015-10-28 | propellor spin | Joey Hess | |
| 2015-10-28 | have to flush concurrent output before printing result when chaining | Joey Hess | |
| 2015-10-28 | fix bad MVar use, use STM | Joey Hess | |
| I had 2 MVars both involved in the same lock, and it seemed intractable to avoid deadlocks with them. STM makes it easy. At this point, the concurrent process stuff seems to work pretty well, but I'm not 100% sure it's not got some bugs. | |||
| 2015-10-28 | need withConcurrentOutput to flush any buffered concurrent output | Joey Hess | |
| 2015-10-28 | use outputConcurrent interface | Joey Hess | |
| This interface will fix the current deadlock when a process is running and the thread that ran it wants to output to the console. The locking and buffering is not implemented yet. | |||
| 2015-10-28 | remove debug | Joey Hess | |
| Found problem.. actionMessage is blocking. | |||
| 2015-10-28 | propellor spin | Joey Hess | |
| 2015-10-28 | propellor spin | Joey Hess | |
| 2015-10-28 | propellor spin | Joey Hess | |
| 2015-10-28 | split out generic ConcurrentOutput module to Utility | Joey Hess | |
| 2015-10-28 | concurrency docs | Joey Hess | |
| 2015-10-27 | use execProcessConcurrent everywhere | Joey Hess | |
| Found a reasonable clean way to make Utility.Process use execProcessConcurrent, while still allowing copying updates to it from git-annex. | |||
| 2015-10-27 | concurrent version of createProcess | Joey Hess | |
| Have not yet wired everything up to use this, that currently uses Utility.Process. | |||
| 2015-10-27 | make Propellor.Message use lock to handle concurrent threads outputting messages | Joey Hess | |
| Not yet handled: Output from concurrent programs. | |||
| 2015-10-27 | use a shared global for the MessageHandle | Joey Hess | |
| 2015-10-27 | Explicit Info/NoInfo for RevertableProperty (API change) | Joey Hess | |
| RevertableProperty used to be assumed to contain info, but this is now made explicit, with RevertableProperty HasInfo or RevertableProperty NoInfo. Transition guide: - If you define a RevertableProperty, expect some type check failures like: "Expecting one more argument to ‘RevertableProperty’". - Change it to "RevertableProperty NoInfo" - The compiler will then tell you if it needs "HasInfo" instead. - If you have code that uses the RevertableProperty constructor that fails to type check, use the more powerful <!> operator | |||
| 2015-10-26 | Merge branch 'joeyconfig' | Joey Hess | |
| 2015-10-26 | Add File.isCopyOf | Per Olofsson | |
| Signed-off-by: Per Olofsson <pelle@dsv.su.se> | |||
| 2015-10-24 | propellor spin | Joey Hess | |
| 2015-10-24 | improve RevertableProperty combining | Joey Hess | |
| * Various property combinators that combined a RevertableProperty with a non-revertable property used to yield a RevertableProperty. This was a bug, because the combined property could not be fully reverted in many cases. Fixed by making the combined property instead be a Property HasInfo. * combineWith now takes an addional parameter to control how revert actions are combined (API change). | |||
