From 79dc766707dc1f7053bae81cc0865a15d2c56fcd241f3491234548c80a3bea52 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 10 Nov 2023 14:07:20 +0000 Subject: [PATCH 1/4] osc copypac from project:devel:languages:haskell:ghc-9.6.x package:ghc-random revision:4, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-random?expand=0&rev=67 --- random.cabal | 444 +++++++++++++++++++++++++-------------------------- 1 file changed, 222 insertions(+), 222 deletions(-) diff --git a/random.cabal b/random.cabal index cca8997..c23ca6e 100644 --- a/random.cabal +++ b/random.cabal @@ -1,222 +1,222 @@ -cabal-version: >=1.10 -name: random -version: 1.2.1.1 -x-revision: 1 -license: BSD3 -license-file: LICENSE -maintainer: core-libraries-committee@haskell.org -bug-reports: https://github.com/haskell/random/issues -synopsis: Pseudo-random number generation -description: - This package provides basic pseudo-random number generation, including the - ability to split random number generators. - . - == "System.Random": pure pseudo-random number interface - . - In pure code, use 'System.Random.uniform' and 'System.Random.uniformR' from - "System.Random" to generate pseudo-random numbers with a pure pseudo-random - number generator like 'System.Random.StdGen'. - . - As an example, here is how you can simulate rolls of a six-sided die using - 'System.Random.uniformR': - . - >>> let roll = uniformR (1, 6) :: RandomGen g => g -> (Word, g) - >>> let rolls = unfoldr (Just . roll) :: RandomGen g => g -> [Word] - >>> let pureGen = mkStdGen 42 - >>> take 10 (rolls pureGen) :: [Word] - [1,1,3,2,4,5,3,4,6,2] - . - See "System.Random" for more details. - . - == "System.Random.Stateful": monadic pseudo-random number interface - . - In monadic code, use 'System.Random.Stateful.uniformM' and - 'System.Random.Stateful.uniformRM' from "System.Random.Stateful" to generate - pseudo-random numbers with a monadic pseudo-random number generator, or - using a monadic adapter. - . - As an example, here is how you can simulate rolls of a six-sided die using - 'System.Random.Stateful.uniformRM': - . - >>> let rollM = uniformRM (1, 6) :: StatefulGen g m => g -> m Word - >>> let pureGen = mkStdGen 42 - >>> runStateGen_ pureGen (replicateM 10 . rollM) :: [Word] - [1,1,3,2,4,5,3,4,6,2] - . - The monadic adapter 'System.Random.Stateful.runStateGen_' is used here to lift - the pure pseudo-random number generator @pureGen@ into the - 'System.Random.Stateful.StatefulGen' context. - . - The monadic interface can also be used with existing monadic pseudo-random - number generators. In this example, we use the one provided in the - package: - . - >>> import System.Random.MWC as MWC - >>> let rollM = uniformRM (1, 6) :: StatefulGen g m => g -> m Word - >>> monadicGen <- MWC.create - >>> replicateM 10 (rollM monadicGen) :: IO [Word] - [2,3,6,6,4,4,3,1,5,4] - . - See "System.Random.Stateful" for more details. - -category: System -build-type: Simple -extra-source-files: - README.md - CHANGELOG.md -tested-with: GHC == 7.10.2 - , GHC == 7.10.3 - , GHC == 8.0.2 - , GHC == 8.2.2 - , GHC == 8.4.3 - , GHC == 8.4.4 - , GHC == 8.6.3 - , GHC == 8.6.4 - , GHC == 8.6.5 - , GHC == 8.8.1 - , GHC == 8.8.2 - , GHC == 8.10.1 - -source-repository head - type: git - location: https://github.com/haskell/random.git - - -library - exposed-modules: - System.Random - System.Random.Internal - System.Random.Stateful - other-modules: - System.Random.GFinite - - hs-source-dirs: src - default-language: Haskell2010 - ghc-options: - -Wall - if impl(ghc >= 8.0) - ghc-options: - -Wincomplete-record-updates -Wincomplete-uni-patterns - - build-depends: - base >=4.8 && <5, - bytestring >=0.10.4 && <0.13, - deepseq >=1.1 && <2, - mtl >=2.2 && <2.4, - splitmix >=0.1 && <0.2 - if impl(ghc < 8.0) - build-depends: - transformers - -test-suite legacy-test - type: exitcode-stdio-1.0 - main-is: Legacy.hs - hs-source-dirs: test-legacy - other-modules: - T7936 - TestRandomIOs - TestRandomRs - Random1283 - RangeTest - - default-language: Haskell2010 - ghc-options: -with-rtsopts=-M8M - if impl(ghc >= 8.0) - ghc-options: - -Wno-deprecations - build-depends: - base, - containers >=0.5 && <0.7, - random - -test-suite doctests - type: exitcode-stdio-1.0 - main-is: doctests.hs - hs-source-dirs: test - default-language: Haskell2010 - build-depends: - base, - doctest >=0.15 && <0.21 - if impl(ghc >= 8.2) && impl(ghc < 8.10) - build-depends: - mwc-random >=0.13 && <0.16, - primitive >=0.6 && <0.8, - random, - stm, - unliftio >=0.2 && <0.3, - vector >= 0.10 && <0.14 - -test-suite spec - type: exitcode-stdio-1.0 - main-is: Spec.hs - hs-source-dirs: test - other-modules: - Spec.Range - Spec.Run - Spec.Stateful - - default-language: Haskell2010 - ghc-options: -Wall - build-depends: - base, - bytestring, - random, - smallcheck >=1.2 && <1.3, - stm, - tasty >=1.0 && <1.5, - tasty-smallcheck >=0.8 && <0.9, - tasty-hunit >=0.10 && <0.11, - transformers - --- Note. Fails when compiled with coverage: --- https://github.com/haskell/random/issues/107 -test-suite spec-inspection - type: exitcode-stdio-1.0 - main-is: Spec.hs - hs-source-dirs: test-inspection - build-depends: - - default-language: Haskell2010 - ghc-options: -Wall - build-depends: - base, - random, - tasty >=1.0 && <1.5 - if impl(ghc >= 8.0) - build-depends: - tasty-inspection-testing - other-modules: - Spec.Inspection - -benchmark legacy-bench - type: exitcode-stdio-1.0 - main-is: SimpleRNGBench.hs - hs-source-dirs: bench-legacy - other-modules: BinSearch - default-language: Haskell2010 - ghc-options: - -Wall -O2 -threaded -rtsopts -with-rtsopts=-N - if impl(ghc >= 8.0) - ghc-options: - -Wno-deprecations - - build-depends: - base, - random, - rdtsc, - split >=0.2 && <0.3, - time >=1.4 && <1.13 - -benchmark bench - type: exitcode-stdio-1.0 - main-is: Main.hs - hs-source-dirs: bench - default-language: Haskell2010 - ghc-options: -Wall -O2 - build-depends: - base, - mtl, - primitive >= 0.7.1, - random, - splitmix >=0.1 && <0.2, - tasty-bench +cabal-version: >=1.10 +name: random +version: 1.2.1.1 +x-revision: 1 +license: BSD3 +license-file: LICENSE +maintainer: core-libraries-committee@haskell.org +bug-reports: https://github.com/haskell/random/issues +synopsis: Pseudo-random number generation +description: + This package provides basic pseudo-random number generation, including the + ability to split random number generators. + . + == "System.Random": pure pseudo-random number interface + . + In pure code, use 'System.Random.uniform' and 'System.Random.uniformR' from + "System.Random" to generate pseudo-random numbers with a pure pseudo-random + number generator like 'System.Random.StdGen'. + . + As an example, here is how you can simulate rolls of a six-sided die using + 'System.Random.uniformR': + . + >>> let roll = uniformR (1, 6) :: RandomGen g => g -> (Word, g) + >>> let rolls = unfoldr (Just . roll) :: RandomGen g => g -> [Word] + >>> let pureGen = mkStdGen 42 + >>> take 10 (rolls pureGen) :: [Word] + [1,1,3,2,4,5,3,4,6,2] + . + See "System.Random" for more details. + . + == "System.Random.Stateful": monadic pseudo-random number interface + . + In monadic code, use 'System.Random.Stateful.uniformM' and + 'System.Random.Stateful.uniformRM' from "System.Random.Stateful" to generate + pseudo-random numbers with a monadic pseudo-random number generator, or + using a monadic adapter. + . + As an example, here is how you can simulate rolls of a six-sided die using + 'System.Random.Stateful.uniformRM': + . + >>> let rollM = uniformRM (1, 6) :: StatefulGen g m => g -> m Word + >>> let pureGen = mkStdGen 42 + >>> runStateGen_ pureGen (replicateM 10 . rollM) :: [Word] + [1,1,3,2,4,5,3,4,6,2] + . + The monadic adapter 'System.Random.Stateful.runStateGen_' is used here to lift + the pure pseudo-random number generator @pureGen@ into the + 'System.Random.Stateful.StatefulGen' context. + . + The monadic interface can also be used with existing monadic pseudo-random + number generators. In this example, we use the one provided in the + package: + . + >>> import System.Random.MWC as MWC + >>> let rollM = uniformRM (1, 6) :: StatefulGen g m => g -> m Word + >>> monadicGen <- MWC.create + >>> replicateM 10 (rollM monadicGen) :: IO [Word] + [2,3,6,6,4,4,3,1,5,4] + . + See "System.Random.Stateful" for more details. + +category: System +build-type: Simple +extra-source-files: + README.md + CHANGELOG.md +tested-with: GHC == 7.10.2 + , GHC == 7.10.3 + , GHC == 8.0.2 + , GHC == 8.2.2 + , GHC == 8.4.3 + , GHC == 8.4.4 + , GHC == 8.6.3 + , GHC == 8.6.4 + , GHC == 8.6.5 + , GHC == 8.8.1 + , GHC == 8.8.2 + , GHC == 8.10.1 + +source-repository head + type: git + location: https://github.com/haskell/random.git + + +library + exposed-modules: + System.Random + System.Random.Internal + System.Random.Stateful + other-modules: + System.Random.GFinite + + hs-source-dirs: src + default-language: Haskell2010 + ghc-options: + -Wall + if impl(ghc >= 8.0) + ghc-options: + -Wincomplete-record-updates -Wincomplete-uni-patterns + + build-depends: + base >=4.8 && <5, + bytestring >=0.10.4 && <0.13, + deepseq >=1.1 && <2, + mtl >=2.2 && <2.4, + splitmix >=0.1 && <0.2 + if impl(ghc < 8.0) + build-depends: + transformers + +test-suite legacy-test + type: exitcode-stdio-1.0 + main-is: Legacy.hs + hs-source-dirs: test-legacy + other-modules: + T7936 + TestRandomIOs + TestRandomRs + Random1283 + RangeTest + + default-language: Haskell2010 + ghc-options: -with-rtsopts=-M8M + if impl(ghc >= 8.0) + ghc-options: + -Wno-deprecations + build-depends: + base, + containers >=0.5 && <0.7, + random + +test-suite doctests + type: exitcode-stdio-1.0 + main-is: doctests.hs + hs-source-dirs: test + default-language: Haskell2010 + build-depends: + base, + doctest >=0.15 && <0.21 + if impl(ghc >= 8.2) && impl(ghc < 8.10) + build-depends: + mwc-random >=0.13 && <0.16, + primitive >=0.6 && <0.8, + random, + stm, + unliftio >=0.2 && <0.3, + vector >= 0.10 && <0.14 + +test-suite spec + type: exitcode-stdio-1.0 + main-is: Spec.hs + hs-source-dirs: test + other-modules: + Spec.Range + Spec.Run + Spec.Stateful + + default-language: Haskell2010 + ghc-options: -Wall + build-depends: + base, + bytestring, + random, + smallcheck >=1.2 && <1.3, + stm, + tasty >=1.0 && <1.5, + tasty-smallcheck >=0.8 && <0.9, + tasty-hunit >=0.10 && <0.11, + transformers + +-- Note. Fails when compiled with coverage: +-- https://github.com/haskell/random/issues/107 +test-suite spec-inspection + type: exitcode-stdio-1.0 + main-is: Spec.hs + hs-source-dirs: test-inspection + build-depends: + + default-language: Haskell2010 + ghc-options: -Wall + build-depends: + base, + random, + tasty >=1.0 && <1.5 + if impl(ghc >= 8.0) + build-depends: + tasty-inspection-testing + other-modules: + Spec.Inspection + +benchmark legacy-bench + type: exitcode-stdio-1.0 + main-is: SimpleRNGBench.hs + hs-source-dirs: bench-legacy + other-modules: BinSearch + default-language: Haskell2010 + ghc-options: + -Wall -O2 -threaded -rtsopts -with-rtsopts=-N + if impl(ghc >= 8.0) + ghc-options: + -Wno-deprecations + + build-depends: + base, + random, + rdtsc, + split >=0.2 && <0.3, + time >=1.4 && <1.13 + +benchmark bench + type: exitcode-stdio-1.0 + main-is: Main.hs + hs-source-dirs: bench + default-language: Haskell2010 + ghc-options: -Wall -O2 + build-depends: + base, + mtl, + primitive >= 0.7.1, + random, + splitmix >=0.1 && <0.2, + tasty-bench From c146c3d845a8abedf11849ce249484e4da2eb509552d8c2a53ae25eef61d78c2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 16 Nov 2023 16:59:36 +0000 Subject: [PATCH 2/4] osc copypac from project:devel:languages:haskell:ghc-9.6.x package:ghc-random revision:5, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-random?expand=0&rev=68 --- ghc-random.changes | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ghc-random.changes b/ghc-random.changes index 255ba7a..92e613c 100644 --- a/ghc-random.changes +++ b/ghc-random.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Nov 16 13:26:39 UTC 2023 - Peter Simons + +- Strip CRLF line endings from the bundled Cabal file. + ------------------------------------------------------------------- Sat Sep 30 20:57:11 UTC 2023 - Peter Simons From b32fa977bc36927145e772d0af6218a04207718a08667d0c7fe04db4d3ea7c25 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 22 Nov 2023 09:17:21 +0000 Subject: [PATCH 3/4] osc copypac from project:devel:languages:haskell:ghc-9.6.x package:ghc-random revision:6, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-random?expand=0&rev=69 --- ghc-random.changes | 5 - random.cabal | 444 ++++++++++++++++++++++----------------------- 2 files changed, 222 insertions(+), 227 deletions(-) diff --git a/ghc-random.changes b/ghc-random.changes index 92e613c..255ba7a 100644 --- a/ghc-random.changes +++ b/ghc-random.changes @@ -1,8 +1,3 @@ -------------------------------------------------------------------- -Thu Nov 16 13:26:39 UTC 2023 - Peter Simons - -- Strip CRLF line endings from the bundled Cabal file. - ------------------------------------------------------------------- Sat Sep 30 20:57:11 UTC 2023 - Peter Simons diff --git a/random.cabal b/random.cabal index c23ca6e..cca8997 100644 --- a/random.cabal +++ b/random.cabal @@ -1,222 +1,222 @@ -cabal-version: >=1.10 -name: random -version: 1.2.1.1 -x-revision: 1 -license: BSD3 -license-file: LICENSE -maintainer: core-libraries-committee@haskell.org -bug-reports: https://github.com/haskell/random/issues -synopsis: Pseudo-random number generation -description: - This package provides basic pseudo-random number generation, including the - ability to split random number generators. - . - == "System.Random": pure pseudo-random number interface - . - In pure code, use 'System.Random.uniform' and 'System.Random.uniformR' from - "System.Random" to generate pseudo-random numbers with a pure pseudo-random - number generator like 'System.Random.StdGen'. - . - As an example, here is how you can simulate rolls of a six-sided die using - 'System.Random.uniformR': - . - >>> let roll = uniformR (1, 6) :: RandomGen g => g -> (Word, g) - >>> let rolls = unfoldr (Just . roll) :: RandomGen g => g -> [Word] - >>> let pureGen = mkStdGen 42 - >>> take 10 (rolls pureGen) :: [Word] - [1,1,3,2,4,5,3,4,6,2] - . - See "System.Random" for more details. - . - == "System.Random.Stateful": monadic pseudo-random number interface - . - In monadic code, use 'System.Random.Stateful.uniformM' and - 'System.Random.Stateful.uniformRM' from "System.Random.Stateful" to generate - pseudo-random numbers with a monadic pseudo-random number generator, or - using a monadic adapter. - . - As an example, here is how you can simulate rolls of a six-sided die using - 'System.Random.Stateful.uniformRM': - . - >>> let rollM = uniformRM (1, 6) :: StatefulGen g m => g -> m Word - >>> let pureGen = mkStdGen 42 - >>> runStateGen_ pureGen (replicateM 10 . rollM) :: [Word] - [1,1,3,2,4,5,3,4,6,2] - . - The monadic adapter 'System.Random.Stateful.runStateGen_' is used here to lift - the pure pseudo-random number generator @pureGen@ into the - 'System.Random.Stateful.StatefulGen' context. - . - The monadic interface can also be used with existing monadic pseudo-random - number generators. In this example, we use the one provided in the - package: - . - >>> import System.Random.MWC as MWC - >>> let rollM = uniformRM (1, 6) :: StatefulGen g m => g -> m Word - >>> monadicGen <- MWC.create - >>> replicateM 10 (rollM monadicGen) :: IO [Word] - [2,3,6,6,4,4,3,1,5,4] - . - See "System.Random.Stateful" for more details. - -category: System -build-type: Simple -extra-source-files: - README.md - CHANGELOG.md -tested-with: GHC == 7.10.2 - , GHC == 7.10.3 - , GHC == 8.0.2 - , GHC == 8.2.2 - , GHC == 8.4.3 - , GHC == 8.4.4 - , GHC == 8.6.3 - , GHC == 8.6.4 - , GHC == 8.6.5 - , GHC == 8.8.1 - , GHC == 8.8.2 - , GHC == 8.10.1 - -source-repository head - type: git - location: https://github.com/haskell/random.git - - -library - exposed-modules: - System.Random - System.Random.Internal - System.Random.Stateful - other-modules: - System.Random.GFinite - - hs-source-dirs: src - default-language: Haskell2010 - ghc-options: - -Wall - if impl(ghc >= 8.0) - ghc-options: - -Wincomplete-record-updates -Wincomplete-uni-patterns - - build-depends: - base >=4.8 && <5, - bytestring >=0.10.4 && <0.13, - deepseq >=1.1 && <2, - mtl >=2.2 && <2.4, - splitmix >=0.1 && <0.2 - if impl(ghc < 8.0) - build-depends: - transformers - -test-suite legacy-test - type: exitcode-stdio-1.0 - main-is: Legacy.hs - hs-source-dirs: test-legacy - other-modules: - T7936 - TestRandomIOs - TestRandomRs - Random1283 - RangeTest - - default-language: Haskell2010 - ghc-options: -with-rtsopts=-M8M - if impl(ghc >= 8.0) - ghc-options: - -Wno-deprecations - build-depends: - base, - containers >=0.5 && <0.7, - random - -test-suite doctests - type: exitcode-stdio-1.0 - main-is: doctests.hs - hs-source-dirs: test - default-language: Haskell2010 - build-depends: - base, - doctest >=0.15 && <0.21 - if impl(ghc >= 8.2) && impl(ghc < 8.10) - build-depends: - mwc-random >=0.13 && <0.16, - primitive >=0.6 && <0.8, - random, - stm, - unliftio >=0.2 && <0.3, - vector >= 0.10 && <0.14 - -test-suite spec - type: exitcode-stdio-1.0 - main-is: Spec.hs - hs-source-dirs: test - other-modules: - Spec.Range - Spec.Run - Spec.Stateful - - default-language: Haskell2010 - ghc-options: -Wall - build-depends: - base, - bytestring, - random, - smallcheck >=1.2 && <1.3, - stm, - tasty >=1.0 && <1.5, - tasty-smallcheck >=0.8 && <0.9, - tasty-hunit >=0.10 && <0.11, - transformers - --- Note. Fails when compiled with coverage: --- https://github.com/haskell/random/issues/107 -test-suite spec-inspection - type: exitcode-stdio-1.0 - main-is: Spec.hs - hs-source-dirs: test-inspection - build-depends: - - default-language: Haskell2010 - ghc-options: -Wall - build-depends: - base, - random, - tasty >=1.0 && <1.5 - if impl(ghc >= 8.0) - build-depends: - tasty-inspection-testing - other-modules: - Spec.Inspection - -benchmark legacy-bench - type: exitcode-stdio-1.0 - main-is: SimpleRNGBench.hs - hs-source-dirs: bench-legacy - other-modules: BinSearch - default-language: Haskell2010 - ghc-options: - -Wall -O2 -threaded -rtsopts -with-rtsopts=-N - if impl(ghc >= 8.0) - ghc-options: - -Wno-deprecations - - build-depends: - base, - random, - rdtsc, - split >=0.2 && <0.3, - time >=1.4 && <1.13 - -benchmark bench - type: exitcode-stdio-1.0 - main-is: Main.hs - hs-source-dirs: bench - default-language: Haskell2010 - ghc-options: -Wall -O2 - build-depends: - base, - mtl, - primitive >= 0.7.1, - random, - splitmix >=0.1 && <0.2, - tasty-bench +cabal-version: >=1.10 +name: random +version: 1.2.1.1 +x-revision: 1 +license: BSD3 +license-file: LICENSE +maintainer: core-libraries-committee@haskell.org +bug-reports: https://github.com/haskell/random/issues +synopsis: Pseudo-random number generation +description: + This package provides basic pseudo-random number generation, including the + ability to split random number generators. + . + == "System.Random": pure pseudo-random number interface + . + In pure code, use 'System.Random.uniform' and 'System.Random.uniformR' from + "System.Random" to generate pseudo-random numbers with a pure pseudo-random + number generator like 'System.Random.StdGen'. + . + As an example, here is how you can simulate rolls of a six-sided die using + 'System.Random.uniformR': + . + >>> let roll = uniformR (1, 6) :: RandomGen g => g -> (Word, g) + >>> let rolls = unfoldr (Just . roll) :: RandomGen g => g -> [Word] + >>> let pureGen = mkStdGen 42 + >>> take 10 (rolls pureGen) :: [Word] + [1,1,3,2,4,5,3,4,6,2] + . + See "System.Random" for more details. + . + == "System.Random.Stateful": monadic pseudo-random number interface + . + In monadic code, use 'System.Random.Stateful.uniformM' and + 'System.Random.Stateful.uniformRM' from "System.Random.Stateful" to generate + pseudo-random numbers with a monadic pseudo-random number generator, or + using a monadic adapter. + . + As an example, here is how you can simulate rolls of a six-sided die using + 'System.Random.Stateful.uniformRM': + . + >>> let rollM = uniformRM (1, 6) :: StatefulGen g m => g -> m Word + >>> let pureGen = mkStdGen 42 + >>> runStateGen_ pureGen (replicateM 10 . rollM) :: [Word] + [1,1,3,2,4,5,3,4,6,2] + . + The monadic adapter 'System.Random.Stateful.runStateGen_' is used here to lift + the pure pseudo-random number generator @pureGen@ into the + 'System.Random.Stateful.StatefulGen' context. + . + The monadic interface can also be used with existing monadic pseudo-random + number generators. In this example, we use the one provided in the + package: + . + >>> import System.Random.MWC as MWC + >>> let rollM = uniformRM (1, 6) :: StatefulGen g m => g -> m Word + >>> monadicGen <- MWC.create + >>> replicateM 10 (rollM monadicGen) :: IO [Word] + [2,3,6,6,4,4,3,1,5,4] + . + See "System.Random.Stateful" for more details. + +category: System +build-type: Simple +extra-source-files: + README.md + CHANGELOG.md +tested-with: GHC == 7.10.2 + , GHC == 7.10.3 + , GHC == 8.0.2 + , GHC == 8.2.2 + , GHC == 8.4.3 + , GHC == 8.4.4 + , GHC == 8.6.3 + , GHC == 8.6.4 + , GHC == 8.6.5 + , GHC == 8.8.1 + , GHC == 8.8.2 + , GHC == 8.10.1 + +source-repository head + type: git + location: https://github.com/haskell/random.git + + +library + exposed-modules: + System.Random + System.Random.Internal + System.Random.Stateful + other-modules: + System.Random.GFinite + + hs-source-dirs: src + default-language: Haskell2010 + ghc-options: + -Wall + if impl(ghc >= 8.0) + ghc-options: + -Wincomplete-record-updates -Wincomplete-uni-patterns + + build-depends: + base >=4.8 && <5, + bytestring >=0.10.4 && <0.13, + deepseq >=1.1 && <2, + mtl >=2.2 && <2.4, + splitmix >=0.1 && <0.2 + if impl(ghc < 8.0) + build-depends: + transformers + +test-suite legacy-test + type: exitcode-stdio-1.0 + main-is: Legacy.hs + hs-source-dirs: test-legacy + other-modules: + T7936 + TestRandomIOs + TestRandomRs + Random1283 + RangeTest + + default-language: Haskell2010 + ghc-options: -with-rtsopts=-M8M + if impl(ghc >= 8.0) + ghc-options: + -Wno-deprecations + build-depends: + base, + containers >=0.5 && <0.7, + random + +test-suite doctests + type: exitcode-stdio-1.0 + main-is: doctests.hs + hs-source-dirs: test + default-language: Haskell2010 + build-depends: + base, + doctest >=0.15 && <0.21 + if impl(ghc >= 8.2) && impl(ghc < 8.10) + build-depends: + mwc-random >=0.13 && <0.16, + primitive >=0.6 && <0.8, + random, + stm, + unliftio >=0.2 && <0.3, + vector >= 0.10 && <0.14 + +test-suite spec + type: exitcode-stdio-1.0 + main-is: Spec.hs + hs-source-dirs: test + other-modules: + Spec.Range + Spec.Run + Spec.Stateful + + default-language: Haskell2010 + ghc-options: -Wall + build-depends: + base, + bytestring, + random, + smallcheck >=1.2 && <1.3, + stm, + tasty >=1.0 && <1.5, + tasty-smallcheck >=0.8 && <0.9, + tasty-hunit >=0.10 && <0.11, + transformers + +-- Note. Fails when compiled with coverage: +-- https://github.com/haskell/random/issues/107 +test-suite spec-inspection + type: exitcode-stdio-1.0 + main-is: Spec.hs + hs-source-dirs: test-inspection + build-depends: + + default-language: Haskell2010 + ghc-options: -Wall + build-depends: + base, + random, + tasty >=1.0 && <1.5 + if impl(ghc >= 8.0) + build-depends: + tasty-inspection-testing + other-modules: + Spec.Inspection + +benchmark legacy-bench + type: exitcode-stdio-1.0 + main-is: SimpleRNGBench.hs + hs-source-dirs: bench-legacy + other-modules: BinSearch + default-language: Haskell2010 + ghc-options: + -Wall -O2 -threaded -rtsopts -with-rtsopts=-N + if impl(ghc >= 8.0) + ghc-options: + -Wno-deprecations + + build-depends: + base, + random, + rdtsc, + split >=0.2 && <0.3, + time >=1.4 && <1.13 + +benchmark bench + type: exitcode-stdio-1.0 + main-is: Main.hs + hs-source-dirs: bench + default-language: Haskell2010 + ghc-options: -Wall -O2 + build-depends: + base, + mtl, + primitive >= 0.7.1, + random, + splitmix >=0.1 && <0.2, + tasty-bench From 67bbd9aecf02058cd0c9c4a918395cf9e3443c42ab5021ad1187eda35d38dfb4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 5 Feb 2024 22:01:01 +0000 Subject: [PATCH 4/4] osc copypac from project:devel:languages:haskell:ghc-9.6.x package:ghc-random revision:7, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-random?expand=0&rev=70 --- ghc-random.changes | 7 ++ ghc-random.spec | 6 +- random-1.2.1.1.tar.gz | 3 - random-1.2.1.2.tar.gz | 3 + random.cabal | 222 ------------------------------------------ 5 files changed, 12 insertions(+), 229 deletions(-) delete mode 100644 random-1.2.1.1.tar.gz create mode 100644 random-1.2.1.2.tar.gz delete mode 100644 random.cabal diff --git a/ghc-random.changes b/ghc-random.changes index 255ba7a..75899cd 100644 --- a/ghc-random.changes +++ b/ghc-random.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sun Feb 4 16:26:32 UTC 2024 - Peter Simons + +- Update random to version 1.2.1.2. + Upstream has not updated the file "CHANGELOG.md" since the last + release. + ------------------------------------------------------------------- Sat Sep 30 20:57:11 UTC 2023 - Peter Simons diff --git a/ghc-random.spec b/ghc-random.spec index 7fe55d6..1d872c5 100644 --- a/ghc-random.spec +++ b/ghc-random.spec @@ -1,7 +1,7 @@ # # spec file for package ghc-random # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,13 +20,12 @@ %global pkgver %{pkg_name}-%{version} %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.2.1.1 +Version: 1.2.1.2 Release: 0 Summary: Pseudo-random number generation License: BSD-3-Clause URL: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz -Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-base-devel BuildRequires: ghc-base-prof @@ -136,7 +135,6 @@ This package provides the Haskell %{pkg_name} profiling library. %prep %autosetup -n %{pkg_name}-%{version} -cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build diff --git a/random-1.2.1.1.tar.gz b/random-1.2.1.1.tar.gz deleted file mode 100644 index b46770d..0000000 --- a/random-1.2.1.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3e1272f7ed6a4d7bd1712b90143ec326fee9b225789222379fea20a9c90c9b76 -size 47109 diff --git a/random-1.2.1.2.tar.gz b/random-1.2.1.2.tar.gz new file mode 100644 index 0000000..e0c8fbb --- /dev/null +++ b/random-1.2.1.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:790f4dc2d2327c453ff6aac7bf15399fd123d55e927935f68f84b5df42d9a4b4 +size 47229 diff --git a/random.cabal b/random.cabal deleted file mode 100644 index cca8997..0000000 --- a/random.cabal +++ /dev/null @@ -1,222 +0,0 @@ -cabal-version: >=1.10 -name: random -version: 1.2.1.1 -x-revision: 1 -license: BSD3 -license-file: LICENSE -maintainer: core-libraries-committee@haskell.org -bug-reports: https://github.com/haskell/random/issues -synopsis: Pseudo-random number generation -description: - This package provides basic pseudo-random number generation, including the - ability to split random number generators. - . - == "System.Random": pure pseudo-random number interface - . - In pure code, use 'System.Random.uniform' and 'System.Random.uniformR' from - "System.Random" to generate pseudo-random numbers with a pure pseudo-random - number generator like 'System.Random.StdGen'. - . - As an example, here is how you can simulate rolls of a six-sided die using - 'System.Random.uniformR': - . - >>> let roll = uniformR (1, 6) :: RandomGen g => g -> (Word, g) - >>> let rolls = unfoldr (Just . roll) :: RandomGen g => g -> [Word] - >>> let pureGen = mkStdGen 42 - >>> take 10 (rolls pureGen) :: [Word] - [1,1,3,2,4,5,3,4,6,2] - . - See "System.Random" for more details. - . - == "System.Random.Stateful": monadic pseudo-random number interface - . - In monadic code, use 'System.Random.Stateful.uniformM' and - 'System.Random.Stateful.uniformRM' from "System.Random.Stateful" to generate - pseudo-random numbers with a monadic pseudo-random number generator, or - using a monadic adapter. - . - As an example, here is how you can simulate rolls of a six-sided die using - 'System.Random.Stateful.uniformRM': - . - >>> let rollM = uniformRM (1, 6) :: StatefulGen g m => g -> m Word - >>> let pureGen = mkStdGen 42 - >>> runStateGen_ pureGen (replicateM 10 . rollM) :: [Word] - [1,1,3,2,4,5,3,4,6,2] - . - The monadic adapter 'System.Random.Stateful.runStateGen_' is used here to lift - the pure pseudo-random number generator @pureGen@ into the - 'System.Random.Stateful.StatefulGen' context. - . - The monadic interface can also be used with existing monadic pseudo-random - number generators. In this example, we use the one provided in the - package: - . - >>> import System.Random.MWC as MWC - >>> let rollM = uniformRM (1, 6) :: StatefulGen g m => g -> m Word - >>> monadicGen <- MWC.create - >>> replicateM 10 (rollM monadicGen) :: IO [Word] - [2,3,6,6,4,4,3,1,5,4] - . - See "System.Random.Stateful" for more details. - -category: System -build-type: Simple -extra-source-files: - README.md - CHANGELOG.md -tested-with: GHC == 7.10.2 - , GHC == 7.10.3 - , GHC == 8.0.2 - , GHC == 8.2.2 - , GHC == 8.4.3 - , GHC == 8.4.4 - , GHC == 8.6.3 - , GHC == 8.6.4 - , GHC == 8.6.5 - , GHC == 8.8.1 - , GHC == 8.8.2 - , GHC == 8.10.1 - -source-repository head - type: git - location: https://github.com/haskell/random.git - - -library - exposed-modules: - System.Random - System.Random.Internal - System.Random.Stateful - other-modules: - System.Random.GFinite - - hs-source-dirs: src - default-language: Haskell2010 - ghc-options: - -Wall - if impl(ghc >= 8.0) - ghc-options: - -Wincomplete-record-updates -Wincomplete-uni-patterns - - build-depends: - base >=4.8 && <5, - bytestring >=0.10.4 && <0.13, - deepseq >=1.1 && <2, - mtl >=2.2 && <2.4, - splitmix >=0.1 && <0.2 - if impl(ghc < 8.0) - build-depends: - transformers - -test-suite legacy-test - type: exitcode-stdio-1.0 - main-is: Legacy.hs - hs-source-dirs: test-legacy - other-modules: - T7936 - TestRandomIOs - TestRandomRs - Random1283 - RangeTest - - default-language: Haskell2010 - ghc-options: -with-rtsopts=-M8M - if impl(ghc >= 8.0) - ghc-options: - -Wno-deprecations - build-depends: - base, - containers >=0.5 && <0.7, - random - -test-suite doctests - type: exitcode-stdio-1.0 - main-is: doctests.hs - hs-source-dirs: test - default-language: Haskell2010 - build-depends: - base, - doctest >=0.15 && <0.21 - if impl(ghc >= 8.2) && impl(ghc < 8.10) - build-depends: - mwc-random >=0.13 && <0.16, - primitive >=0.6 && <0.8, - random, - stm, - unliftio >=0.2 && <0.3, - vector >= 0.10 && <0.14 - -test-suite spec - type: exitcode-stdio-1.0 - main-is: Spec.hs - hs-source-dirs: test - other-modules: - Spec.Range - Spec.Run - Spec.Stateful - - default-language: Haskell2010 - ghc-options: -Wall - build-depends: - base, - bytestring, - random, - smallcheck >=1.2 && <1.3, - stm, - tasty >=1.0 && <1.5, - tasty-smallcheck >=0.8 && <0.9, - tasty-hunit >=0.10 && <0.11, - transformers - --- Note. Fails when compiled with coverage: --- https://github.com/haskell/random/issues/107 -test-suite spec-inspection - type: exitcode-stdio-1.0 - main-is: Spec.hs - hs-source-dirs: test-inspection - build-depends: - - default-language: Haskell2010 - ghc-options: -Wall - build-depends: - base, - random, - tasty >=1.0 && <1.5 - if impl(ghc >= 8.0) - build-depends: - tasty-inspection-testing - other-modules: - Spec.Inspection - -benchmark legacy-bench - type: exitcode-stdio-1.0 - main-is: SimpleRNGBench.hs - hs-source-dirs: bench-legacy - other-modules: BinSearch - default-language: Haskell2010 - ghc-options: - -Wall -O2 -threaded -rtsopts -with-rtsopts=-N - if impl(ghc >= 8.0) - ghc-options: - -Wno-deprecations - - build-depends: - base, - random, - rdtsc, - split >=0.2 && <0.3, - time >=1.4 && <1.13 - -benchmark bench - type: exitcode-stdio-1.0 - main-is: Main.hs - hs-source-dirs: bench - default-language: Haskell2010 - ghc-options: -Wall -O2 - build-depends: - base, - mtl, - primitive >= 0.7.1, - random, - splitmix >=0.1 && <0.2, - tasty-bench