Skip to content

Commit 23ee91a

Browse files
authored
Merge pull request #6940 from adamse/update-ghc-trac-links
update ghc trac links to point to ghc gitlab
2 parents 5274d6a + 517ffc5 commit 23ee91a

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed

Cabal/Distribution/Simple/GHC.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ configure verbosity hcPath hcPkgPath conf0 = do
180180

181181
ghcInfo <- Internal.getGhcInfo verbosity implInfo ghcProg
182182
let ghcInfoMap = Map.fromList ghcInfo
183-
extensions = -- workaround https://ghc.haskell.org/ticket/11214
183+
extensions = -- workaround https://gitlab.haskell.org/ghc/ghc/-/issues/11214
184184
filterExt JavaScriptFFI $
185185
-- see 'filterExtTH' comment below
186186
filterExtTH $ extensions0
@@ -428,7 +428,7 @@ checkPackageDbStackPre76 verbosity rest
428428
die' verbosity $
429429
"With current ghc versions the global package db is always used "
430430
++ "and must be listed first. This ghc limitation is lifted in GHC 7.6,"
431-
++ "see http://ghc.haskell.org/trac/ghc/ticket/5977"
431+
++ "see https://gitlab.haskell.org/ghc/ghc/-/issues/5977"
432432
checkPackageDbStackPre76 verbosity _ =
433433
die' verbosity $ "If the global package db is specified, it must be "
434434
++ "specified first and cannot be specified multiple times"

Cabal/Distribution/Simple/GHCJS.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ checkPackageDbStack verbosity rest
317317
| GlobalPackageDB `notElem` rest =
318318
die' verbosity $ "With current ghc versions the global package db is always used "
319319
++ "and must be listed first. This ghc limitation may be lifted in "
320-
++ "future, see http://ghc.haskell.org/trac/ghc/ticket/5977"
320+
++ "future, see https://gitlab.haskell.org/ghc/ghc/-/issues/5977"
321321
checkPackageDbStack verbosity _ =
322322
die' verbosity $ "If the global package db is specified, it must be "
323323
++ "specified first and cannot be specified multiple times"

Cabal/Distribution/Simple/Program/Builtin.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ ghcProgram :: Program
104104
ghcProgram = (simpleProgram "ghc") {
105105
programFindVersion = findProgramVersion "--numeric-version" id,
106106

107-
-- Workaround for https://ghc.haskell.org/trac/ghc/ticket/8825
107+
-- Workaround for https://gitlab.haskell.org/ghc/ghc/-/issues/8825
108108
-- (spurious warning on non-english locales)
109109
programPostConf = \_verbosity ghcProg ->
110110
do let ghcProg' = ghcProg {

Cabal/Distribution/Simple/Program/GHC.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ packageDbArgsConf dbstack = case dbstack of
812812
++ show dbstack
813813

814814
-- | GHC >= 7.6 uses the '-package-db' flag. See
815-
-- https://ghc.haskell.org/trac/ghc/ticket/5977.
815+
-- https://gitlab.haskell.org/ghc/ghc/-/issues/5977.
816816
packageDbArgsDb :: PackageDBStack -> [String]
817817
-- special cases to make arguments prettier in common scenarios
818818
packageDbArgsDb dbstack = case dbstack of

Cabal/Distribution/Types/CondTree.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ data CondBranch v c a = CondBranch
8080

8181
-- This instance is written by hand because GHC 8.0.1/8.0.2 infinite
8282
-- loops when trying to derive it with optimizations. See
83-
-- https://ghc.haskell.org/trac/ghc/ticket/13056
83+
-- https://gitlab.haskell.org/ghc/ghc/-/issues/13056
8484
instance Foldable (CondBranch v c) where
8585
foldMap f (CondBranch _ c Nothing) = foldMap f c
8686
foldMap f (CondBranch _ c (Just a)) = foldMap f c `mappend` foldMap f a

Cabal/Distribution/Types/InstalledPackageInfo/FieldGrammar.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import qualified Distribution.Types.PackageId.Lens as L
4444
-- 34886 KnownBranch
4545
-- 8197 wild1_ixF0
4646
--
47-
-- https://ghc.haskell.org/trac/ghc/ticket/13253 might be the cause.
47+
-- https://gitlab.haskell.org/ghc/ghc/-/issues/13253 might be the cause.
4848
--
4949
-- The workaround is to prevent GHC optimising the code:
5050
infixl 4 <@>

Cabal/doc/cabal-project.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1341,7 +1341,7 @@ Advanced global configuration options
13411341
Since Cabal 3.0, defaults to ``never``. Before that, defaulted to
13421342
creating them only when compiling with GHC 8.4.4 and older (GHC
13431343
8.4.4 `is the first version
1344-
<https://ghc.haskell.org/trac/ghc/ticket/13753>`_ that supports
1344+
<https://gitlab.haskell.org/ghc/ghc/-/issues/13753>`_ that supports
13451345
the ``-package-env -`` option that allows ignoring the package
13461346
environment files).
13471347

Cabal/doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
extlinks = {
2727
'issue': ('https://github.com/haskell/cabal/issues/%s', '#'),
2828

29-
'ghc-wiki': ('http://ghc.haskell.org/trac/ghc/wiki/%s', ''),
30-
'ghc-ticket': ('http://ghc.haskell.org/trac/ghc/ticket/%s', 'GHC #'),
29+
'ghc-wiki': ('https://gitlab.haskell.org/ghc/ghc/-/wikis/%s', ''),
30+
'ghc-ticket': ('https://gitlab.haskell.org/ghc/ghc/-/issues/%s', 'GHC #'),
3131

3232
'hackage-pkg': ('http://hackage.haskell.org/package/%s', ''),
3333
}

Cabal/doc/hcar/Cabal-201611.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ \subsubsection*{Recent Progress}
2222
\href{https://mail.haskell.org/pipermail/cabal-devel/2016-December/010384.html}{new
2323
point releases} of Cabal/\texttt{cabal-install} from the 1.24
2424
branch. Among other things, Cabal 1.24.2.0 includes a
25-
\href{https://ghc.haskell.org/trac/ghc/ticket/12479}{fix} necessary to
25+
\href{https://gitlab.haskell.org/ghc/ghc/-/issues/12479}{fix} necessary to
2626
make soon-to-be-released GHC 8.0.2 work on macOS Sierra.
2727

2828
Almost 1500 commits were made to the \texttt{master} branch by

Cabal/doc/references.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323

2424
.. _ABNF: https://tools.ietf.org/html/rfc5234
2525

26-
.. _Backpack: https://ghc.haskell.org/trac/ghc/wiki/Backpack
26+
.. _Backpack: https://gitlab.haskell.org/ghc/ghc/-/wikis/backpack

0 commit comments

Comments
 (0)