From 0e7313099682ffad4620c69ed3026ef85b71d009 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Mon, 30 Oct 2023 03:15:26 +0000 Subject: automatic import of ghc-vector-algorithms --- .gitignore | 1 + ghc-vector-algorithms.spec | 95 +++++++++++++++++++++++++++ sources | 1 + vector-algorithms.cabal | 156 +++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 253 insertions(+) create mode 100644 ghc-vector-algorithms.spec create mode 100644 sources create mode 100755 vector-algorithms.cabal diff --git a/.gitignore b/.gitignore index e69de29..63da190 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/vector-algorithms-0.9.0.1.tar.gz diff --git a/ghc-vector-algorithms.spec b/ghc-vector-algorithms.spec new file mode 100644 index 0000000..dfb0019 --- /dev/null +++ b/ghc-vector-algorithms.spec @@ -0,0 +1,95 @@ +%global pkg_name vector-algorithms +%global pkgver %{pkg_name}-%{version} +%bcond_with tests + +Name: ghc-%{pkg_name} +Version: 0.9.0.1 +Release: 1 +Summary: Efficient algorithms for vector arrays +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/2.cabal#/%{pkg_name}.cabal +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-base-devel +BuildRequires: ghc-base-prof +BuildRequires: ghc-bitvec-devel +BuildRequires: ghc-bitvec-prof +BuildRequires: ghc-bytestring-devel +BuildRequires: ghc-bytestring-prof +BuildRequires: ghc-primitive-devel +BuildRequires: ghc-primitive-prof +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-vector-devel +BuildRequires: ghc-vector-prof +ExcludeArch: %{ix86} +%if %{with tests} +BuildRequires: ghc-QuickCheck-devel +BuildRequires: ghc-QuickCheck-prof +BuildRequires: ghc-containers-devel +BuildRequires: ghc-containers-prof +%endif + +%description +Efficient algorithms for sorting vector arrays. At some stage other vector +algorithms may be added. + +%package devel +Summary: Haskell %{pkg_name} library development files +Requires: %{name} = %{version}-%{release} +Requires: ghc-compiler = %{ghc_version} +Requires(post): ghc-compiler = %{ghc_version} +Requires(postun): ghc-compiler = %{ghc_version} + +%description devel +This package provides the Haskell %{pkg_name} library development +files. + +%package -n ghc-%{pkg_name}-help +Summary: Haskell %{pkg_name} library documentation +BuildArch: noarch + +%description -n ghc-%{pkg_name}-help +This package provides the Haskell %{pkg_name} library documentation. + +%package -n ghc-%{pkg_name}-prof +Summary: Haskell %{pkg_name} profiling library +Requires: ghc-%{pkg_name}-devel = %{version}-%{release} +Supplements: (ghc-%{pkg_name}-devel and ghc-prof) + +%description -n ghc-%{pkg_name}-prof +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 + +%install +%ghc_lib_install + +%check +%cabal_test + +%post devel +%ghc_pkg_recache + +%postun devel +%ghc_pkg_recache + +%files -f %{name}.files +%license LICENSE + +%files devel -f %{name}-devel.files +%doc CHANGELOG.md + +%files -n ghc-%{pkg_name}-help -f ghc-%{pkg_name}-help.files +%license LICENSE + +%files -n ghc-%{pkg_name}-prof -f ghc-%{pkg_name}-prof.files + +%changelog +* Thu Sep 28 2023 Lin Runze 0.9.0.1-1 +- Initial packaging (Version 0.9.0.1) diff --git a/sources b/sources new file mode 100644 index 0000000..937873c --- /dev/null +++ b/sources @@ -0,0 +1 @@ +70bfafbb6fae8cf09a02b884f92b514c vector-algorithms-0.9.0.1.tar.gz diff --git a/vector-algorithms.cabal b/vector-algorithms.cabal new file mode 100755 index 0000000..75d3617 --- /dev/null +++ b/vector-algorithms.cabal @@ -0,0 +1,156 @@ +name: vector-algorithms +version: 0.9.0.1 +x-revision: 2 +license: BSD3 +license-file: LICENSE +author: Dan Doel +maintainer: Dan Doel + Erik de Castro Lopo +copyright: (c) 2008,2009,2010,2011,2012,2013,2014,2015 Dan Doel + (c) 2015 Tim Baumann +homepage: https://github.com/erikd/vector-algorithms/ +category: Data +synopsis: Efficient algorithms for vector arrays +description: Efficient algorithms for sorting vector arrays. At some stage + other vector algorithms may be added. +build-type: Simple +cabal-version: >= 1.10 +extra-source-files: CHANGELOG.md + + +flag BoundsChecks + description: Enable bounds checking + default: True + +flag UnsafeChecks + description: Enable bounds checking in unsafe operations at the cost of a + significant performance penalty. + default: False + +flag InternalChecks + description: Enable internal consistency checks at the cost of a + significant performance penalty. + default: False + +flag bench + description: Build a benchmarking program to test vector-algorithms + performance + default: True + +flag properties + description: Enable the quickcheck tests + default: True + +-- flag dump-simpl +-- description: Dumps the simplified core during compilation +-- default: False + +flag llvm + description: Build using llvm + default: False + +source-repository head + type: git + location: https://github.com/erikd/vector-algorithms/ + +library + hs-source-dirs: src + default-language: Haskell2010 + + build-depends: base >= 4.5 && < 5, + bitvec >= 1.0 && < 1.2, + vector >= 0.6 && < 0.14, + primitive >=0.6.2.0 && <0.9, + bytestring >= 0.9 && < 1.0 + + if ! impl (ghc >= 7.8) + build-depends: tagged >= 0.4 && < 0.9 + + exposed-modules: + Data.Vector.Algorithms + Data.Vector.Algorithms.Optimal + Data.Vector.Algorithms.Insertion + Data.Vector.Algorithms.Intro + Data.Vector.Algorithms.Merge + Data.Vector.Algorithms.Radix + Data.Vector.Algorithms.Search + Data.Vector.Algorithms.Heap + Data.Vector.Algorithms.AmericanFlag + Data.Vector.Algorithms.Tim + + other-modules: + Data.Vector.Algorithms.Common + + ghc-options: + -funbox-strict-fields + + -- Cabal/Hackage complains about these + -- if flag(dump-simpl) + -- ghc-options: -ddump-simpl -ddump-to-file + + if flag(llvm) + ghc-options: -fllvm + + include-dirs: + include + + install-includes: + vector.h + + if flag(BoundsChecks) + cpp-options: -DVECTOR_BOUNDS_CHECKS + + if flag(UnsafeChecks) + cpp-options: -DVECTOR_UNSAFE_CHECKS + + if flag(InternalChecks) + cpp-options: -DVECTOR_INTERNAL_CHECKS + +benchmark simple-bench + hs-source-dirs: bench/simple + type: exitcode-stdio-1.0 + default-language: Haskell2010 + + if !flag(bench) + buildable: False + + main-is: Main.hs + + other-modules: + Blocks + + build-depends: base, mwc-random, vector, vector-algorithms + ghc-options: -Wall + + -- Cabal/Hackage complains about these + -- if flag(dump-simpl) + -- ghc-options: -ddump-simpl -ddump-to-file + + if flag(llvm) + ghc-options: -fllvm + +test-suite properties + hs-source-dirs: tests/properties + type: exitcode-stdio-1.0 + main-is: Tests.hs + default-language: Haskell2010 + + other-modules: + Optimal + Properties + Util + + if !flag(properties) + buildable: False + else + build-depends: + base, + bytestring, + containers, + QuickCheck > 2.9 && < 2.15, + vector, + vector-algorithms + + if flag(llvm) + ghc-options: -fllvm + -- cgit v1.2.3