-
Couldn't load subscription status.
- Fork 723
ZuriHac 2017
This is a page to collect ideas for Cabal/Hackage hacking tasks/mini-projects for ZuriHac 2017. It is an updated version of a similar page for the 2016 HaskellX infrastructure hackathon.
Please use the #hackage IRC channel on freenode for online discussions.
Feel free to expand individual bullet points into full (linked) pages or tickets/issues.
If you're a newcomer to the Cabal code base, start by taking a look at the issues tagged "easy" and "newcomer" on the bug tracker. You should be able to find something to cut your teeth on there.
Mostly Cabal 2.0/3.0 and related. 2.0 is the next release due Real Soon Now that will have hackage-security enabled by default and an updated preview version of new-build feature (see below). 3.0 is the more distant future version in which new-build will replace old build commands and sandboxes.
-
Improve
cabal new-buildnew-buildis a major reworking of how Cabal/cabal-install works internally that unifies old build commands and sandboxes and is the main focus of our efforts right now. See Edward's blog post for an intro tonew-buildand a more detailed explanation.There is a lot of work still to be done on
new-build, and most of it can be done in parallel and in groups. We compiled the following list of tasks (roughly sorted by difficulty) that we feel are offering the most pay off right now and are suitable in scope for the hackathon:- 'cabal new-install' for binaries. See
#3332and4558. Should basically work just likecabal install foodoes today for binaries modulo using the store for library dependencies. Should be relatively easy to implement (new-build foo+Setup.hs copy). - Integration tests for new-build (e.g.: new-build everything on Stackage).
#3322. - Fix this annoying bug:
ghc-optionsapplies to all dependencies, not just local packages.#3883. - UX design for user-wide environments (
cabal new-install).#3737. - UX design for
cabal new-update(index freezing by default, interaction withcabal.project.freeze). Talk with @ezyang and/or @hvr if they're online.#3832. - Go through the remaining issues in
#3104(difficulty: moderate) - Get the new-clean PR into shape.
- Allow "sandbox without project file" functionality in new Cabal.
#3730(related to GHC environments, seeextra-packagesfeature). - Go through the issues in the Galois meta tracking ticket:
#3577. - Build on top of the
cabal new-buildcode to supportcabal {run,test,bench}etc. Relevant ticket:#3638. - Improve
cabal new-haddock. - Add support for
git/darcs/... dependencies,#2189(makes sense to start with tarball dependencies before tackling SCM ones -- tarballs are easier to test)
- 'cabal new-install' for binaries. See
If the above is not enough, you can pick a task from the list of all open issues tagged new-build.
-
Cabal documentation.
Cabal's user guide got quite a bit better recently, but there's still a lot of room for improvement. In particular, we want to put more emphasis on the
cabal-installtool at the expense of theSetup.hsinterface and add a tutorial section. The new user guide TOC should look like roughly this:- Intro
- Tutorial, p.1 - how to use cabal-install to build and install existing packages
- Tutorial, p.2 - how to develop programs using cabal-install and write .cabal files -- basically, an updated version of https://wiki.haskell.org/How_to_write_a_Haskell_program.
-
.cabalformat reference -
cabal-installcommand reference -
cabal new-buildchapter - Appendix: Cabal spec (i.e., the
Setup.hsinterface)
Anyone considering this should feel empowered to make decisions. You could decide to start from scratch with a new structure and just pinch material from the existing docs. You might want to fully split into tutorial and reference.
-
A new website for cabal-install/Cabal.
Our website hasn't been updated in ages, so a facelift is long due. It doesn't have to be super advanced, a simple Hakyll-based static page with a blog/news feed would suffice. Start by looking at the https://github.com/haskell/cabal-website repo.
-
Improvements in the release process.
This is mainly about automating the process of producing binaries for various platforms (Linux i386/x86-64, OS X, Windows x32/x64). We can either use Travis and AppVeyor or the haskell.org infrastructure. The latter requires extending the code of GHC Builder to support arbitrary Haskell projects besides just GHC, because that's what they (haskell.org) want to use for their build farm. Talk with Gershom (@gbaz/@sclv) if he's online about haskell.org integration.
-
New AST for .cabal files (not an easy one!).
Builds on the new Parsec parser work (see
#2865). This should make it possible to programmatically edit.cabalfiles while preserving comments and formatting.
-
Include-able Common Stanzas
#2832Builds on the new parser+AST. Allow to reduce duplication by moving common definitions to include-able
commonstanzas which can then be included from other stanzas.