| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-04-03 | propellor --init inits a cabal sandbox when needed | Sean Whitton | |
| 2016-04-03 | typo | Sean Whitton | |
| 2016-04-02 | move clouds | Joey Hess | |
| 2016-04-02 | force flush on prompt | Joey Hess | |
| 2016-04-02 | use concurrent-output consistently | Joey Hess | |
| 2016-04-02 | got rid of build flag to detect stack | Joey Hess | |
| 2016-04-02 | make sure that the wrapper runs propellor in the foreground | Joey Hess | |
| 2016-04-02 | typo | Joey Hess | |
| 2016-04-02 | typo | Joey Hess | |
| 2016-04-02 | avoid wrapper building propellor unnessessarily | Joey Hess | |
| 2016-04-02 | Stack 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-02 | cosmetics | Joey Hess | |
| 2016-04-01 | verify use of gpg key | Joey Hess | |
| having a prompt here makes it clearer to the user why gpg is prompting for a passphrase. | |||
| 2016-04-01 | separate propellor --init | Joey Hess | |
| 2016-04-01 | setup gpg key in initial setup process | Joey Hess | |
| 2016-04-01 | fix false positive for out of date message after initial clone from git bundle | Joey Hess | |
| 2016-04-01 | Improved propellor's first run experience; the wrapper program will now walk ↵ | Joey Hess | |
| the user through setting up ~/.propellor with a choice between a clone of propellor's git repository, or a minimal config. | |||
| 2016-03-30 | Revert "propellor spin" | Joey Hess | |
| This reverts commit 947e73a2021fcad36a806a224f171e0dba9ee7da. When I tried to use startssl cert with postfix, darkstar complained: Server certificate not verified | |||
| 2016-03-30 | propellor spin | Joey Hess | |
| 2016-03-30 | propellor spin | Joey Hess | |
| 2016-03-30 | propellor spin | Joey Hess | |
| 2016-03-30 | layout and indents | Joey Hess | |
| 2016-03-30 | improve comments | Joey Hess | |
| 2016-03-30 | Adding support for software-properties-common to OS properties branch. | Evan Cofsky | |
| The config-simple file now shows: 1. Adding PPAs 2. Adding apt keys from a remote keyserver 3. Adding apt sources 4. Installing signed packages from a new repository. | |||
| 2016-03-30 | Add simplistic support for apt-software-properties-common. | Evan Cofsky | |
| I know it's definitely a very Buntish thing, but for adding some larger collections of software on a very Buntish box, it definitely comes in handy. I also think that it might be possible to support a lot of the features using propellor properties directly as a fallback, and that might be something I could look into as well. Thanks! | |||
| 2016-03-30 | apt install propellor dependencies more quietly | Joey Hess | |
| Avoids spam when most deps are installed | |||
| 2016-03-30 | propellor spin | Joey Hess | |
| 2016-03-30 | When new dependencies are added to propellor or the propellor config, try ↵ | Joey Hess | |
| harder to get them installed. In particular, this makes propellor --spin work when the remote host needs to get dependencies installed in order to build the updated config. Fixes http://propellor.branchable.com/todo/problem_with_spin_after_new_dependencies_added/ | |||
| 2016-03-30 | propellor spin | Joey Hess | |
| 2016-03-30 | indent | Joey Hess | |
| 2016-03-30 | add hs-concurrent-output to freebsd deps | Joey Hess | |
| 2016-03-30 | fix info propigation from chroot to systemd container | Joey Hess | |
| 2016-03-30 | refactor | Joey Hess | |
| 2016-03-30 | show childProperty same as property | Joey Hess | |
| 2016-03-30 | Merge branch 'master' into typed-os-requirements | Joey Hess | |
| 2016-03-30 | fix warning | Joey Hess | |
| 2016-03-30 | Merge branch 'master' into typed-os-requirements | Joey Hess | |
| 2016-03-30 | Apt.update: Also run dpkg --configure -a here as apt for some reason won't ↵ | Joey Hess | |
| even update if dpkg was interrupted. | |||
| 2016-03-28 | Merge branch 'master' into typed-os-requirements | Joey Hess | |
| 2016-03-28 | one more | Joey Hess | |
| 2016-03-28 | last withOS that can be converted to pickOS is converted | Joey Hess | |
| 2016-03-28 | propellor spin | Joey Hess | |
| 2016-03-28 | propellor spin | Joey Hess | |
| 2016-03-28 | backports are debian only | Joey Hess | |
| 2016-03-28 | slayed the type dragon | Joey Hess | |
| 2016-03-28 | update | Joey Hess | |
| 2016-03-28 | implemented pickOS | Joey Hess | |
| Fell down the fromSing rabbit hole, followed by the OMH ghc doesh't work rabbit hole. Suboptimal. | |||
| 2016-03-27 | add dep on concurrent-output, and re-enable -O0 | Joey Hess | |
| Using the external concurrent-output library lets it be built with -O2 as is needed to get good runtime memory use. Enabling -O0 because ghc is using rather a lot more time and memory due to the new more complex types. old master branch: Linking dist/build/propellor-config/propellor-config ... 24.59user 0.97system 0:25.93elapsed 98%CPU (0avgtext+0avgdata 354612maxresident)k 1544inputs+46064outputs (0major+371244minor)pagefaults 0swaps this branch before -O0: Linking dist/build/propellor-config/propellor-config ... 25.56user 0.73system 0:26.61elapsed 98%CPU (0avgtext+0avgdata 345348maxresident)k 0inputs+43480outputs (0major+364163minor)pagefaults 0swaps this branch with -O0: Linking dist/build/propellor-config/propellor-config ... 11.91user 0.75system 0:12.97elapsed 97%CPU (0avgtext+0avgdata 237472maxresident)k 16inputs+37264outputs (0major+336166minor)pagefaults 0swaps Above benchmarks are building all source files needed by config-simple.hs. The story is rather worse for joeyconfig.hs; building it now needs over 500 mb even with -O0 :-/ | |||
| 2016-03-27 | improve haddocks and move code around to make them more clear | Joey Hess | |
| 2016-03-27 | propellor spin | Joey Hess | |
