commit
9c48093fe8
@ -0,0 +1 @@
|
|||||||
|
bd44f1e31b204cd965c14a912a38db3cf21e92a7 SOURCES/integer-logarithms-1.0.3.1.tar.gz
|
@ -0,0 +1 @@
|
|||||||
|
SOURCES/integer-logarithms-1.0.3.1.tar.gz
|
@ -0,0 +1,135 @@
|
|||||||
|
name: integer-logarithms
|
||||||
|
version: 1.0.3.1
|
||||||
|
x-revision: 2
|
||||||
|
cabal-version: >=1.10
|
||||||
|
author: Daniel Fischer
|
||||||
|
copyright:
|
||||||
|
(c) 2011 Daniel Fischer, 2017-2020 Oleg Grenrus, Andrew Lelechenko
|
||||||
|
|
||||||
|
license: MIT
|
||||||
|
license-file: LICENSE
|
||||||
|
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
|
||||||
|
build-type: Simple
|
||||||
|
stability: Provisional
|
||||||
|
homepage: https://github.com/haskellari/integer-logarithms
|
||||||
|
bug-reports: https://github.com/haskellari/integer-logarithms/issues
|
||||||
|
synopsis: Integer logarithms.
|
||||||
|
description:
|
||||||
|
"Math.NumberTheory.Logarithms" and "Math.NumberTheory.Powers.Integer"
|
||||||
|
from the arithmoi package.
|
||||||
|
.
|
||||||
|
Also provides "GHC.Integer.Logarithms.Compat" and
|
||||||
|
"Math.NumberTheory.Power.Natural" modules, as well as some
|
||||||
|
additional functions in migrated modules.
|
||||||
|
|
||||||
|
category: Math, Algorithms, Number Theory
|
||||||
|
tested-with:
|
||||||
|
GHC ==7.0.4
|
||||||
|
|| ==7.2.2
|
||||||
|
|| ==7.4.2
|
||||||
|
|| ==7.6.3
|
||||||
|
|| ==7.8.4
|
||||||
|
|| ==7.10.3
|
||||||
|
|| ==8.0.2
|
||||||
|
|| ==8.2.2
|
||||||
|
|| ==8.4.4
|
||||||
|
|| ==8.6.4
|
||||||
|
|| ==8.8.4
|
||||||
|
|| ==8.10.4
|
||||||
|
|| ==9.0.1
|
||||||
|
|| ==9.2.1
|
||||||
|
, GHCJS ==8.4
|
||||||
|
|
||||||
|
extra-source-files:
|
||||||
|
changelog.md
|
||||||
|
readme.md
|
||||||
|
|
||||||
|
flag integer-gmp
|
||||||
|
description: integer-gmp or integer-simple
|
||||||
|
default: True
|
||||||
|
manual: False
|
||||||
|
|
||||||
|
flag check-bounds
|
||||||
|
description: Replace unsafe array operations with safe ones
|
||||||
|
default: False
|
||||||
|
manual: True
|
||||||
|
|
||||||
|
library
|
||||||
|
default-language: Haskell2010
|
||||||
|
hs-source-dirs: src
|
||||||
|
build-depends:
|
||||||
|
array >=0.3 && <0.6
|
||||||
|
, base >=4.3 && <4.17
|
||||||
|
, ghc-prim <0.9
|
||||||
|
|
||||||
|
if !impl(ghc >=7.10)
|
||||||
|
build-depends: nats >=1.1.2 && <1.2
|
||||||
|
|
||||||
|
if impl(ghc >=9.0)
|
||||||
|
build-depends:
|
||||||
|
base >=4.15
|
||||||
|
, ghc-bignum >=1.0 && <1.3
|
||||||
|
|
||||||
|
if !flag(integer-gmp)
|
||||||
|
build-depends: invalid-cabal-flag-settings <0
|
||||||
|
|
||||||
|
else
|
||||||
|
build-depends: base <4.15
|
||||||
|
|
||||||
|
if flag(integer-gmp)
|
||||||
|
build-depends: integer-gmp <1.1
|
||||||
|
|
||||||
|
else
|
||||||
|
build-depends: integer-simple
|
||||||
|
|
||||||
|
exposed-modules:
|
||||||
|
Math.NumberTheory.Logarithms
|
||||||
|
Math.NumberTheory.Powers.Integer
|
||||||
|
Math.NumberTheory.Powers.Natural
|
||||||
|
|
||||||
|
-- compat module
|
||||||
|
exposed-modules: GHC.Integer.Logarithms.Compat
|
||||||
|
other-extensions:
|
||||||
|
BangPatterns
|
||||||
|
CPP
|
||||||
|
MagicHash
|
||||||
|
|
||||||
|
ghc-options: -O2 -Wall
|
||||||
|
|
||||||
|
if flag(check-bounds)
|
||||||
|
cpp-options: -DCheckBounds
|
||||||
|
|
||||||
|
source-repository head
|
||||||
|
type: git
|
||||||
|
location: https://github.com/haskellari/integer-logarithms
|
||||||
|
|
||||||
|
test-suite spec
|
||||||
|
type: exitcode-stdio-1.0
|
||||||
|
hs-source-dirs: test-suite
|
||||||
|
ghc-options: -Wall
|
||||||
|
main-is: Test.hs
|
||||||
|
default-language: Haskell2010
|
||||||
|
other-extensions:
|
||||||
|
FlexibleContexts
|
||||||
|
FlexibleInstances
|
||||||
|
GeneralizedNewtypeDeriving
|
||||||
|
MultiParamTypeClasses
|
||||||
|
StandaloneDeriving
|
||||||
|
|
||||||
|
build-depends:
|
||||||
|
base
|
||||||
|
, integer-logarithms
|
||||||
|
, QuickCheck >=2.14.1 && <2.15
|
||||||
|
, smallcheck >=1.2 && <1.3
|
||||||
|
, tasty >=0.10 && <1.5
|
||||||
|
, tasty-hunit >=0.9 && <0.11
|
||||||
|
, tasty-quickcheck >=0.8 && <0.11
|
||||||
|
, tasty-smallcheck >=0.8 && <0.9
|
||||||
|
|
||||||
|
if !impl(ghc >=7.10)
|
||||||
|
build-depends: nats ==1.1.*
|
||||||
|
|
||||||
|
other-modules:
|
||||||
|
Math.NumberTheory.LogarithmsTests
|
||||||
|
Math.NumberTheory.TestUtils
|
||||||
|
Orphans
|
@ -0,0 +1,169 @@
|
|||||||
|
# generated by cabal-rpm-2.0.9
|
||||||
|
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
|
||||||
|
|
||||||
|
%global pkg_name integer-logarithms
|
||||||
|
%global pkgver %{pkg_name}-%{version}
|
||||||
|
|
||||||
|
# testsuite missing deps: tasty-smallcheck
|
||||||
|
|
||||||
|
Name: ghc-%{pkg_name}
|
||||||
|
Version: 1.0.3.1
|
||||||
|
Release: 2%{?dist}
|
||||||
|
Summary: Integer logarithms
|
||||||
|
|
||||||
|
License: MIT
|
||||||
|
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-array-prof
|
||||||
|
BuildRequires: ghc-base-prof
|
||||||
|
# End cabal-rpm deps
|
||||||
|
|
||||||
|
%description
|
||||||
|
"Math.NumberTheory.Logarithms" and "Math.NumberTheory.Powers.Integer" from the
|
||||||
|
arithmoi package.
|
||||||
|
|
||||||
|
Also provides "GHC.Integer.Logarithms.Compat" and
|
||||||
|
"Math.NumberTheory.Power.Natural" modules, as well as some additional functions
|
||||||
|
in migrated modules.
|
||||||
|
|
||||||
|
|
||||||
|
%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 readme.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> - 1.0.3.1-2
|
||||||
|
- Rebuilt for MSVSphere 9.2
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.3.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Aug 5 2021 Jens Petersen <petersen@redhat.com> - 1.0.3.1-1
|
||||||
|
- update to 1.0.3.1
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.3-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.3-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.3-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 17 2020 Jens Petersen <petersen@redhat.com> - 1.0.3-3
|
||||||
|
- refresh to cabal-rpm-2.0.6
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Jens Petersen <petersen@redhat.com> - 1.0.3-1
|
||||||
|
- update to 1.0.3
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Feb 21 2019 Jens Petersen <petersen@redhat.com> - 1.0.2.2-1
|
||||||
|
- update to 1.0.2.2
|
||||||
|
|
||||||
|
* Sun Feb 17 2019 Jens Petersen <petersen@redhat.com> - 1.0.2.1-3
|
||||||
|
- refresh to cabal-rpm-0.13
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 22 2018 Jens Petersen <petersen@redhat.com> - 1.0.2.1-1
|
||||||
|
- update to 1.0.2.1
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 24 2018 Jens Petersen <petersen@redhat.com> - 1.0.2-1
|
||||||
|
- update to 1.0.2
|
||||||
|
|
||||||
|
* Tue Nov 21 2017 Jens Petersen <petersen@redhat.com> - 1.0.1-4
|
||||||
|
- bump release over ghc-scientific
|
||||||
|
|
||||||
|
* Wed Nov 15 2017 Fedora Haskell SIG <haskell@lists.fedoraproject.org> - 1.0.1-1
|
||||||
|
- spec file generated by cabal-rpm-0.11.2
|
Loading…
Reference in new issue