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
f0afcfa1
Commit
f0afcfa1
authored
20 years ago
by
Isaac Potoczny-Jones
Browse files
Options
Downloads
Patches
Plain Diff
cleaned up warnings
parent
15f4db9f
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/PackageDescription.hs
+9
-10
9 additions, 10 deletions
Distribution/PackageDescription.hs
TODO
+2
-0
2 additions, 0 deletions
TODO
with
11 additions
and
10 deletions
Distribution/PackageDescription.hs
+
9
−
10
View file @
f0afcfa1
...
...
@@ -211,8 +211,6 @@ data Executable = Executable {
}
deriving
(
Show
,
Read
,
Eq
)
data
LibOrExe
=
Lib
String
|
Exe
String
emptyExecutable
::
Executable
emptyExecutable
=
Executable
{
exeName
=
""
,
...
...
@@ -223,6 +221,7 @@ emptyExecutable = Executable {
type
HookedBuildInfo
=
(
Maybe
BuildInfo
,
[(
String
,
BuildInfo
)])
emptyHookedBuildInfo
::
HookedBuildInfo
emptyHookedBuildInfo
=
(
Nothing
,
[]
)
-- ------------------------------------------------------------
...
...
@@ -259,13 +258,13 @@ updatePackageDescription (mb_lib_bi, exe_bi) p
updateLibrary
(
Just
bi
)
Nothing
=
Just
emptyLibrary
{
libBuildInfo
=
bi
}
updateExecutables
::
[(
String
,
BuildInfo
)]
->
[
Executable
]
->
[
Executable
]
updateExecutables
exe_bi
executables
=
foldr
updateExecutable
executables
exe_bi
updateExecutables
exe_bi
'
executables
'
=
foldr
updateExecutable
executables
'
exe_bi
'
updateExecutable
::
(
String
,
BuildInfo
)
->
[
Executable
]
->
[
Executable
]
updateExecutable
exe_bi
[]
=
[]
updateExecutable
exe_bi
@
(
name
,
bi
)
(
exe
:
exes
)
updateExecutable
_
[]
=
[]
updateExecutable
exe_bi
'
@
(
name
,
bi
)
(
exe
:
exes
)
|
exeName
exe
==
name
=
exe
{
buildInfo
=
unionBuildInfo
bi
(
buildInfo
exe
)}
:
exes
|
otherwise
=
updateExecutable
exe_bi
exes
|
otherwise
=
updateExecutable
exe_bi
'
exes
unionBuildInfo
::
BuildInfo
->
BuildInfo
->
BuildInfo
unionBuildInfo
b1
b2
...
...
@@ -478,13 +477,13 @@ parseHookedBuildInfo inp = do
return
(
lib
,
biExes
)
where
parseLib
::
Stanza
->
ParseResult
(
Maybe
BuildInfo
)
parseLib
((
_
,
f
ieldName
,
mName
)
:
bi
)
|
map
toLower
f
ieldName
==
"name"
=
do
bi'
<-
parseBI
bi
;
return
$
Just
bi'
parseLib
((
_
,
inF
ieldName
,
_
mName
)
:
bi
)
-- FIX: should we check that mName == library's name?
|
map
toLower
inF
ieldName
==
"name"
=
do
bi'
<-
parseBI
bi
;
return
$
Just
bi'
|
otherwise
=
return
Nothing
parseLib
[]
=
return
Nothing
parseExe
::
Stanza
->
ParseResult
(
String
,
BuildInfo
)
parseExe
((
lineNo
,
f
ieldName
,
mName
)
:
bi
)
|
map
toLower
f
ieldName
==
"executable"
parseExe
((
lineNo
,
inF
ieldName
,
mName
)
:
bi
)
|
map
toLower
inF
ieldName
==
"executable"
=
do
bis
<-
parseBI
bi
return
(
mName
,
bis
)
|
otherwise
=
myError
lineNo
"expecting 'executable' at top of stanza"
...
...
This diff is collapsed.
Click to expand it.
TODO
+
2
−
0
View file @
f0afcfa1
* misc
** Add package sanity checker?
** make debian watchfile
** find a real test case that uses preprocessors
** unregistering the package, etc
...
...
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