Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Cabal
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glasgow Haskell Compiler
Packages
Cabal
Commits
44eb1e01
Commit
44eb1e01
authored
20 years ago
by
Isaac Potoczny-Jones
Browse files
Options
Downloads
Patches
Plain Diff
added args to some preHooks
parent
c8a2f780
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Distribution/Simple.hs
+24
-16
24 additions, 16 deletions
Distribution/Simple.hs
Distribution/Simple/Install.hs
+1
-1
1 addition, 1 deletion
Distribution/Simple/Install.hs
with
25 additions
and
17 deletions
Distribution/Simple.hs
+
24
−
16
View file @
44eb1e01
...
...
@@ -101,7 +101,7 @@ data UserHooks = UserHooks
runTests
::
Bool
->
IO
ExitCode
,
-- ^Used for './setup test'
readDesc
::
IO
(
Maybe
PackageDescription
),
-- ^Read the description file
preConf
::
IO
(
Maybe
PackageDescription
),
preConf
::
ConfigFlags
->
IO
(
Maybe
PackageDescription
),
postConf
::
IO
ExitCode
,
preBuild
::
IO
(
Maybe
PackageDescription
),
...
...
@@ -110,16 +110,18 @@ data UserHooks = UserHooks
preClean
::
IO
(
Maybe
PackageDescription
),
postClean
::
IO
ExitCode
,
preCopy
::
IO
(
Maybe
PackageDescription
),
preCopy
::
(
Maybe
FilePath
)
-- Copy Location
->
IO
(
Maybe
PackageDescription
),
postCopy
::
IO
ExitCode
,
preInst
::
IO
(
Maybe
PackageDescription
),
preInst
::
Bool
->
IO
(
Maybe
PackageDescription
),
postInst
::
IO
ExitCode
,
-- ^guaranteed to be run on target
preSDist
::
IO
(
Maybe
PackageDescription
),
postSDist
::
IO
ExitCode
,
preReg
::
IO
(
Maybe
PackageDescription
),
preReg
::
Bool
-- Install in the user's database?
->
IO
(
Maybe
PackageDescription
),
postReg
::
IO
ExitCode
,
preUnreg
::
IO
(
Maybe
PackageDescription
),
...
...
@@ -178,13 +180,19 @@ defaultMainWorker pkg_descr_in action args hooks
case
maybeDesc
of
Nothing
->
return
pkg_descr_in
Just
x
->
return
x
let
hookOrInArgs
f
i
=
case
hooks
of
Nothing
->
return
pkg_descr_in
Just
h
->
do
maybeDesc
<-
(
f
h
)
$
i
case
maybeDesc
of
Nothing
->
return
pkg_descr_in
Just
x
->
return
x
let
postHook
f
=
case
hooks
of
Nothing
->
return
ExitSuccess
Just
h
->
f
h
case
action
of
ConfigCmd
flags
->
do
(
flags
,
_
,
args
)
<-
parseConfigureArgs
flags
args
[]
pkg_descr
<-
hookOrIn
put
preConf
pkg_descr
<-
hookOrIn
Args
preConf
flags
no_extra_flags
args
localbuildinfo
<-
configure
pkg_descr
flags
writePersistBuildConfig
localbuildinfo
...
...
@@ -211,7 +219,7 @@ defaultMainWorker pkg_descr_in action args hooks
CopyCmd
mprefix
->
do
(
mprefix
,
_
,
args
)
<-
parseCopyArgs
mprefix
args
[]
pkg_descr
<-
hookOrIn
put
preCopy
pkg_descr
<-
hookOrIn
Args
preCopy
mprefix
no_extra_flags
args
localbuildinfo
<-
getPersistBuildConfig
install
buildPref
pkg_descr
localbuildinfo
mprefix
...
...
@@ -219,7 +227,7 @@ defaultMainWorker pkg_descr_in action args hooks
InstallCmd
mprefix
uInst
->
do
((
mprefix
,
uInst
),
_
,
args
)
<-
parseInstallArgs
(
mprefix
,
uInst
)
args
[]
pkg_descr
<-
hookOrIn
put
preInst
pkg_descr
<-
hookOrIn
Args
preInst
uInst
no_extra_flags
args
localbuildinfo
<-
getPersistBuildConfig
-- FIX (HUGS): fix 'die' checks commands below.
...
...
@@ -239,7 +247,7 @@ defaultMainWorker pkg_descr_in action args hooks
RegisterCmd
uInst
->
do
(
uInst
,
_
,
args
)
<-
parseRegisterArgs
uInst
args
[]
pkg_descr
<-
hookOrIn
put
preReg
pkg_descr
<-
hookOrIn
Args
preReg
uInst
no_extra_flags
args
localbuildinfo
<-
getPersistBuildConfig
when
(
hasLibs
pkg_descr
)
(
register
pkg_descr
localbuildinfo
uInst
)
...
...
@@ -268,19 +276,19 @@ emptyUserHooks
{
runTests
=
\
_
->
res
,
readDesc
=
rn
,
preConf
=
rn
,
preConf
=
\
_
->
rn
,
postConf
=
res
,
preBuild
=
rn
,
postBuild
=
res
,
preClean
=
rn
,
postClean
=
res
,
preCopy
=
rn
,
preCopy
=
\
_
->
rn
,
postCopy
=
res
,
preInst
=
rn
,
preInst
=
\
_
->
rn
,
postInst
=
res
,
preSDist
=
rn
,
postSDist
=
res
,
preReg
=
rn
,
preReg
=
\
_
->
rn
,
postReg
=
res
,
preUnreg
=
rn
,
postUnreg
=
res
...
...
@@ -292,13 +300,13 @@ defaultUserHooks :: UserHooks
defaultUserHooks
=
emptyUserHooks
{
preConf
=
return
Nothing
,
preConf
=
\
_
->
return
Nothing
,
preBuild
=
readHook
,
preClean
=
readHook
,
preCopy
=
readHook
,
preInst
=
readHook
,
preCopy
=
\
_
->
readHook
,
preInst
=
\
_
->
readHook
,
preSDist
=
readHook
,
preReg
=
readHook
,
preReg
=
\
_
->
readHook
,
preUnreg
=
readHook
}
where
readHook
=
readPackageDescription
hookedPackageDesc
>>=
(
return
.
Just
)
...
...
This diff is collapsed.
Click to expand it.
Distribution/Simple/Install.hs
+
1
−
1
View file @
44eb1e01
...
...
@@ -77,7 +77,7 @@ import HUnit (Test)
-- |FIX: nhc isn't implemented yet.
install
::
FilePath
-- ^build location
->
PackageDescription
->
LocalBuildInfo
->
Maybe
FilePath
-- ^install-prefix
->
Maybe
FilePath
-- ^install-prefix
FIX: Is this now unused?
->
IO
()
install
buildPref
pkg_descr
lbi
install_prefixM
=
do
let
libPref
=
mkLibDir
pkg_descr
lbi
install_prefixM
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment