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
ba02fa63
Commit
ba02fa63
authored
10 years ago
by
Jake Wheat
Browse files
Options
Downloads
Patches
Plain Diff
alter cabal-install bootstrap.sh to not download the extra package
tarballs if these tarballs are already present.
parent
b22b9f96
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cabal-install/bootstrap.sh
+13
-3
13 additions, 3 deletions
cabal-install/bootstrap.sh
with
13 additions
and
3 deletions
cabal-install/bootstrap.sh
+
13
−
3
View file @
ba02fa63
...
...
@@ -176,7 +176,12 @@ info_pkg () {
if
need_pkg
${
PKG
}
${
VER_MATCH
}
then
echo
"
${
PKG
}
-
${
VER
}
will be downloaded and installed."
if
[
-f
"
${
PKG
}
-
${
VER
}
.tar.gz"
]
then
echo
"
${
PKG
}
-
${
VER
}
will be installed from local tarball."
else
echo
"
${
PKG
}
-
${
VER
}
will be downloaded and installed."
fi
else
echo
"
${
PKG
}
is already installed and the version is ok."
fi
...
...
@@ -253,8 +258,13 @@ do_pkg () {
if
need_pkg
${
PKG
}
${
VER_MATCH
}
then
echo
echo
"Downloading
${
PKG
}
-
${
VER
}
..."
fetch_pkg
${
PKG
}
${
VER
}
if
[
-f
"
${
PKG
}
-
${
VER
}
.tar.gz"
]
then
echo
"Using local tarball for
${
PKG
}
-
${
VER
}
"
else
echo
"Downloading
${
PKG
}
-
${
VER
}
..."
fetch_pkg
${
PKG
}
${
VER
}
fi
unpack_pkg
${
PKG
}
${
VER
}
cd
"
${
PKG
}
-
${
VER
}
"
install_pkg
${
PKG
}
${
VER
}
...
...
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