commit
eb8e900a23
@ -0,0 +1 @@
|
|||||||
|
083fb5123b899e896dc7ff1e8a8cc8531f5056ff SOURCES/primitive-0.7.3.0.tar.gz
|
@ -0,0 +1 @@
|
|||||||
|
SOURCES/primitive-0.7.3.0.tar.gz
|
@ -0,0 +1,115 @@
|
|||||||
|
Cabal-Version: 2.2
|
||||||
|
Name: primitive
|
||||||
|
Version: 0.7.3.0
|
||||||
|
x-revision: 2
|
||||||
|
License: BSD-3-Clause
|
||||||
|
License-File: LICENSE
|
||||||
|
|
||||||
|
Author: Roman Leshchinskiy <rl@cse.unsw.edu.au>
|
||||||
|
Maintainer: libraries@haskell.org
|
||||||
|
Copyright: (c) Roman Leshchinskiy 2009-2012
|
||||||
|
Homepage: https://github.com/haskell/primitive
|
||||||
|
Bug-Reports: https://github.com/haskell/primitive/issues
|
||||||
|
Category: Data
|
||||||
|
Synopsis: Primitive memory-related operations
|
||||||
|
Build-Type: Simple
|
||||||
|
Description: This package provides various primitive memory-related operations.
|
||||||
|
|
||||||
|
Extra-Source-Files: changelog.md
|
||||||
|
test/*.hs
|
||||||
|
test/LICENSE
|
||||||
|
|
||||||
|
Tested-With:
|
||||||
|
GHC == 7.10.3,
|
||||||
|
GHC == 8.0.2,
|
||||||
|
GHC == 8.2.2,
|
||||||
|
GHC == 8.4.4,
|
||||||
|
GHC == 8.6.5,
|
||||||
|
GHC == 8.8.4,
|
||||||
|
GHC == 8.10.7
|
||||||
|
|
||||||
|
Library
|
||||||
|
Default-Language: Haskell2010
|
||||||
|
Other-Extensions:
|
||||||
|
BangPatterns, CPP, DeriveDataTypeable,
|
||||||
|
MagicHash, TypeFamilies, UnboxedTuples, UnliftedFFITypes
|
||||||
|
|
||||||
|
Exposed-Modules:
|
||||||
|
Control.Monad.Primitive
|
||||||
|
Data.Primitive
|
||||||
|
Data.Primitive.MachDeps
|
||||||
|
Data.Primitive.Types
|
||||||
|
Data.Primitive.Array
|
||||||
|
Data.Primitive.ByteArray
|
||||||
|
Data.Primitive.PrimArray
|
||||||
|
Data.Primitive.SmallArray
|
||||||
|
Data.Primitive.Ptr
|
||||||
|
Data.Primitive.MutVar
|
||||||
|
Data.Primitive.MVar
|
||||||
|
|
||||||
|
Other-Modules:
|
||||||
|
Data.Primitive.Internal.Operations
|
||||||
|
|
||||||
|
Build-Depends: base >= 4.8 && < 4.17
|
||||||
|
, deepseq >= 1.1 && < 1.5
|
||||||
|
, transformers >= 0.4.2 && < 0.7
|
||||||
|
if !impl(ghc >= 8.0)
|
||||||
|
Build-Depends: fail == 4.9.*
|
||||||
|
|
||||||
|
Ghc-Options: -O2
|
||||||
|
|
||||||
|
Include-Dirs: cbits
|
||||||
|
Install-Includes: primitive-memops.h
|
||||||
|
includes: primitive-memops.h
|
||||||
|
c-sources: cbits/primitive-memops.c
|
||||||
|
if !os(solaris)
|
||||||
|
cc-options: -ftree-vectorize
|
||||||
|
if arch(i386) || arch(x86_64)
|
||||||
|
cc-options: -msse2
|
||||||
|
|
||||||
|
test-suite test-qc
|
||||||
|
Default-Language: Haskell2010
|
||||||
|
hs-source-dirs: test
|
||||||
|
test/src
|
||||||
|
main-is: main.hs
|
||||||
|
Other-Modules: PrimLaws
|
||||||
|
type: exitcode-stdio-1.0
|
||||||
|
build-depends: base
|
||||||
|
, base-orphans
|
||||||
|
, ghc-prim
|
||||||
|
, primitive
|
||||||
|
, quickcheck-classes-base >= 0.6 && <0.7
|
||||||
|
, QuickCheck >= 2.13 && < 2.15
|
||||||
|
, tasty ^>= 1.2 || ^>= 1.3 || ^>= 1.4
|
||||||
|
, tasty-quickcheck
|
||||||
|
, tagged
|
||||||
|
, transformers >= 0.4
|
||||||
|
, transformers-compat
|
||||||
|
if !impl(ghc >= 8.0)
|
||||||
|
build-depends: semigroups
|
||||||
|
|
||||||
|
cpp-options: -DHAVE_UNARY_LAWS
|
||||||
|
ghc-options: -O2
|
||||||
|
|
||||||
|
benchmark bench
|
||||||
|
Default-Language: Haskell2010
|
||||||
|
hs-source-dirs: bench
|
||||||
|
main-is: main.hs
|
||||||
|
type: exitcode-stdio-1.0
|
||||||
|
ghc-options: -O2
|
||||||
|
other-modules:
|
||||||
|
Array.Traverse.Closure
|
||||||
|
Array.Traverse.Unsafe
|
||||||
|
ByteArray.Compare
|
||||||
|
PrimArray.Compare
|
||||||
|
PrimArray.Traverse
|
||||||
|
build-depends:
|
||||||
|
base
|
||||||
|
, primitive
|
||||||
|
, deepseq
|
||||||
|
, tasty-bench
|
||||||
|
, transformers >= 0.3
|
||||||
|
|
||||||
|
source-repository head
|
||||||
|
type: git
|
||||||
|
location: https://github.com/haskell/primitive
|
@ -0,0 +1,231 @@
|
|||||||
|
# generated by cabal-rpm-2.0.9
|
||||||
|
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
|
||||||
|
|
||||||
|
%global pkg_name primitive
|
||||||
|
%global pkgver %{pkg_name}-%{version}
|
||||||
|
|
||||||
|
# testsuite missing deps: quickcheck-classes-base
|
||||||
|
|
||||||
|
Name: ghc-%{pkg_name}
|
||||||
|
Version: 0.7.3.0
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: Primitive memory-related operations
|
||||||
|
|
||||||
|
License: BSD
|
||||||
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
|
# Begin cabal-rpm sources:
|
||||||
|
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
||||||
|
Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal
|
||||||
|
# End cabal-rpm sources
|
||||||
|
|
||||||
|
# Begin cabal-rpm deps:
|
||||||
|
BuildRequires: ghc-Cabal-devel
|
||||||
|
BuildRequires: ghc-rpm-macros
|
||||||
|
BuildRequires: ghc-base-prof
|
||||||
|
BuildRequires: ghc-deepseq-prof
|
||||||
|
BuildRequires: ghc-transformers-prof
|
||||||
|
# End cabal-rpm deps
|
||||||
|
|
||||||
|
%description
|
||||||
|
This package provides various primitive memory-related operations.
|
||||||
|
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Haskell %{pkg_name} library development files
|
||||||
|
Provides: %{name}-static = %{version}-%{release}
|
||||||
|
Provides: %{name}-static%{?_isa} = %{version}-%{release}
|
||||||
|
%if %{defined ghc_version}
|
||||||
|
Requires: ghc-compiler = %{ghc_version}
|
||||||
|
%endif
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
This package provides the Haskell %{pkg_name} library development files.
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with haddock}
|
||||||
|
%package doc
|
||||||
|
Summary: Haskell %{pkg_name} library documentation
|
||||||
|
BuildArch: noarch
|
||||||
|
Requires: ghc-filesystem
|
||||||
|
|
||||||
|
%description doc
|
||||||
|
This package provides the Haskell %{pkg_name} library documentation.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with ghc_prof}
|
||||||
|
%package prof
|
||||||
|
Summary: Haskell %{pkg_name} profiling library
|
||||||
|
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
|
||||||
|
Supplements: (%{name}-devel and ghc-prof)
|
||||||
|
|
||||||
|
%description prof
|
||||||
|
This package provides the Haskell %{pkg_name} profiling library.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
# Begin cabal-rpm setup:
|
||||||
|
%setup -q -n %{pkgver}
|
||||||
|
cp -bp %{SOURCE1} %{pkg_name}.cabal
|
||||||
|
# End cabal-rpm setup
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
# Begin cabal-rpm build:
|
||||||
|
%ghc_lib_build
|
||||||
|
# End cabal-rpm build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
# Begin cabal-rpm install
|
||||||
|
%ghc_lib_install
|
||||||
|
# End cabal-rpm install
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.files
|
||||||
|
# Begin cabal-rpm files:
|
||||||
|
%license LICENSE
|
||||||
|
# End cabal-rpm files
|
||||||
|
|
||||||
|
|
||||||
|
%files devel -f %{name}-devel.files
|
||||||
|
%doc changelog.md
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with haddock}
|
||||||
|
%files doc -f %{name}-doc.files
|
||||||
|
%license LICENSE
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with ghc_prof}
|
||||||
|
%files prof -f %{name}-prof.files
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Aug 18 2023 Alexey Lyubimov <a.lyubimov@msvsphere.ru> - 0.7.3.0-1
|
||||||
|
- Rebuilt for MSVSphere 9.2
|
||||||
|
|
||||||
|
* Tue Jun 07 2022 Jens Petersen <petersen@redhat.com> - 0.7.3.0-1
|
||||||
|
- https://hackage.haskell.org/package/primitive-0.7.3.0/changelog
|
||||||
|
|
||||||
|
* Tue Mar 08 2022 Jens Petersen <petersen@redhat.com> - 0.7.1.0-3
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.1.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Aug 5 2021 Jens Petersen <petersen@redhat.com> - 0.7.1.0-1
|
||||||
|
- update to 0.7.1.0
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.0.1-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.0.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.0.1-3
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.0.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 10 2020 Jens Petersen <petersen@redhat.com> - 0.7.0.1-1
|
||||||
|
- update to 0.7.0.1
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.4.0-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Aug 02 2019 Jens Petersen <petersen@redhat.com> - 0.6.4.0-5
|
||||||
|
- add doc and prof subpackages (cabal-rpm-1.0.0)
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.4.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Feb 17 2019 Jens Petersen <petersen@redhat.com> - 0.6.4.0-3
|
||||||
|
- refresh to cabal-rpm-0.13
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.4.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 22 2018 Jens Petersen <petersen@redhat.com> - 0.6.4.0-1
|
||||||
|
- update to 0.6.4.0
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.2.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.2.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 24 2018 Jens Petersen <petersen@redhat.com> - 0.6.2.0-1
|
||||||
|
- update to 0.6.2.0
|
||||||
|
|
||||||
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 24 2017 Jens Petersen <petersen@redhat.com> - 0.6.1.0-3
|
||||||
|
- refresh to cabal-rpm-0.11.1
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 13 2016 Jens Petersen <petersen@redhat.com> - 0.6.1.0-1
|
||||||
|
- update to 0.6.1.0
|
||||||
|
|
||||||
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.2.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Aug 8 2014 Jens Petersen <petersen@redhat.com> - 0.5.2.1-1
|
||||||
|
- update to 0.5.2.1
|
||||||
|
|
||||||
|
* Thu Jun 19 2014 Jens Petersen <petersen@redhat.com> - 0.5.0.1-5
|
||||||
|
- update packaging to cblrpm-0.8.11
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 04 2013 Jens Petersen <petersen@redhat.com> - 0.5.0.1-3
|
||||||
|
- update to new simplified Haskell Packaging Guidelines
|
||||||
|
|
||||||
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 27 2012 Jens Petersen <petersen@redhat.com> - 0.5.0.1-1
|
||||||
|
- update to 0.5.0.1
|
||||||
|
|
||||||
|
* Sat Nov 17 2012 Jens Petersen <petersen@redhat.com>
|
||||||
|
- update with cabal-rpm
|
||||||
|
|
||||||
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 16 2012 Jens Petersen <petersen@redhat.com> - 0.4.1-2
|
||||||
|
- change prof BRs to devel
|
||||||
|
|
||||||
|
* Thu Mar 22 2012 Jens Petersen <petersen@redhat.com> - 0.4.1-1
|
||||||
|
- update to 0.4.1
|
||||||
|
|
||||||
|
* Wed Jan 4 2012 Jens Petersen <petersen@redhat.com> - 0.4.0.1-1
|
||||||
|
- update to 0.4.0.1 and cabal2spec-0.25.2
|
||||||
|
|
||||||
|
* Mon Oct 24 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.3.1-2.1
|
||||||
|
- rebuild with new gmp without compat lib
|
||||||
|
|
||||||
|
* Tue Sep 13 2011 Jens Petersen <petersen@redhat.com> - 0.3.1-2
|
||||||
|
- rebuild against newer ghc-rpm-macros
|
||||||
|
|
||||||
|
* Thu Sep 8 2011 Jens Petersen <petersen@redhat.com> - 0.3.1-1
|
||||||
|
- BSD license
|
||||||
|
|
||||||
|
* Thu Sep 8 2011 Fedora Haskell SIG <haskell-devel@lists.fedoraproject.org> - 0.3.1-0
|
||||||
|
- initial packaging for Fedora automatically generated by cabal2spec-0.24.1
|
Loading…
Reference in new issue