Hello community,
here is the log from the commit of package ghc-integer-logarithms for
openSUSE:Factory checked in at 2019-12-27 13:54:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-integer-logarithms (Old)
and /work/SRC/openSUSE:Factory/.ghc-integer-logarithms.new.6675 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-integer-logarithms"
Fri Dec 27 13:54:30 2019 rev:9 rq:759431 version:1.0.3
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-integer-logarithms/ghc-integer-logarithms.changes
2019-04-28 20:13:10.378428935 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-integer-logarithms.new.6675/ghc-integer-logarithms.changes
2019-12-27 13:54:33.464692782 +0100
@@ -1,0 +2,5 @@
+Fri Nov 8 16:14:04 UTC 2019 - Peter Simons <[email protected]>
+
+- Drop obsolete group attributes.
+
+-------------------------------------------------------------------
New:
----
integer-logarithms.cabal
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-integer-logarithms.spec ++++++
--- /var/tmp/diff_new_pack.Od8Jr0/_old 2019-12-27 13:54:34.012693047 +0100
+++ /var/tmp/diff_new_pack.Od8Jr0/_new 2019-12-27 13:54:34.016693049 +0100
@@ -23,9 +23,9 @@
Release: 0
Summary: Integer logarithms
License: MIT
-Group: Development/Libraries/Haskell
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-array-devel
BuildRequires: ghc-rpm-macros
@@ -48,7 +48,6 @@
%package devel
Summary: Haskell %{pkg_name} library development files
-Group: Development/Libraries/Haskell
Requires: %{name} = %{version}-%{release}
Requires: ghc-compiler = %{ghc_version}
Requires(post): ghc-compiler = %{ghc_version}
@@ -60,6 +59,7 @@
%prep
%setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build
++++++ integer-logarithms.cabal ++++++
name: integer-logarithms
version: 1.0.3
x-revision: 1
cabal-version: >= 1.10
author: Daniel Fischer
copyright: (c) 2011 Daniel Fischer
license: MIT
license-file: LICENSE
maintainer: Oleg Grenrus <[email protected]>
build-type: Simple
stability: Provisional
homepage: https://github.com/Bodigrim/integer-logarithms
bug-reports: https://github.com/Bodigrim/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,
GHC==7.2.2,
GHC==7.4.2,
GHC==7.6.3,
GHC==7.8.4,
GHC==7.10.3,
GHC==8.0.2,
GHC==8.2.2,
GHC==8.4.4,
GHC==8.6.4,
GHC==8.8.1
extra-source-files : readme.md changelog.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:
base >= 4.3 && < 4.14,
array >= 0.3 && < 0.6,
ghc-prim < 0.6
if !impl(ghc >= 7.10)
build-depends: nats >= 1.1.2 && <1.2
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
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/Bodigrim/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:
StandaloneDeriving
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
MultiParamTypeClasses
build-depends:
base,
integer-logarithms,
tasty >= 0.10 && < 1.3,
tasty-smallcheck >= 0.8 && < 0.9,
tasty-quickcheck >= 0.8 && < 0.11,
tasty-hunit >= 0.9 && < 0.11,
QuickCheck >= 2.10 && < 2.14,
smallcheck >= 1.1.3 && < 1.2
if !impl(ghc >= 7.10)
build-depends: nats >= 1.1 && <1.2
other-modules:
Math.NumberTheory.LogarithmsTests
Math.NumberTheory.TestUtils
Orphans