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
eda3dd75
Commit
eda3dd75
authored
8 years ago
by
Mikhail Glushenkov
Browse files
Options
Downloads
Patches
Plain Diff
80-col violations.
parent
4571f428
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/Distribution/Client/Upload.hs
+13
-8
13 additions, 8 deletions
cabal-install/Distribution/Client/Upload.hs
with
13 additions
and
8 deletions
cabal-install/Distribution/Client/Upload.hs
+
13
−
8
View file @
eda3dd75
...
...
@@ -60,7 +60,8 @@ upload verbosity repoCtxt mUsername mPassword candidate paths = do
else
"upload"
}
packageURI
pkgid
=
targetRepoURI
{
uriPath
=
rootIfEmpty
(
uriPath
targetRepoURI
)
FilePath
.
Posix
.</>
concat
uriPath
=
rootIfEmpty
(
uriPath
targetRepoURI
)
FilePath
.
Posix
.</>
concat
[
"package/"
,
pkgid
,
if
candidate
then
"/candidate"
else
""
]
...
...
@@ -71,9 +72,10 @@ upload verbosity repoCtxt mUsername mPassword candidate paths = do
forM_
paths
$
\
path
->
do
notice
verbosity
$
"Uploading "
++
path
++
"... "
case
fmap
takeFileName
(
stripExtensions
[
"tar"
,
"gz"
]
path
)
of
Just
pkgid
->
handlePackage
transport
verbosity
uploadURI
(
packageURI
pkgid
)
auth
candidate
path
-- This case shouldn't really happen, since we check in Main that we only pass tar.gz files
-- to upload.
Just
pkgid
->
handlePackage
transport
verbosity
uploadURI
(
packageURI
pkgid
)
auth
candidate
path
-- This case shouldn't really happen, since we check in Main that we
-- only pass tar.gz files to upload.
Nothing
->
die
$
"Not a tar.gz file: "
++
path
uploadDoc
::
Verbosity
->
RepoContext
...
...
@@ -89,7 +91,8 @@ uploadDoc verbosity repoCtxt mUsername mPassword candidate path = do
let
targetRepoURI
=
remoteRepoURI
targetRepo
rootIfEmpty
x
=
if
null
x
then
"/"
else
x
uploadURI
=
targetRepoURI
{
uriPath
=
rootIfEmpty
(
uriPath
targetRepoURI
)
FilePath
.
Posix
.</>
concat
uriPath
=
rootIfEmpty
(
uriPath
targetRepoURI
)
FilePath
.
Posix
.</>
concat
[
"package/"
,
pkgid
,
if
candidate
then
"/candidate"
else
""
,
"/docs"
...
...
@@ -188,9 +191,11 @@ handlePackage transport verbosity uri packageUri auth candidate path =
where
okMessage
|
candidate
=
"Package successfully uploaded as candidate. You can now preview the
\
\
result at "
++
show
packageUri
++
". To publish the candidate, use cabal upload --publish."
|
otherwise
=
"Package successfully published. You can now view it at "
++
show
packageUri
++
"."
"Package successfully uploaded as candidate. "
++
"You can now preview the result at '"
++
show
packageUri
++
"'. To publish the candidate, use 'cabal upload --publish'."
|
otherwise
=
"Package successfully published. You can now view it at '"
++
show
packageUri
++
"'."
formatWarnings
::
String
->
String
formatWarnings
x
=
"Warnings:
\n
"
++
(
unlines
.
map
(
"- "
++
)
.
lines
)
x
...
...
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