[commit: ghc] master: Move `iserv` into `utils` and change package name from `iserv-bin` to `iserv` (6fbe5f2)

git at git.haskell.org git at git.haskell.org
Fri Jun 8 00:11:50 UTC 2018


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/6fbe5f274ba84181f5db50901639ae382ef68c4b/ghc

>---------------------------------------------------------------

commit 6fbe5f274ba84181f5db50901639ae382ef68c4b
Author: Moritz Angermann <moritz.angermann at gmail.com>
Date:   Thu Jun 7 13:36:24 2018 -0400

    Move `iserv` into `utils` and change package name from `iserv-bin` to `iserv`
    
    This is done for consistency. We usually call the package file the same name the
    folder has.  The move into `utils` is done so that we can move the library into
    `libraries/iserv` and the proxy into `utils/iserv-proxy` and then break the
    `iserv.cabal` apart.  This will make building the cross compiler with TH
    simpler, because we can build the library and proxy as separate packages.
    
    Test Plan: ./validate
    
    Reviewers: bgamari, goldfire, erikd
    
    Reviewed By: bgamari
    
    Subscribers: rwbarton, thomie, carter
    
    Differential Revision: https://phabricator.haskell.org/D4436


>---------------------------------------------------------------

6fbe5f274ba84181f5db50901639ae382ef68c4b
 .gitignore                                         |   3 +-
 ghc.mk                                             |  13 +--
 {iserv => libraries/libiserv}/Makefile             |   0
 {iserv => libraries/libiserv}/cbits/iservmain.c    |   0
 libraries/libiserv/ghc.mk                          |   5 +
 libraries/libiserv/libiserv.cabal                  |  39 +++++++
 {iserv => libraries/libiserv}/proxy-src/Remote.hs  |   0
 {iserv => libraries/libiserv}/src/GHCi/Utils.hsc   |   0
 {iserv => libraries/libiserv}/src/Lib.hs           |   0
 .../libiserv}/src/Remote/Message.hs                |   0
 {iserv => libraries/libiserv}/src/Remote/Slave.hs  |   0
 {iserv => utils/iserv-proxy}/Makefile              |   0
 utils/iserv-proxy/ghc.mk                           | 113 +++++++++++++++++++++
 .../iserv-proxy/iserv-proxy.cabal                  |  72 +------------
 .../Remote.hs => utils/iserv-proxy/src/Main.hs     |   0
 utils/{hp2ps => iserv}/Makefile                    |   2 +-
 {iserv => utils/iserv}/cbits/iservmain.c           |   0
 {iserv => utils/iserv}/ghc.mk                      |  66 ++++++------
 utils/iserv/iserv.cabal                            |  44 ++++++++
 {iserv => utils/iserv}/src/Main.hs                 |   0
 20 files changed, 248 insertions(+), 109 deletions(-)

Diff suppressed because of size. To see it, use:

    git diff-tree --root --patch-with-stat --no-color --find-copies-harder --ignore-space-at-eol --cc 6fbe5f274ba84181f5db50901639ae382ef68c4b


More information about the ghc-commits mailing list