summaryrefslogtreecommitdiff
path: root/src/Propellor/DotDir.hs
AgeCommit message (Collapse)Author
2018-05-03propellor spinJoey Hess
2018-04-23stack.yaml: Updated to lts-9.21.Joey Hess
Also tested with lts-11.6 / ghc 8.2.2 and it does build, however the stack in debian stable (and even unstable currently) does not support that version's data.
2018-04-23semigroup monoid change fallout; drop ghc 7 supportJoey Hess
Fix build with ghc 8.4, which broke due to the Semigroup Monoid change. See https://prime.haskell.org/wiki/Libraries/Proposals/SemigroupMonoid Dropped support for building propellor with ghc 7 (as in debian oldstable), to avoid needing to depend on the semigroups transitional package, but also because it's just too old to be worth supporting. If we indeed drop ghc 7 support entirely, some code to support "jessie" can be removed; concurrent-output can be de-embedded, and the Singletons code can be simplified. This commit was sponsored by Jack Hill on Patreon.
2018-02-19cleanup debugJoey Hess
2018-02-19output warning message atomicallyJoey Hess
Before part went to stderr and part to stdout, and the two parts could be reordered in some cases, particularly when concurrent output caused them to be buffered. This commit was sponsored by Trenton Cronholm on Patreon.
2018-02-19Warn again about new upstream version when ~/.propellor was cloned from the ↵Joey Hess
Debian git bundle using an older version of propellor that set up an upstream remote. This commit was sponsored by Jake Vosloo on Patreon.
2018-02-19comment typoJoey Hess
2018-01-04skip update warning when there's a remote named "upstream"Joey Hess
2018-01-02avoid bogus warningJoey Hess
Avoid bogus warning about new upstream version when /usr/bin/propellor is run on a Debian system, but ~/.propellor was not cloned from the Debian git bundle.
2018-01-02avoid mixing concurrent and non-concurrent output for related messagesJoey Hess
If the concurrent output was delayed for whatever reason, the messages could appear out of order and separated from one-another.
2017-07-13Updated stack config to lts-8.22.Joey Hess
2017-03-01Fixed https url to propellor git repository.Joey Hess
2017-03-01github mirror of propellor is goneJoey Hess
* The github mirror of propellor's git repository has been removed, since github's terms of service has started imposing unwanted licensing requirements. * propellor --init: The option to clone propellor's git repository used to use the github mirror, and has been changed to use a different mirror.
2017-01-25Bump resolverAndrew Cowie
Compile with GHC 8.0.1 against lts-7.16.
2016-08-20improve Sean's fix, making the wrapper still work with older git versionsJoey Hess
2016-08-20pass --allow-unrelated-histories to git mergeSean Whitton
Fixes merging the /usr/src/propellor git bundle with git 2.9.
2016-06-13convert Architecture to a sumtypeFélix Sipma
TODO: remove ANDROID (used in GitAnnexBuilder) TODO: add other architectures TODO: rename ARMHF TODO: rename ARMEL (cherry picked from commit 6f36f6cade4e1d8b15c714565e223562c6573099)
2016-06-03better deal with stack resolver being in two placesJoey Hess
2016-04-28Fix build with directory-1.2.6.2.Joey Hess
It's now exporting a conflicting isSymbolicLink https://github.com/haskell/directory/issues/52 Only a few places in propellor use isSymbolicLink, but to prevent future problems, made as much of it as possible import Utility.Directory, which re-exports System.Directory without the conflicting symbol. (Utility.Tmp and System.Console.Concurrent.Internal cannot import Utility.Directory due to cycles, and don't use isSymbolicLink anyway.)
2016-04-05slightly more robust cabal file readingJoey Hess
2016-04-05Merge remote-tracking branch 'spwhitton/fix-init-build' into joeyconfigJoey Hess
2016-04-03propellor --init inits a cabal sandbox when neededSean Whitton
2016-04-03typoSean Whitton
2016-04-02qualify exportsJoey Hess
2016-04-02move cloudsJoey Hess
2016-04-02force flush on promptJoey Hess
2016-04-02use concurrent-output consistentlyJoey Hess
2016-04-02got rid of build flag to detect stackJoey Hess
2016-04-02typoJoey Hess
2016-04-02Stack support.Joey Hess
* Stack support. "git config propellor.buildsystem stack" will make propellor build its config using stack. * When propellor is installed using stack, propellor --init will automatically set propellor.buildsystem=stack.
2016-04-02cosmeticsJoey Hess
2016-04-01verify use of gpg keyJoey Hess
having a prompt here makes it clearer to the user why gpg is prompting for a passphrase.
2016-04-01separate propellor --initJoey Hess