-
Notifications
You must be signed in to change notification settings - Fork 696
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make cabal-install build-type: Simple
- Loading branch information
Showing
4 changed files
with
3 additions
and
97 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,3 @@ | ||
import Distribution.PackageDescription ( PackageDescription ) | ||
import Distribution.Simple ( defaultMainWithHooks | ||
, simpleUserHooks | ||
, postBuild | ||
, postCopy | ||
, postInst | ||
) | ||
import Distribution.Simple.InstallDirs ( mandir | ||
, CopyDest (NoCopyDest) | ||
) | ||
import Distribution.Simple.LocalBuildInfo ( LocalBuildInfo(..) | ||
, absoluteInstallDirs | ||
) | ||
import Distribution.Simple.Utils ( installOrdinaryFiles | ||
, notice ) | ||
import Distribution.Simple.Setup ( buildVerbosity | ||
, copyDest | ||
, copyVerbosity | ||
, fromFlag | ||
, installVerbosity | ||
) | ||
import Distribution.Verbosity ( Verbosity ) | ||
|
||
import System.IO ( openFile | ||
, IOMode (WriteMode) | ||
) | ||
import System.Process ( runProcess ) | ||
import System.FilePath ( (</>) ) | ||
|
||
-- WARNING to editors of this file: | ||
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
-- At this moment (Cabal 1.23), whatever you write here must be | ||
-- compatible with ALL Cabal libraries which we support bootstrapping | ||
-- with. This is because pre-setup-depends versions of cabal-install will | ||
-- build Setup.hs against the version of Cabal which MATCHES the library | ||
-- that cabal-install was built against. There is no way of overriding | ||
-- this behavior without bumping the required 'cabal-version' in our | ||
-- Cabal file. Travis will let you know if we fail to install from | ||
-- tarball! | ||
|
||
import Distribution.Simple | ||
main :: IO () | ||
main = defaultMainWithHooks $ simpleUserHooks | ||
{ postBuild = \ _ flags _ lbi -> | ||
buildManpage lbi (fromFlag $ buildVerbosity flags) | ||
, postCopy = \ _ flags pkg lbi -> | ||
installManpage pkg lbi (fromFlag $ copyVerbosity flags) (fromFlag $ copyDest flags) | ||
, postInst = \ _ flags pkg lbi -> | ||
installManpage pkg lbi (fromFlag $ installVerbosity flags) NoCopyDest | ||
} | ||
|
||
buildManpage :: LocalBuildInfo -> Verbosity -> IO () | ||
buildManpage lbi verbosity = do | ||
let cabal = buildDir lbi </> "cabal/cabal" | ||
manpage = buildDir lbi </> "cabal/cabal.1" | ||
manpageHandle <- openFile manpage WriteMode | ||
notice verbosity ("Generating manual page " ++ manpage ++ " ...") | ||
_ <- runProcess cabal ["man","--raw"] Nothing Nothing Nothing (Just manpageHandle) Nothing | ||
return () | ||
|
||
installManpage :: PackageDescription -> LocalBuildInfo -> Verbosity -> CopyDest -> IO () | ||
installManpage pkg lbi verbosity copy = do | ||
let destDir = mandir (absoluteInstallDirs pkg lbi copy) </> "man1" | ||
installOrdinaryFiles verbosity destDir [(buildDir lbi </> "cabal", "cabal.1")] | ||
main = defaultMain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ Author: Cabal Development Team (see AUTHORS file) | |
Maintainer: Cabal Development Team <[email protected]> | ||
Copyright: 2003-2019, Cabal Development Team | ||
Category: Distribution | ||
Build-type: Custom | ||
Build-type: Simple | ||
Extra-Source-Files: | ||
README.md bash-completion/cabal bootstrap.sh changelog | ||
|
||
|
@@ -126,13 +126,6 @@ Flag lukko | |
default: True | ||
manual: True | ||
|
||
custom-setup | ||
setup-depends: | ||
Cabal >= 2.2, | ||
base, | ||
process >= 1.1.0.1 && < 1.7, | ||
filepath >= 1.3 && < 1.5 | ||
|
||
executable cabal | ||
main-is: Main.hs | ||
hs-source-dirs: main | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -279,11 +279,7 @@ | |
Maintainer: Cabal Development Team <[email protected]> | ||
Copyright: 2003-2019, Cabal Development Team | ||
Category: Distribution | ||
%if CABAL_FLAG_LIB | ||
Build-type: Simple | ||
%else | ||
Build-type: Custom | ||
%endif | ||
Extra-Source-Files: | ||
README.md bash-completion/cabal bootstrap.sh changelog | ||
|
@@ -391,16 +387,6 @@ | |
default: True | ||
manual: True | ||
%if CABAL_FLAG_LIB | ||
%else | ||
custom-setup | ||
setup-depends: | ||
Cabal >= 2.2, | ||
base, | ||
process >= 1.1.0.1 && < 1.7, | ||
filepath >= 1.3 && < 1.5 | ||
%endif | ||
# | ||
# Libraries, if CABAL_FLAG_LIB | ||
# | ||
|