diff --git a/README.md b/README.md index e3678356d253b69711d5a6f7552a3e9e94ff9c54..afaf7388d59d83035b40f36bf647ca13c5f112b5 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,8 @@ groups from around the world. We'd like to thank them all, and invite you to join! [1]: http://www.haskell.org/ghc/ "www.haskell.org/ghc/" - [2]: http://ghc.haskell.org/trac/ghc "ghc.haskell.org/trac/ghc" + [2]: https://gitlab.haskell.org/ghc/ghc/issues + "gitlab.haskell.org/ghc/ghc/issues" [3]: https://gitlab.haskell.org/ghc/ghc/wikis/building "https://gitlab.haskell.org/ghc/ghc/wikis/building" [4]: http://www.haskell.org/happy/ "www.haskell.org/happy/" diff --git a/compiler/deSugar/Check.hs b/compiler/deSugar/Check.hs index 57ddfc0d89306fdc68a11bc4f02dd0deecc81fb3..0c653da2b22b24854fe16e9bd56938b9e7f295fa 100644 --- a/compiler/deSugar/Check.hs +++ b/compiler/deSugar/Check.hs @@ -2332,7 +2332,7 @@ term constraints (respectively) as we go deeper. The type constraints we propagate inwards are collected by `collectEvVarsPats' in HsPat.hs. This handles bug #4139 ( see example - https://ghc.haskell.org/trac/ghc/attachment/ticket/4139/GADTbug.hs ) + https://gitlab.haskell.org/ghc/ghc/snippets/672 ) where this is needed. For term equalities we do less, we just generate equalities for HsCase. For diff --git a/libraries/base/base.cabal b/libraries/base/base.cabal index 57ac829b666af4112e828af49e6f148770cd0386..0b2c9a5b1792be36edabf111fb46a2d0c4c0652f 100644 --- a/libraries/base/base.cabal +++ b/libraries/base/base.cabal @@ -6,7 +6,7 @@ version: 4.13.0.0 license: BSD-3-Clause license-file: LICENSE maintainer: libraries@haskell.org -bug-reports: http://ghc.haskell.org/trac/ghc/newticket?component=libraries/base +bug-reports: https://gitlab.haskell.org/ghc/ghc/issues/new synopsis: Basic libraries category: Prelude build-type: Configure diff --git a/libraries/ghc-boot-th/ghc-boot-th.cabal.in b/libraries/ghc-boot-th/ghc-boot-th.cabal.in index 657055d93d2eb951a786126f915eb998dd9fa54c..78d7502945d44edfe68c3d50dfca467d7fd49a54 100644 --- a/libraries/ghc-boot-th/ghc-boot-th.cabal.in +++ b/libraries/ghc-boot-th/ghc-boot-th.cabal.in @@ -8,7 +8,7 @@ license: BSD3 license-file: LICENSE category: GHC maintainer: ghc-devs@haskell.org -bug-reports: https://ghc.haskell.org/trac/ghc/newticket +bug-reports: https://gitlab.haskell.org/ghc/ghc/issues/new synopsis: Shared functionality between GHC and the @template-haskell@ library description: This library contains various bits shared between the @ghc@ and diff --git a/libraries/ghc-boot/ghc-boot.cabal.in b/libraries/ghc-boot/ghc-boot.cabal.in index 863987beabbd3a293fda7f051da4408ce70e09f2..12701d0bd82e44ea103cc5c96266aa20f915b48c 100644 --- a/libraries/ghc-boot/ghc-boot.cabal.in +++ b/libraries/ghc-boot/ghc-boot.cabal.in @@ -8,7 +8,7 @@ license: BSD3 license-file: LICENSE category: GHC maintainer: ghc-devs@haskell.org -bug-reports: https://ghc.haskell.org/trac/ghc/newticket +bug-reports: https://gitlab.haskell.org/ghc/ghc/issues/new synopsis: Shared functionality between GHC and its boot libraries description: This library is shared between GHC, ghc-pkg, and other boot libraries. diff --git a/libraries/ghc-compact/ghc-compact.cabal b/libraries/ghc-compact/ghc-compact.cabal index d7572ff11aafa5339b9777b222945a38a8cc243b..5f231898fb776757fc096193d1eac2d86aa287c3 100644 --- a/libraries/ghc-compact/ghc-compact.cabal +++ b/libraries/ghc-compact/ghc-compact.cabal @@ -4,7 +4,7 @@ version: 0.1.0.0 license: BSD3 license-file: LICENSE maintainer: libraries@haskell.org -bug-reports: http://ghc.haskell.org/trac/ghc/newticket?component=libraries/ghc-compact +bug-reports: https://gitlab.haskell.org/ghc/ghc/issues/new synopsis: In memory storage of deeply evaluated data structure category: Data description: diff --git a/libraries/ghc-heap/GHC/Exts/Heap/Closures.hs b/libraries/ghc-heap/GHC/Exts/Heap/Closures.hs index 8c4ff256a9f3d31cf29b2c8bc16b2314d2841455..38fef8394066bcc8db712d2cf535205550d4a60e 100644 --- a/libraries/ghc-heap/GHC/Exts/Heap/Closures.hs +++ b/libraries/ghc-heap/GHC/Exts/Heap/Closures.hs @@ -100,7 +100,7 @@ areBoxesEqual (Box a) (Box b) = case reallyUnsafePtrEqualityUpToTag# a b of type Closure = GenClosure Box -- | This is the representation of a Haskell value on the heap. It reflects --- +-- -- -- The data type is parametrized by the type to store references in. Usually -- this is a 'Box' with the type synonym 'Closure'. diff --git a/libraries/ghc-heap/GHC/Exts/Heap/InfoTable/Types.hsc b/libraries/ghc-heap/GHC/Exts/Heap/InfoTable/Types.hsc index 9c7c392adc0ef9d3f3186ba17207489c3dd791d6..783744f26a60f911bc62090b6e7a3cf0f29fadbd 100644 --- a/libraries/ghc-heap/GHC/Exts/Heap/InfoTable/Types.hsc +++ b/libraries/ghc-heap/GHC/Exts/Heap/InfoTable/Types.hsc @@ -28,7 +28,7 @@ type HalfWord = Word16 type EntryFunPtr = FunPtr (Ptr () -> IO (Ptr ())) -- | This is a somewhat faithful representation of an info table. See --- +-- -- for more details on this data structure. data StgInfoTable = StgInfoTable { entry :: Maybe EntryFunPtr, -- Just <=> not ghciTablesNextToCode diff --git a/libraries/ghc-heap/ghc-heap.cabal.in b/libraries/ghc-heap/ghc-heap.cabal.in index 386c98422265fac9409ca3eceacd3eb1399ff546..134db1249e7821928763978f352f11b7719ef8b9 100644 --- a/libraries/ghc-heap/ghc-heap.cabal.in +++ b/libraries/ghc-heap/ghc-heap.cabal.in @@ -4,7 +4,7 @@ version: @ProjectVersionMunged@ license: BSD-3-Clause license-file: LICENSE maintainer: libraries@haskell.org -bug-reports: http://ghc.haskell.org/trac/ghc/newticket +bug-reports: https://gitlab.haskell.org/ghc/ghc/issues/new synopsis: Functions for walking GHC's heap category: GHC description: diff --git a/libraries/ghc-prim/ghc-prim.cabal b/libraries/ghc-prim/ghc-prim.cabal index a95f1ecaa87b752668fac4b5c1fb76a67e072b69..b97d305e1289f47cae043677ac26e0cc9da809d4 100644 --- a/libraries/ghc-prim/ghc-prim.cabal +++ b/libraries/ghc-prim/ghc-prim.cabal @@ -6,7 +6,7 @@ license: BSD-3-Clause license-file: LICENSE category: GHC maintainer: libraries@haskell.org -bug-reports: http://ghc.haskell.org/trac/ghc/newticket?component=libraries%20%28other%29&keywords=ghc-prim +bug-reports: https://gitlab.haskell.org/ghc/ghc/issues/new synopsis: GHC primitives build-type: Custom description: diff --git a/libraries/template-haskell/template-haskell.cabal.in b/libraries/template-haskell/template-haskell.cabal.in index d689af1f758a115252e0c4fb55f1cd9f7e2cc2d6..a7128be88448bc09fdb9e3f23e7543d399908078 100644 --- a/libraries/template-haskell/template-haskell.cabal.in +++ b/libraries/template-haskell/template-haskell.cabal.in @@ -9,7 +9,7 @@ license: BSD3 license-file: LICENSE category: Template Haskell maintainer: libraries@haskell.org -bug-reports: http://ghc.haskell.org/trac/ghc/newticket?component=Template%20Haskell +bug-reports: https://gitlab.haskell.org/ghc/ghc/issues/new synopsis: Support library for Template Haskell build-type: Simple Cabal-Version: >= 1.10