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
0655125f
Commit
0655125f
authored
20 years ago
by
Isaac Potoczny-Jones
Browse files
Options
Downloads
Patches
Plain Diff
fixed bug where executable sources arent included in sdist
parent
5e0bca9f
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/SrcDist.hs
+20
-12
20 additions, 12 deletions
Distribution/Simple/SrcDist.hs
TODO
+1
-0
1 addition, 0 deletions
TODO
with
21 additions
and
12 deletions
Distribution/Simple/SrcDist.hs
+
20
−
12
View file @
0655125f
...
...
@@ -50,9 +50,9 @@ module Distribution.Simple.SrcDist (
#
endif
)
where
import
Distribution.Package
(
PackageDescription
(
..
),
BuildInfo
(
..
),
showPackageId
)
import
Distribution.Package
(
PackageDescription
(
..
),
BuildInfo
(
..
),
buildInfo
,
showPackageId
)
import
Distribution.Simple.Configure
(
LocalBuildInfo
)
import
Distribution.Simple.Utils
(
setupMessage
,
moveSources
,
die
,
pathJoin
)
import
Distribution.Simple.Utils
(
setupMessage
,
moveSources
,
die
,
pathJoin
,
sequenceMap
)
import
Distribution.PreProcess
(
PPSuffixHandler
,
ppSuffixes
,
removePreprocessed
)
import
Control.Monad
(
when
)
...
...
@@ -74,22 +74,30 @@ sdist tmpDir targetPref pps pkg_descr _ = do
setupMessage
"Building source dist for"
pkg_descr
ex
<-
doesDirectoryExist
tmpDir
when
ex
(
die
$
"Source distribution already in place. please move: "
++
tmpDir
)
case
library
pkg_descr
of
Just
lib
->
let
srcDir
=
hsSourceDir
lib
tmpLoc1
=
pathJoin
[
tmpDir
,
nameVersion
pkg_descr
,
srcDir
]
in
do
moveSources
srcDir
tmpLoc1
(
modules
lib
)
(
ppSuffixes
pps
)
removePreprocessed
tmpLoc1
(
modules
lib
)
(
ppSuffixes
pps
)
Nothing
->
return
()
-- FIX: move executables!
-- removePreprocessed tmpLoc1 (allModules pkg_descr) (ppSuffixes pps) (for execs)
let
tmpLoc2
=
pathJoin
[
tmpDir
,
nameVersion
pkg_descr
]
moveSources
""
tmpLoc2
[
"Setup"
]
[
"lhs"
,
"hs"
]
let
targetDir
=
pathJoin
[
tmpDir
,
nameVersion
pkg_descr
]
-- maybe move the library files into place
maybe
(
return
()
)
(
prepareDir
targetDir
pps
)
(
library
pkg_descr
)
-- move the executables into place
sequenceMap
(
prepareDir
targetDir
pps
)
(
map
buildInfo
(
executables
pkg_descr
))
-- setup isn't listed in the description file.
moveSources
""
targetDir
[
"Setup"
]
[
"lhs"
,
"hs"
]
system
$
"tar --directory="
++
tmpDir
++
" -zcf "
++
(
pathJoin
[
targetPref
,
tarBallName
pkg_descr
])
++
" "
++
(
nameVersion
pkg_descr
)
system
$
"rm -rf "
++
tmpDir
putStrLn
"Source tarball created."
-- |Move the sources into place based on buildInfo
prepareDir
::
FilePath
-- ^TargetPrefix
->
[
PPSuffixHandler
]
-- ^ extra preprocessors (includes suffixes)
->
BuildInfo
->
IO
()
prepareDir
inPref
pps
BuildInfo
{
hsSourceDir
=
srcDir
,
modules
=
mods
}
=
do
let
pref
=
pathJoin
[
inPref
,
srcDir
]
let
suff
=
ppSuffixes
pps
moveSources
srcDir
pref
mods
suff
removePreprocessed
pref
mods
suff
------------------------------------------------------------
-- |The file name of the tarball
...
...
This diff is collapsed.
Click to expand it.
TODO
+
1
−
0
View file @
0655125f
...
...
@@ -16,6 +16,7 @@
- if there's a flag, --include-preprocessed-sources (or something
better) run the preprocessing phase and include both the
unpreprocessed and the preprocessed sources in the source tarball?
- why does it need configure first?
** clarify description filename issues
- allow foo.hsproj?
...
...
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