root/packages

Revision 0f4925b6dfa40010bbf19e2824224b5a568d4f57, 5.2 KB (checked in by Ian Lynagh <igloo@…>, 9 days ago)

Use transformers directly, rather than using mtl

This means we no longer need mtl in a GHC tree.

  • Property mode set to 100644
Line 
1# Despite the name "package", this file contains the master list of
2# the *repositories* that make up GHC. It is parsed by
3# * boot
4# * sync-all
5# * rules/extra-packages.mk
6#
7# Some of this information is duplicated elsewhere in the build system:
8#    See Trac #3896
9# In particular when adding libraries to this file, you also need to add
10# the library to the SUBDIRS variable in libraries/Makefile so that they
11# actually get built
12#
13# The repos are of several kinds:
14#    - The main GHC source repo
15#    - Each boot package lives in a repo
16#    - DPH is a repo that contains several packages
17#    - Haddock and hsc2hs are applications, built on top of GHC,
18#        and in turn needed to bootstrap GHC
19#    - ghc-tarballs is need to build GHC
20#    - nofib and testsuite are optional helpers
21#
22# The format of the lines in this file is:
23#   localpath    tag    remotepath    VCS
24# where
25#   * 'localpath' is where to put the repository in a checked out tree.
26#   * 'remotepath' is where the repository is in the central repository.
27#   * 'VCS' is what version control system the repo uses.
28#
29#   * The 'tag' determines when "darcs-all get" will get the
30#     repo. If the tag is "-" then it will always get it, but if there
31#     is a tag then a corresponding flag must be given to darcs-all, e.g.
32#     if you want to get the packages with an "extralibs" or "testsuite"
33#     tag then you need to use "darcs-all --extra --testsuite get".
34#     Support for new tags must be manually added to the darcs-all script.
35#
36#     'tag' is also used to determine which packages the build system
37#     deems to have the EXTRA_PACKAGE property: tags 'dph' and 'extra'
38#     both give this property
39#
40# Lines that start with a '#' are comments.
41#
42# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
43#    localpath                tag           remotepath                          VCS
44# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
45.                               -           ghc.git                             git
46ghc-tarballs                    -           ghc-tarballs.git                    git
47utils/hsc2hs                    -           hsc2hs.git                          git
48utils/haddock                   -           haddock.git                         git
49libraries/array                 -           packages/array.git                  git
50libraries/base                  -           packages/base.git                   git
51libraries/binary                -           packages/binary.git                 git
52libraries/bytestring            -           packages/bytestring.git             git
53libraries/Cabal                 -           packages/Cabal.git                  git
54libraries/containers            -           packages/containers.git             git
55libraries/deepseq               -           packages/deepseq.git                git
56libraries/directory             -           packages/directory.git              git
57libraries/filepath              -           packages/filepath.git               git
58libraries/ghc-prim              -           packages/ghc-prim.git               git
59libraries/haskeline             -           packages/haskeline.git              git
60libraries/haskell98             -           packages/haskell98.git              git
61libraries/haskell2010           -           packages/haskell2010.git            git
62libraries/hoopl                 -           packages/hoopl.git                  git
63libraries/hpc                   -           packages/hpc.git                    git
64libraries/integer-gmp           -           packages/integer-gmp.git            git
65libraries/integer-simple        -           packages/integer-simple.git         git
66libraries/old-locale            -           packages/old-locale.git             git
67libraries/old-time              -           packages/old-time.git               git
68libraries/pretty                -           packages/pretty.git                 git
69libraries/process               -           packages/process.git                git
70libraries/template-haskell      -           packages/template-haskell.git       git
71libraries/terminfo              -           packages/terminfo.git               git
72libraries/transformers          -           packages/transformers.git           git
73libraries/unix                  -           packages/unix.git                   git
74libraries/utf8-string           -           packages/utf8-string.git            git
75libraries/Win32                 -           packages/Win32.git                  git
76libraries/xhtml                 -           packages/xhtml.git                  git
77testsuite                       testsuite   testsuite.git                       git
78nofib                           nofib       nofib.git                           git
79libraries/parallel              extra       packages/parallel.git               git
80libraries/stm                   extra       packages/stm.git                    git
81libraries/random                dph         packages/random.git                 git
82libraries/primitive             dph         packages/primitive.git              git
83libraries/vector                dph         packages/vector.git                 git
84libraries/dph                   dph         packages/dph.git                    git
Note: See TracBrowser for help on using the browser.