From 6dd2dc675677030ecf5b7fe6eb4a7cc1f94f19ca2d156ff037b9c1b587159296 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 30 Jan 2018 09:33:21 +0000 Subject: [PATCH 1/8] osc copypac from project:devel:languages:haskell:lts:10 package:ghc-hashable revision:5, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-hashable?expand=0&rev=30 --- ghc-hashable.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-hashable.spec b/ghc-hashable.spec index c3a9bd9..92546e4 100644 --- a/ghc-hashable.spec +++ b/ghc-hashable.spec @@ -85,6 +85,6 @@ cp -p %{SOURCE1} %{pkg_name}.cabal %doc LICENSE %files devel -f %{name}-devel.files -%doc CHANGES.md README.md examples +%doc CHANGES.md README.md %changelog From 2fb5ecb8413633ad2648d69df3286b223ed27bc5765e68448a127d765d87fe68 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 13 Mar 2018 02:19:46 +0000 Subject: [PATCH 2/8] osc copypac from project:devel:languages:haskell:lts:10 package:ghc-hashable revision:6, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-hashable?expand=0&rev=31 --- ghc-hashable.changes | 6 ++ ghc-hashable.spec | 6 +- hashable-1.2.6.1.tar.gz | 3 - hashable-1.2.7.0.tar.gz | 3 + hashable.cabal | 172 ---------------------------------------- 5 files changed, 11 insertions(+), 179 deletions(-) delete mode 100644 hashable-1.2.6.1.tar.gz create mode 100644 hashable-1.2.7.0.tar.gz delete mode 100644 hashable.cabal diff --git a/ghc-hashable.changes b/ghc-hashable.changes index 2846ab5..e61172d 100644 --- a/ghc-hashable.changes +++ b/ghc-hashable.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Sun Mar 11 03:08:33 UTC 2018 - psimons@suse.com + +- Update hashable to version 1.2.7.0. + A more detailed change log is not available. + ------------------------------------------------------------------- Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com diff --git a/ghc-hashable.spec b/ghc-hashable.spec index 92546e4..ac31c22 100644 --- a/ghc-hashable.spec +++ b/ghc-hashable.spec @@ -1,7 +1,7 @@ # # spec file for package ghc-hashable # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,14 +19,13 @@ %global pkg_name hashable %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.2.6.1 +Version: 1.2.7.0 Release: 0 Summary: A class for types that can be converted to a hash value License: BSD-3-Clause 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/2.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-bytestring-devel BuildRequires: ghc-deepseq-devel @@ -61,7 +60,6 @@ This package provides the Haskell %{pkg_name} library development files. %prep %setup -q -n %{pkg_name}-%{version} -cp -p %{SOURCE1} %{pkg_name}.cabal %build %ifarch i586 diff --git a/hashable-1.2.6.1.tar.gz b/hashable-1.2.6.1.tar.gz deleted file mode 100644 index 3ef8312..0000000 --- a/hashable-1.2.6.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:94ca8789e13bc05c1582c46b709f3b0f5aeec2092be634b8606dbd9c5915bb7a -size 30305 diff --git a/hashable-1.2.7.0.tar.gz b/hashable-1.2.7.0.tar.gz new file mode 100644 index 0000000..d19aea5 --- /dev/null +++ b/hashable-1.2.7.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecb5efc0586023f5a0dc861100621c1dbb4cbb2f0516829a16ebac39f0432abf +size 30182 diff --git a/hashable.cabal b/hashable.cabal deleted file mode 100644 index 5b52648..0000000 --- a/hashable.cabal +++ /dev/null @@ -1,172 +0,0 @@ -Name: hashable -Version: 1.2.6.1 -x-revision: 2 -Synopsis: A class for types that can be converted to a hash value -Description: This package defines a class, 'Hashable', for types that - can be converted to a hash value. This class - exists for the benefit of hashing-based data - structures. The package provides instances for - basic types and a way to combine hash values. -Homepage: http://github.com/tibbe/hashable -License: BSD3 -License-file: LICENSE -Author: Milan Straka - Johan Tibell -Maintainer: johan.tibell@gmail.com -bug-reports: https://github.com/tibbe/hashable/issues -Stability: Provisional -Category: Data -Build-type: Simple -Cabal-version: >=1.8 --- tests/Properties.hs shouldn't have to go here, but the source files --- for the test-suite stanzas don't get picked up by `cabal sdist`. -Extra-source-files: - CHANGES.md, README.md, tests/Properties.hs, - benchmarks/Benchmarks.hs, benchmarks/cbits/*.c, benchmarks/cbits/*.h - -Flag integer-gmp - Description: Are we using integer-gmp to provide fast Integer instances? - Default: True - -Flag sse2 - Description: Do we want to assume that a target supports SSE 2? - Default: True - Manual: True - -Flag sse41 - Description: Do we want to assume that a target supports SSE 4.1? - Default: False - Manual: True - -Flag examples - Description: Build example modules - Default: False - Manual: True - -Library - Exposed-modules: Data.Hashable - Data.Hashable.Lifted - Other-modules: Data.Hashable.Class - Build-depends: base >= 4.4 && < 4.11, - bytestring >= 0.9 && < 0.11, - deepseq >= 1.3 - if impl(ghc) - Build-depends: ghc-prim, - text >= 0.11.0.5 - if impl(ghc) && flag(integer-gmp) - Build-depends: integer-gmp >= 0.2 - - if impl(ghc >= 7.2.1) - CPP-Options: -DGENERICS - Other-modules: Data.Hashable.Generic - - C-sources: - cbits/fnv.c - - Ghc-options: -Wall - if impl(ghc >= 6.8) - Ghc-options: -fwarn-tabs - else - c-sources: cbits/getRandomBytes.c - other-modules: Data.Hashable.RandomSource - if os(windows) - extra-libraries: advapi32 - -Test-suite tests - Type: exitcode-stdio-1.0 - Hs-source-dirs: tests - Main-is: Main.hs - Other-modules: Properties Regress - Build-depends: base >= 4.0 && < 5.0, - bytestring, - ghc-prim, - hashable, - test-framework >= 0.3.3, - test-framework-hunit, - test-framework-quickcheck2 >= 0.2.9, - HUnit, - QuickCheck >= 2.4.0.1, - random >= 1.0 && < 1.2, - text >= 0.11.0.5 - if !os(windows) - Build-depends: unix - CPP-options: -DHAVE_MMAP - Other-modules: Regress.Mmap - - Ghc-options: -Wall -fno-warn-orphans - if impl(ghc >= 7.2.1) - CPP-Options: -DGENERICS - -benchmark benchmarks - -- We cannot depend on the hashable library directly as that creates - -- a dependency cycle. - hs-source-dirs: . benchmarks - - main-is: Benchmarks.hs - other-modules: - Data.Hashable - Data.Hashable.Class - Data.Hashable.RandomSource - Data.Hashable.SipHash - type: exitcode-stdio-1.0 - - build-depends: - base, - bytestring, - criterion >= 1.0, - ghc-prim, - siphash, - text - - if impl(ghc) - Build-depends: ghc-prim, - text >= 0.11.0.5 - if impl(ghc) && flag(integer-gmp) - Build-depends: integer-gmp >= 0.2 - - if impl(ghc >= 7.2.1) - CPP-Options: -DGENERICS - - include-dirs: - benchmarks/cbits - - includes: - siphash.h - - c-sources: - benchmarks/cbits/inthash.c - benchmarks/cbits/siphash.c - benchmarks/cbits/wang.c - cbits/fnv.c - - if (arch(i386) || arch(x86_64)) && flag(sse2) - cpp-options: -DHAVE_SSE2 - c-sources: - benchmarks/cbits/siphash-sse2.c - - if flag(sse41) - cpp-options: -DHAVE_SSE41 - c-sources: - benchmarks/cbits/siphash-sse41.c - - Ghc-options: -Wall -O2 - if impl(ghc >= 6.8) - Ghc-options: -fwarn-tabs - else - c-sources: cbits/getRandomBytes.c - other-modules: Data.Hashable.RandomSource - if os(windows) - extra-libraries: advapi32 - - -Executable hashable-examples - if flag(examples) - build-depends: base, hashable - else - buildable: False - hs-source-dirs: examples - main-is: Main.hs - -source-repository head - type: git - location: https://github.com/tibbe/hashable.git From 248d45aba631b05992fd7c38831f8382d5f5f5870d8c7fce60ff0441fe8f4c5d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 2 Apr 2018 14:56:17 +0000 Subject: [PATCH 3/8] osc copypac from project:devel:languages:haskell:lts:11 package:ghc-hashable revision:3, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-hashable?expand=0&rev=32 --- ghc-hashable.changes | 94 +------------------------------------------- 1 file changed, 1 insertion(+), 93 deletions(-) diff --git a/ghc-hashable.changes b/ghc-hashable.changes index e61172d..b51369e 100644 --- a/ghc-hashable.changes +++ b/ghc-hashable.changes @@ -1,98 +1,6 @@ ------------------------------------------------------------------- -Sun Mar 11 03:08:33 UTC 2018 - psimons@suse.com +Wed Mar 14 16:57:44 UTC 2018 - psimons@suse.com - Update hashable to version 1.2.7.0. A more detailed change log is not available. -------------------------------------------------------------------- -Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com - -- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. - -------------------------------------------------------------------- -Sat Jul 8 03:02:09 UTC 2017 - psimons@suse.com - -- Update to version 1.2.6.1 revision 2. - -------------------------------------------------------------------- -Sun Jun 25 18:41:41 UTC 2017 - psimons@suse.com - -- Update to version 1.2.6.1 revision 1. - -------------------------------------------------------------------- -Mon Mar 27 12:41:05 UTC 2017 - psimons@suse.com - -- Update to version 1.2.6.0 revision 1 with cabal2obs. - -------------------------------------------------------------------- -Sun Feb 12 14:20:09 UTC 2017 - psimons@suse.com - -- Update to version 1.2.5.0 with cabal2obs. - -------------------------------------------------------------------- -Sun Jul 10 17:08:32 UTC 2016 - psimons@suse.com - -- Update to version 1.2.4.0 revision 0 with cabal2obs. - -------------------------------------------------------------------- -Sun Jan 17 10:13:24 UTC 2016 - mimi.vx@gmail.com - -- update to 1.2.4.0 -* Add instances for: Unique, Version, Fixed, NonEmpty, Min, Max, Arg, - First, Last, WrappedMonoid, Option - -------------------------------------------------------------------- -Sun Jun 28 16:43:54 UTC 2015 - mimi.vx@gmail.com - -- update to 1.2.3.3 -* Support integer-simple. - -------------------------------------------------------------------- -Sun Apr 12 18:40:00 UTC 2015 - mimi.vx@gmail.com - -- update to 1.2.3.2 -+ disable SSE2 on i586 arch -* Add support for GHC 7.10 typeRepFingerprint -* Added support for random 1.1.*. -* Silence integer literal overflow warning -* Add support for GHC 7.10 `integer-gmp2` & `Natural` -* Add instance for Data.Void -* Make the SSE .cabal flags manual -* Add an upper bound on bytestring - -------------------------------------------------------------------- -Tue Sep 9 20:29:11 UTC 2014 - peter.trommler@ohm-hochschule.de - -- update to 1.2.2.0 -* several performance fixes including use of SSE and SSE2 -* Haskell Platform 2014.2.0.0 - -------------------------------------------------------------------- -Tue Sep 2 08:58:18 UTC 2014 - peter.trommler@ohm-hochschule.de - -- regenerate spec file - -------------------------------------------------------------------- -Sat Aug 23 00:11:47 UTC 2014 - peter.trommler@ohm-hochschule.de - -- enable PowerPC builds - -------------------------------------------------------------------- -Mon May 6 14:55:41 UTC 2013 - peter.trommler@ohm-hochschule.de - -- update to 1.1.2.5 from upstream -* changelog not updated since 1.1.1.0 -- version required for Haskell Platform 2013.2 -- more transparent packaging (fewer macros) - -------------------------------------------------------------------- -Thu Jun 7 19:07:50 UTC 2012 - herbert@graeber-clan.de - -- update to version 1.1.2.3 - spec file template generated by cabal2spec-0.25.5 - -------------------------------------------------------------------- -Sun Feb 5 16:47:19 UTC 2012 - herbert@graeber-clan.de - -- Initial package - From 8f9b7e569358b32af200f8f29a5d4783be33baaa91b89822e55d7dc2a78cebe7 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 13 Apr 2018 13:41:45 +0000 Subject: [PATCH 4/8] osc copypac from project:devel:languages:haskell:lts:11 package:ghc-hashable revision:5, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-hashable?expand=0&rev=33 --- ghc-hashable.changes | 94 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 93 insertions(+), 1 deletion(-) diff --git a/ghc-hashable.changes b/ghc-hashable.changes index b51369e..b608ca3 100644 --- a/ghc-hashable.changes +++ b/ghc-hashable.changes @@ -1,6 +1,98 @@ ------------------------------------------------------------------- -Wed Mar 14 16:57:44 UTC 2018 - psimons@suse.com +Thu Apr 12 08:31:46 UTC 2018 - psimons@suse.com - Update hashable to version 1.2.7.0. A more detailed change log is not available. +------------------------------------------------------------------- +Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com + +- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. + +------------------------------------------------------------------- +Sat Jul 8 03:02:09 UTC 2017 - psimons@suse.com + +- Update to version 1.2.6.1 revision 2. + +------------------------------------------------------------------- +Sun Jun 25 18:41:41 UTC 2017 - psimons@suse.com + +- Update to version 1.2.6.1 revision 1. + +------------------------------------------------------------------- +Mon Mar 27 12:41:05 UTC 2017 - psimons@suse.com + +- Update to version 1.2.6.0 revision 1 with cabal2obs. + +------------------------------------------------------------------- +Sun Feb 12 14:20:09 UTC 2017 - psimons@suse.com + +- Update to version 1.2.5.0 with cabal2obs. + +------------------------------------------------------------------- +Sun Jul 10 17:08:32 UTC 2016 - psimons@suse.com + +- Update to version 1.2.4.0 revision 0 with cabal2obs. + +------------------------------------------------------------------- +Sun Jan 17 10:13:24 UTC 2016 - mimi.vx@gmail.com + +- update to 1.2.4.0 +* Add instances for: Unique, Version, Fixed, NonEmpty, Min, Max, Arg, + First, Last, WrappedMonoid, Option + +------------------------------------------------------------------- +Sun Jun 28 16:43:54 UTC 2015 - mimi.vx@gmail.com + +- update to 1.2.3.3 +* Support integer-simple. + +------------------------------------------------------------------- +Sun Apr 12 18:40:00 UTC 2015 - mimi.vx@gmail.com + +- update to 1.2.3.2 ++ disable SSE2 on i586 arch +* Add support for GHC 7.10 typeRepFingerprint +* Added support for random 1.1.*. +* Silence integer literal overflow warning +* Add support for GHC 7.10 `integer-gmp2` & `Natural` +* Add instance for Data.Void +* Make the SSE .cabal flags manual +* Add an upper bound on bytestring + +------------------------------------------------------------------- +Tue Sep 9 20:29:11 UTC 2014 - peter.trommler@ohm-hochschule.de + +- update to 1.2.2.0 +* several performance fixes including use of SSE and SSE2 +* Haskell Platform 2014.2.0.0 + +------------------------------------------------------------------- +Tue Sep 2 08:58:18 UTC 2014 - peter.trommler@ohm-hochschule.de + +- regenerate spec file + +------------------------------------------------------------------- +Sat Aug 23 00:11:47 UTC 2014 - peter.trommler@ohm-hochschule.de + +- enable PowerPC builds + +------------------------------------------------------------------- +Mon May 6 14:55:41 UTC 2013 - peter.trommler@ohm-hochschule.de + +- update to 1.1.2.5 from upstream +* changelog not updated since 1.1.1.0 +- version required for Haskell Platform 2013.2 +- more transparent packaging (fewer macros) + +------------------------------------------------------------------- +Thu Jun 7 19:07:50 UTC 2012 - herbert@graeber-clan.de + +- update to version 1.1.2.3 + spec file template generated by cabal2spec-0.25.5 + +------------------------------------------------------------------- +Sun Feb 5 16:47:19 UTC 2012 - herbert@graeber-clan.de + +- Initial package + From 6d0db6da373aeff7c57805b2f1df5780024d977c297ebd166e71bbe8d5a44ba5 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 26 Apr 2018 07:24:41 +0000 Subject: [PATCH 5/8] osc copypac from project:devel:languages:haskell:lts:11 package:ghc-hashable revision:6, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-hashable?expand=0&rev=34 --- ghc-hashable.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-hashable.spec b/ghc-hashable.spec index ac31c22..ef178ec 100644 --- a/ghc-hashable.spec +++ b/ghc-hashable.spec @@ -80,7 +80,7 @@ This package provides the Haskell %{pkg_name} library development files. %ghc_pkg_recache %files -f %{name}.files -%doc LICENSE +%license LICENSE %files devel -f %{name}-devel.files %doc CHANGES.md README.md From 191a1a91b01f011aadad05dc23ed73268ae4f5ee98f804d656ca63974f27b8b4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 14 May 2018 13:17:03 +0000 Subject: [PATCH 6/8] osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-hashable revision:1, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-hashable?expand=0&rev=35 --- ghc-hashable.changes | 98 -------------------------------------------- 1 file changed, 98 deletions(-) delete mode 100644 ghc-hashable.changes diff --git a/ghc-hashable.changes b/ghc-hashable.changes deleted file mode 100644 index b608ca3..0000000 --- a/ghc-hashable.changes +++ /dev/null @@ -1,98 +0,0 @@ -------------------------------------------------------------------- -Thu Apr 12 08:31:46 UTC 2018 - psimons@suse.com - -- Update hashable to version 1.2.7.0. - A more detailed change log is not available. - -------------------------------------------------------------------- -Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com - -- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. - -------------------------------------------------------------------- -Sat Jul 8 03:02:09 UTC 2017 - psimons@suse.com - -- Update to version 1.2.6.1 revision 2. - -------------------------------------------------------------------- -Sun Jun 25 18:41:41 UTC 2017 - psimons@suse.com - -- Update to version 1.2.6.1 revision 1. - -------------------------------------------------------------------- -Mon Mar 27 12:41:05 UTC 2017 - psimons@suse.com - -- Update to version 1.2.6.0 revision 1 with cabal2obs. - -------------------------------------------------------------------- -Sun Feb 12 14:20:09 UTC 2017 - psimons@suse.com - -- Update to version 1.2.5.0 with cabal2obs. - -------------------------------------------------------------------- -Sun Jul 10 17:08:32 UTC 2016 - psimons@suse.com - -- Update to version 1.2.4.0 revision 0 with cabal2obs. - -------------------------------------------------------------------- -Sun Jan 17 10:13:24 UTC 2016 - mimi.vx@gmail.com - -- update to 1.2.4.0 -* Add instances for: Unique, Version, Fixed, NonEmpty, Min, Max, Arg, - First, Last, WrappedMonoid, Option - -------------------------------------------------------------------- -Sun Jun 28 16:43:54 UTC 2015 - mimi.vx@gmail.com - -- update to 1.2.3.3 -* Support integer-simple. - -------------------------------------------------------------------- -Sun Apr 12 18:40:00 UTC 2015 - mimi.vx@gmail.com - -- update to 1.2.3.2 -+ disable SSE2 on i586 arch -* Add support for GHC 7.10 typeRepFingerprint -* Added support for random 1.1.*. -* Silence integer literal overflow warning -* Add support for GHC 7.10 `integer-gmp2` & `Natural` -* Add instance for Data.Void -* Make the SSE .cabal flags manual -* Add an upper bound on bytestring - -------------------------------------------------------------------- -Tue Sep 9 20:29:11 UTC 2014 - peter.trommler@ohm-hochschule.de - -- update to 1.2.2.0 -* several performance fixes including use of SSE and SSE2 -* Haskell Platform 2014.2.0.0 - -------------------------------------------------------------------- -Tue Sep 2 08:58:18 UTC 2014 - peter.trommler@ohm-hochschule.de - -- regenerate spec file - -------------------------------------------------------------------- -Sat Aug 23 00:11:47 UTC 2014 - peter.trommler@ohm-hochschule.de - -- enable PowerPC builds - -------------------------------------------------------------------- -Mon May 6 14:55:41 UTC 2013 - peter.trommler@ohm-hochschule.de - -- update to 1.1.2.5 from upstream -* changelog not updated since 1.1.1.0 -- version required for Haskell Platform 2013.2 -- more transparent packaging (fewer macros) - -------------------------------------------------------------------- -Thu Jun 7 19:07:50 UTC 2012 - herbert@graeber-clan.de - -- update to version 1.1.2.3 - spec file template generated by cabal2spec-0.25.5 - -------------------------------------------------------------------- -Sun Feb 5 16:47:19 UTC 2012 - herbert@graeber-clan.de - -- Initial package - From 9b50c59ee9a88302838599dd9a64bbbc240d412d1fa93e378f51f86f14a306f7 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 14 May 2018 15:20:31 +0000 Subject: [PATCH 7/8] osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-hashable revision:2, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-hashable?expand=0&rev=36 --- ghc-hashable.changes | 92 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 ghc-hashable.changes diff --git a/ghc-hashable.changes b/ghc-hashable.changes new file mode 100644 index 0000000..2846ab5 --- /dev/null +++ b/ghc-hashable.changes @@ -0,0 +1,92 @@ +------------------------------------------------------------------- +Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com + +- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. + +------------------------------------------------------------------- +Sat Jul 8 03:02:09 UTC 2017 - psimons@suse.com + +- Update to version 1.2.6.1 revision 2. + +------------------------------------------------------------------- +Sun Jun 25 18:41:41 UTC 2017 - psimons@suse.com + +- Update to version 1.2.6.1 revision 1. + +------------------------------------------------------------------- +Mon Mar 27 12:41:05 UTC 2017 - psimons@suse.com + +- Update to version 1.2.6.0 revision 1 with cabal2obs. + +------------------------------------------------------------------- +Sun Feb 12 14:20:09 UTC 2017 - psimons@suse.com + +- Update to version 1.2.5.0 with cabal2obs. + +------------------------------------------------------------------- +Sun Jul 10 17:08:32 UTC 2016 - psimons@suse.com + +- Update to version 1.2.4.0 revision 0 with cabal2obs. + +------------------------------------------------------------------- +Sun Jan 17 10:13:24 UTC 2016 - mimi.vx@gmail.com + +- update to 1.2.4.0 +* Add instances for: Unique, Version, Fixed, NonEmpty, Min, Max, Arg, + First, Last, WrappedMonoid, Option + +------------------------------------------------------------------- +Sun Jun 28 16:43:54 UTC 2015 - mimi.vx@gmail.com + +- update to 1.2.3.3 +* Support integer-simple. + +------------------------------------------------------------------- +Sun Apr 12 18:40:00 UTC 2015 - mimi.vx@gmail.com + +- update to 1.2.3.2 ++ disable SSE2 on i586 arch +* Add support for GHC 7.10 typeRepFingerprint +* Added support for random 1.1.*. +* Silence integer literal overflow warning +* Add support for GHC 7.10 `integer-gmp2` & `Natural` +* Add instance for Data.Void +* Make the SSE .cabal flags manual +* Add an upper bound on bytestring + +------------------------------------------------------------------- +Tue Sep 9 20:29:11 UTC 2014 - peter.trommler@ohm-hochschule.de + +- update to 1.2.2.0 +* several performance fixes including use of SSE and SSE2 +* Haskell Platform 2014.2.0.0 + +------------------------------------------------------------------- +Tue Sep 2 08:58:18 UTC 2014 - peter.trommler@ohm-hochschule.de + +- regenerate spec file + +------------------------------------------------------------------- +Sat Aug 23 00:11:47 UTC 2014 - peter.trommler@ohm-hochschule.de + +- enable PowerPC builds + +------------------------------------------------------------------- +Mon May 6 14:55:41 UTC 2013 - peter.trommler@ohm-hochschule.de + +- update to 1.1.2.5 from upstream +* changelog not updated since 1.1.1.0 +- version required for Haskell Platform 2013.2 +- more transparent packaging (fewer macros) + +------------------------------------------------------------------- +Thu Jun 7 19:07:50 UTC 2012 - herbert@graeber-clan.de + +- update to version 1.1.2.3 + spec file template generated by cabal2spec-0.25.5 + +------------------------------------------------------------------- +Sun Feb 5 16:47:19 UTC 2012 - herbert@graeber-clan.de + +- Initial package + From bd555d96a14af96aa29fc0682ca887b4799fc782dbee5fe6528b7a5251bcb871 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 15 May 2018 18:23:54 +0000 Subject: [PATCH 8/8] osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-hashable revision:3, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-hashable?expand=0&rev=37 --- ghc-hashable.changes | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ghc-hashable.changes b/ghc-hashable.changes index 2846ab5..6e5d9aa 100644 --- a/ghc-hashable.changes +++ b/ghc-hashable.changes @@ -1,3 +1,17 @@ +------------------------------------------------------------------- +Mon May 14 17:02:11 UTC 2018 - psimons@suse.com + +- Update hashable to version 1.2.7.0. + + * Add `Hashable` and `Hashable1` instances for `Complex` + + * Fix undefined behavior in `hashable_fn_hash()` implementation + due to signed integer overflow (#152) + + * Mark `Data.Hashable.Lifted` as `Trustworthy` (re SafeHaskell) + + * Support GHC 8.4 + ------------------------------------------------------------------- Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com