commit 902aaa95e2e046ad40d32d808703e956d9b522df773cb1c00fe628353eced529 Author: Ondřej Súkup Date: Tue May 4 10:35:15 2021 +0000 osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-hedgehog-quickcheck revision:1, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-hedgehog-quickcheck?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/ghc-hedgehog-quickcheck.changes b/ghc-hedgehog-quickcheck.changes new file mode 100644 index 0000000..ea2a0cc --- /dev/null +++ b/ghc-hedgehog-quickcheck.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Mon Apr 26 09:49:43 UTC 2021 - psimons@suse.com + +- Add hedgehog-quickcheck at version 0.1.1 revision 1. + diff --git a/ghc-hedgehog-quickcheck.spec b/ghc-hedgehog-quickcheck.spec new file mode 100644 index 0000000..fd83bb8 --- /dev/null +++ b/ghc-hedgehog-quickcheck.spec @@ -0,0 +1,78 @@ +# +# spec file for package ghc-hedgehog-quickcheck +# +# Copyright (c) 2021 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%global pkg_name hedgehog-quickcheck +Name: ghc-%{pkg_name} +Version: 0.1.1 +Release: 0 +Summary: Use QuickCheck generators in Hedgehog and vice versa +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-QuickCheck-devel +BuildRequires: ghc-hedgehog-devel +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-transformers-devel +ExcludeArch: %{ix86} + +%description +Use QuickCheck generators in Hedgehog and vice versa. + +Hedgehog is a modern property-based testing system, in the spirit of +QuickCheck. Hedgehog uses integrated shrinking, so shrinks obey the invariants +of generated values by construction. + +To get started quickly, see the examples: + +homepage: + https://hedgehog.qa +bug-reports: + https://github.com/hedgehogqa/haskell-hedgehog/issues +synopsis: + Use QuickCheck generators in Hedgehog and vice versa. +description: + Use QuickCheck generators in Hedgehog and vice versa. + . + Hedgehog is a modern property-based testing system, in the spirit of + QuickCheck. Hedgehog uses integrated shrinking, so shrinks obey the + invariants of generated values by construction. + . + To get started quickly, see the examples: + = 1.8 +build-type: + Simple +tested-with: + GHC == 7.10.2 + , GHC == 7.10.3 + , GHC == 8.0.1 + , GHC == 8.0.2 + , GHC == 8.2.2 + , GHC == 8.4.1 + , GHC == 8.4.2 + , GHC == 8.4.3 + , GHC == 8.4.4 + , GHC == 8.6.1 + , GHC == 8.6.2 + , GHC == 8.6.3 + , GHC == 8.6.4 +extra-source-files: + README.md + CHANGELOG.md + +source-repository head + type: git + location: git://github.com/hedgehogqa/haskell-hedgehog.git + +library + build-depends: + base >= 3 && < 5 + , hedgehog >= 0.5 && < 1.1 + , QuickCheck >= 2.7 && < 2.15 + , transformers >= 0.4 && < 0.6 + + ghc-options: + -Wall + + hs-source-dirs: + src + + exposed-modules: + Hedgehog.Gen.QuickCheck + + Test.QuickCheck.Hedgehog