From 26221f28c00b0296990dee045b312183afd7d57d7c85c1fca0d29a0a3069b3b5 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 12 Jan 2018 20:55:49 +0000 Subject: [PATCH 1/8] osc copypac from project:devel:languages:haskell:lts:10 package:ghc-case-insensitive revision:4, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-case-insensitive?expand=0&rev=29 --- case-insensitive.cabal | 74 +++++++++++++++++++++++++++++++++++++++ ghc-case-insensitive.spec | 2 ++ 2 files changed, 76 insertions(+) create mode 100644 case-insensitive.cabal diff --git a/case-insensitive.cabal b/case-insensitive.cabal new file mode 100644 index 0000000..26c79b1 --- /dev/null +++ b/case-insensitive.cabal @@ -0,0 +1,74 @@ +name: case-insensitive +version: 1.2.0.10 +x-revision: 1 +cabal-version: >=1.8 +build-type: Simple +license: BSD3 +license-file: LICENSE +copyright: 2011 Bas van Dijk +author: Bas van Dijk +maintainer: Bas van Dijk +homepage: https://github.com/basvandijk/case-insensitive +bug-reports: https://github.com/basvandijk/case-insensitive/issues +category: Data, Text +synopsis: Case insensitive string comparison +description: The module @Data.CaseInsensitive@ provides the 'CI' type + constructor which can be parameterised by a string-like + type like: 'String', 'ByteString', 'Text', + etc.. Comparisons of values of the resulting type will be + insensitive to cases. +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.1 + +extra-source-files: README.markdown CHANGELOG pg2189.txt + +source-repository head + Type: git + Location: git://github.com/basvandijk/case-insensitive.git + +Library + ghc-options: -Wall + build-depends: base >= 3 && < 4.11 + , bytestring >= 0.9 && < 0.11 + , text >= 0.3 && < 1.3 + , deepseq >= 1.1 && < 1.5 + , hashable >= 1.0 && < 1.3 + if !impl(ghc >= 8.0) + build-depends: semigroups >= 0.18 && < 0.19 + exposed-modules: Data.CaseInsensitive, Data.CaseInsensitive.Unsafe + other-modules: Data.CaseInsensitive.Internal + +test-suite test-case-insensitive + type: exitcode-stdio-1.0 + main-is: test.hs + hs-source-dirs: test + + build-depends: case-insensitive + , base >= 3 && < 4.11 + , bytestring >= 0.9 && < 0.11 + , text >= 0.3 && < 1.3 + , HUnit >= 1.2.2 && < 1.6 + , test-framework >= 0.2.4 && < 0.9 + , test-framework-hunit >= 0.2.4 && < 0.4 + + ghc-options: -Wall + +benchmark bench-case-insensitive + type: exitcode-stdio-1.0 + main-is: bench.hs + other-modules: NoClass + hs-source-dirs: bench + + ghc-options: -Wall -O2 + + build-depends: case-insensitive + , base >= 3 && < 4.11 + , bytestring >= 0.9 && < 0.11 + , criterion >= 0.6.1 && < 1.4 + , deepseq >= 1.1 && < 1.5 diff --git a/ghc-case-insensitive.spec b/ghc-case-insensitive.spec index 871908d..051c303 100644 --- a/ghc-case-insensitive.spec +++ b/ghc-case-insensitive.spec @@ -26,6 +26,7 @@ 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/1.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-bytestring-devel BuildRequires: ghc-deepseq-devel @@ -57,6 +58,7 @@ files. %prep %setup -q -n %{pkg_name}-%{version} +cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build From e0705bcd0532c0584766c607cf38b6e136439117869eced3b4cc486ab3870890 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 1 Mar 2018 02:16:49 +0000 Subject: [PATCH 2/8] osc copypac from project:devel:languages:haskell:lts:10 package:ghc-case-insensitive revision:5, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-case-insensitive?expand=0&rev=30 --- case-insensitive.cabal | 10 +++++----- ghc-case-insensitive.spec | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/case-insensitive.cabal b/case-insensitive.cabal index 26c79b1..ce1537f 100644 --- a/case-insensitive.cabal +++ b/case-insensitive.cabal @@ -1,6 +1,6 @@ name: case-insensitive version: 1.2.0.10 -x-revision: 1 +x-revision: 2 cabal-version: >=1.8 build-type: Simple license: BSD3 @@ -34,7 +34,7 @@ source-repository head Library ghc-options: -Wall - build-depends: base >= 3 && < 4.11 + build-depends: base >= 3 && < 4.12 , bytestring >= 0.9 && < 0.11 , text >= 0.3 && < 1.3 , deepseq >= 1.1 && < 1.5 @@ -50,10 +50,10 @@ test-suite test-case-insensitive hs-source-dirs: test build-depends: case-insensitive - , base >= 3 && < 4.11 + , base >= 3 && < 4.12 , bytestring >= 0.9 && < 0.11 , text >= 0.3 && < 1.3 - , HUnit >= 1.2.2 && < 1.6 + , HUnit >= 1.2.2 && < 1.7 , test-framework >= 0.2.4 && < 0.9 , test-framework-hunit >= 0.2.4 && < 0.4 @@ -68,7 +68,7 @@ benchmark bench-case-insensitive ghc-options: -Wall -O2 build-depends: case-insensitive - , base >= 3 && < 4.11 + , base >= 3 && < 4.12 , bytestring >= 0.9 && < 0.11 , criterion >= 0.6.1 && < 1.4 , deepseq >= 1.1 && < 1.5 diff --git a/ghc-case-insensitive.spec b/ghc-case-insensitive.spec index 051c303..3191ab2 100644 --- a/ghc-case-insensitive.spec +++ b/ghc-case-insensitive.spec @@ -26,7 +26,7 @@ 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/1.cabal#/%{pkg_name}.cabal +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 From a4780380ca2885c43c58657d6e48b73614ab7e150ee2ffeef714f4da3190a4ab Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 2 Apr 2018 14:52:40 +0000 Subject: [PATCH 3/8] osc copypac from project:devel:languages:haskell:lts:11 package:ghc-case-insensitive revision:4, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-case-insensitive?expand=0&rev=31 --- case-insensitive-1.2.0.10.tar.gz | 3 - case-insensitive-1.2.0.11.tar.gz | 3 + case-insensitive.cabal | 74 ----------------------- ghc-case-insensitive.changes | 100 ++----------------------------- ghc-case-insensitive.spec | 6 +- 5 files changed, 11 insertions(+), 175 deletions(-) delete mode 100644 case-insensitive-1.2.0.10.tar.gz create mode 100644 case-insensitive-1.2.0.11.tar.gz delete mode 100644 case-insensitive.cabal diff --git a/case-insensitive-1.2.0.10.tar.gz b/case-insensitive-1.2.0.10.tar.gz deleted file mode 100644 index 3bdf8e7..0000000 --- a/case-insensitive-1.2.0.10.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:66321c40fffb35f3a3188ba508753b74aada53fb51c822a9752614b03765306c -size 53630 diff --git a/case-insensitive-1.2.0.11.tar.gz b/case-insensitive-1.2.0.11.tar.gz new file mode 100644 index 0000000..162eeb6 --- /dev/null +++ b/case-insensitive-1.2.0.11.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ce6d17e50caaa0f19ad8e67361499022860554c521b1e57993759da3eb37e3 +size 53581 diff --git a/case-insensitive.cabal b/case-insensitive.cabal deleted file mode 100644 index ce1537f..0000000 --- a/case-insensitive.cabal +++ /dev/null @@ -1,74 +0,0 @@ -name: case-insensitive -version: 1.2.0.10 -x-revision: 2 -cabal-version: >=1.8 -build-type: Simple -license: BSD3 -license-file: LICENSE -copyright: 2011 Bas van Dijk -author: Bas van Dijk -maintainer: Bas van Dijk -homepage: https://github.com/basvandijk/case-insensitive -bug-reports: https://github.com/basvandijk/case-insensitive/issues -category: Data, Text -synopsis: Case insensitive string comparison -description: The module @Data.CaseInsensitive@ provides the 'CI' type - constructor which can be parameterised by a string-like - type like: 'String', 'ByteString', 'Text', - etc.. Comparisons of values of the resulting type will be - insensitive to cases. -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.1 - -extra-source-files: README.markdown CHANGELOG pg2189.txt - -source-repository head - Type: git - Location: git://github.com/basvandijk/case-insensitive.git - -Library - ghc-options: -Wall - build-depends: base >= 3 && < 4.12 - , bytestring >= 0.9 && < 0.11 - , text >= 0.3 && < 1.3 - , deepseq >= 1.1 && < 1.5 - , hashable >= 1.0 && < 1.3 - if !impl(ghc >= 8.0) - build-depends: semigroups >= 0.18 && < 0.19 - exposed-modules: Data.CaseInsensitive, Data.CaseInsensitive.Unsafe - other-modules: Data.CaseInsensitive.Internal - -test-suite test-case-insensitive - type: exitcode-stdio-1.0 - main-is: test.hs - hs-source-dirs: test - - build-depends: case-insensitive - , base >= 3 && < 4.12 - , bytestring >= 0.9 && < 0.11 - , text >= 0.3 && < 1.3 - , HUnit >= 1.2.2 && < 1.7 - , test-framework >= 0.2.4 && < 0.9 - , test-framework-hunit >= 0.2.4 && < 0.4 - - ghc-options: -Wall - -benchmark bench-case-insensitive - type: exitcode-stdio-1.0 - main-is: bench.hs - other-modules: NoClass - hs-source-dirs: bench - - ghc-options: -Wall -O2 - - build-depends: case-insensitive - , base >= 3 && < 4.12 - , bytestring >= 0.9 && < 0.11 - , criterion >= 0.6.1 && < 1.4 - , deepseq >= 1.1 && < 1.5 diff --git a/ghc-case-insensitive.changes b/ghc-case-insensitive.changes index a5a87f1..52ae1c0 100644 --- a/ghc-case-insensitive.changes +++ b/ghc-case-insensitive.changes @@ -1,100 +1,12 @@ ------------------------------------------------------------------- -Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com +Mon Mar 19 11:32:41 UTC 2018 - psimons@suse.com -- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. +- Update case-insensitive to version 1.2.0.11. + A more detailed change log is not available. ------------------------------------------------------------------- -Wed May 31 14:01:06 UTC 2017 - psimons@suse.com +Wed Mar 14 16:55:55 UTC 2018 - psimons@suse.com -- Update to version 1.2.0.10. - -------------------------------------------------------------------- -Mon Apr 24 12:26:22 UTC 2017 - psimons@suse.com - -- Update to version 1.2.0.9 with cabal2obs. - -------------------------------------------------------------------- -Mon Feb 20 08:42:19 UTC 2017 - psimons@suse.com - -- Update to version 1.2.0.8 with cabal2obs. - -------------------------------------------------------------------- -Mon Jul 25 11:21:37 UTC 2016 - psimons@suse.com - -- Update to version 1.2.0.7 revision 0 with cabal2obs. - -------------------------------------------------------------------- -Sun Jul 10 17:08:41 UTC 2016 - psimons@suse.com - -- Update to version 1.2.0.6 revision 0 with cabal2obs. - -------------------------------------------------------------------- -Wed Mar 16 09:12:05 UTC 2016 - mimi.vx@gmail.com - -- update to 1.2.0.6 -* Add Semigroup s => Semigroup (CI s) instance - -------------------------------------------------------------------- -Sun Oct 4 16:29:15 UTC 2015 - mimi.vx@gmail.com - -- update to 1.2.0.5 -* Support HUnit-1.3 -* Support criterion-1.1 - -------------------------------------------------------------------- -Mon Apr 13 08:05:41 UTC 2015 - mimi.vx@gmail.com - -- update to 1.2.0.4 -* Fixed #17: https://github.com/basvandijk/case-insensitive/issues/17 -* Bump base and deepseq upper bounds for GHC 7.10 compatibility -* Add case-insensitive.nix and default.nix -* Fix #14: Build failure with GHC 7.2.2 -* Fix #8: Don't unnecessarily use NoImplicitPrelude -* Solved warnings on GHC-7.8.3 -* Bump text upper version bounds -* Derived a Data instance for CI - -------------------------------------------------------------------- -Tue Sep 9 20:24:56 UTC 2014 - peter.trommler@ohm-hochschule.de - -- update to 1.1.0.3 -* no changelog -* for Haskell Platform 2014.2.0.0 - -------------------------------------------------------------------- -Tue Sep 2 08:52:04 UTC 2014 - peter.trommler@ohm-hochschule.de - -- regenerate spec file - -------------------------------------------------------------------- -Sat Aug 23 00:08:45 UTC 2014 - peter.trommler@ohm-hochschule.de - -- enable PowerPC builds - -------------------------------------------------------------------- -Tue May 7 14:17:19 UTC 2013 - peter.trommler@ohm-hochschule.de - -- update to 1.0.0.1 from upstream -* modifications requested for Haskell Platform -* support for hashable 1.2 -* improved performance for byte strings -- part of Haskell Platform 2013.2 -- more transparent packaging (fewer macros) - -------------------------------------------------------------------- -Sat Jun 9 10:26:44 UTC 2012 - peter.trommler@ohm-hochschule.de - -- packaged LICENSE file -- added copyright notice -- dropped rpmlintrc - -------------------------------------------------------------------- -Fri Mar 30 16:03:36 UTC 2012 - peter.trommler@ohm-hochschule.de - -- Fixed typo in BR. - -------------------------------------------------------------------- -Fri Mar 30 14:59:03 UTC 2012 - peter.trommler@ohm-hochschule.de - -- Initial packaging. +- Update case-insensitive to version 1.2.0.10 revision 2. + A more detailed change log is not available. diff --git a/ghc-case-insensitive.spec b/ghc-case-insensitive.spec index 3191ab2..7af8332 100644 --- a/ghc-case-insensitive.spec +++ b/ghc-case-insensitive.spec @@ -1,7 +1,7 @@ # # spec file for package ghc-case-insensitive # -# 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 case-insensitive %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.2.0.10 +Version: 1.2.0.11 Release: 0 Summary: Case insensitive string comparison 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 @@ -58,7 +57,6 @@ files. %prep %setup -q -n %{pkg_name}-%{version} -cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build From 0acb91ddf7ff91a2229b2ce070b014d86853c8932eb123d695e60e0490574adf Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 13 Apr 2018 13:32:17 +0000 Subject: [PATCH 4/8] osc copypac from project:devel:languages:haskell:lts:11 package:ghc-case-insensitive revision:6, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-case-insensitive?expand=0&rev=32 --- ghc-case-insensitive.changes | 102 +++++++++++++++++++++++++++++++++-- 1 file changed, 98 insertions(+), 4 deletions(-) diff --git a/ghc-case-insensitive.changes b/ghc-case-insensitive.changes index 52ae1c0..c01aded 100644 --- a/ghc-case-insensitive.changes +++ b/ghc-case-insensitive.changes @@ -1,12 +1,106 @@ ------------------------------------------------------------------- -Mon Mar 19 11:32:41 UTC 2018 - psimons@suse.com +Thu Apr 12 08:31:43 UTC 2018 - psimons@suse.com - Update case-insensitive to version 1.2.0.11. A more detailed change log is not available. ------------------------------------------------------------------- -Wed Mar 14 16:55:55 UTC 2018 - psimons@suse.com +Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com -- Update case-insensitive to version 1.2.0.10 revision 2. - A more detailed change log is not available. +- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. + +------------------------------------------------------------------- +Wed May 31 14:01:06 UTC 2017 - psimons@suse.com + +- Update to version 1.2.0.10. + +------------------------------------------------------------------- +Mon Apr 24 12:26:22 UTC 2017 - psimons@suse.com + +- Update to version 1.2.0.9 with cabal2obs. + +------------------------------------------------------------------- +Mon Feb 20 08:42:19 UTC 2017 - psimons@suse.com + +- Update to version 1.2.0.8 with cabal2obs. + +------------------------------------------------------------------- +Mon Jul 25 11:21:37 UTC 2016 - psimons@suse.com + +- Update to version 1.2.0.7 revision 0 with cabal2obs. + +------------------------------------------------------------------- +Sun Jul 10 17:08:41 UTC 2016 - psimons@suse.com + +- Update to version 1.2.0.6 revision 0 with cabal2obs. + +------------------------------------------------------------------- +Wed Mar 16 09:12:05 UTC 2016 - mimi.vx@gmail.com + +- update to 1.2.0.6 +* Add Semigroup s => Semigroup (CI s) instance + +------------------------------------------------------------------- +Sun Oct 4 16:29:15 UTC 2015 - mimi.vx@gmail.com + +- update to 1.2.0.5 +* Support HUnit-1.3 +* Support criterion-1.1 + +------------------------------------------------------------------- +Mon Apr 13 08:05:41 UTC 2015 - mimi.vx@gmail.com + +- update to 1.2.0.4 +* Fixed #17: https://github.com/basvandijk/case-insensitive/issues/17 +* Bump base and deepseq upper bounds for GHC 7.10 compatibility +* Add case-insensitive.nix and default.nix +* Fix #14: Build failure with GHC 7.2.2 +* Fix #8: Don't unnecessarily use NoImplicitPrelude +* Solved warnings on GHC-7.8.3 +* Bump text upper version bounds +* Derived a Data instance for CI + +------------------------------------------------------------------- +Tue Sep 9 20:24:56 UTC 2014 - peter.trommler@ohm-hochschule.de + +- update to 1.1.0.3 +* no changelog +* for Haskell Platform 2014.2.0.0 + +------------------------------------------------------------------- +Tue Sep 2 08:52:04 UTC 2014 - peter.trommler@ohm-hochschule.de + +- regenerate spec file + +------------------------------------------------------------------- +Sat Aug 23 00:08:45 UTC 2014 - peter.trommler@ohm-hochschule.de + +- enable PowerPC builds + +------------------------------------------------------------------- +Tue May 7 14:17:19 UTC 2013 - peter.trommler@ohm-hochschule.de + +- update to 1.0.0.1 from upstream +* modifications requested for Haskell Platform +* support for hashable 1.2 +* improved performance for byte strings +- part of Haskell Platform 2013.2 +- more transparent packaging (fewer macros) + +------------------------------------------------------------------- +Sat Jun 9 10:26:44 UTC 2012 - peter.trommler@ohm-hochschule.de + +- packaged LICENSE file +- added copyright notice +- dropped rpmlintrc + +------------------------------------------------------------------- +Fri Mar 30 16:03:36 UTC 2012 - peter.trommler@ohm-hochschule.de + +- Fixed typo in BR. + +------------------------------------------------------------------- +Fri Mar 30 14:59:03 UTC 2012 - peter.trommler@ohm-hochschule.de + +- Initial packaging. From 31274ef90955dcd2f886f457f7b7fbc36036166b91356f038a4de49cd9157349 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 26 Apr 2018 07:14:51 +0000 Subject: [PATCH 5/8] osc copypac from project:devel:languages:haskell:lts:11 package:ghc-case-insensitive revision:7, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-case-insensitive?expand=0&rev=33 --- ghc-case-insensitive.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-case-insensitive.spec b/ghc-case-insensitive.spec index 7af8332..e1281a8 100644 --- a/ghc-case-insensitive.spec +++ b/ghc-case-insensitive.spec @@ -74,7 +74,7 @@ files. %ghc_pkg_recache %files -f %{name}.files -%doc LICENSE +%license LICENSE %files devel -f %{name}-devel.files %doc CHANGELOG README.markdown From 7951e4a1d8cd34dff1017f75e5f1c30acd9afd8416f93e2f6890e2bb0f6f09bc Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 14 May 2018 13:15:53 +0000 Subject: [PATCH 6/8] osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-case-insensitive revision:1, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-case-insensitive?expand=0&rev=34 --- ghc-case-insensitive.changes | 106 ----------------------------------- 1 file changed, 106 deletions(-) delete mode 100644 ghc-case-insensitive.changes diff --git a/ghc-case-insensitive.changes b/ghc-case-insensitive.changes deleted file mode 100644 index c01aded..0000000 --- a/ghc-case-insensitive.changes +++ /dev/null @@ -1,106 +0,0 @@ -------------------------------------------------------------------- -Thu Apr 12 08:31:43 UTC 2018 - psimons@suse.com - -- Update case-insensitive to version 1.2.0.11. - 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. - -------------------------------------------------------------------- -Wed May 31 14:01:06 UTC 2017 - psimons@suse.com - -- Update to version 1.2.0.10. - -------------------------------------------------------------------- -Mon Apr 24 12:26:22 UTC 2017 - psimons@suse.com - -- Update to version 1.2.0.9 with cabal2obs. - -------------------------------------------------------------------- -Mon Feb 20 08:42:19 UTC 2017 - psimons@suse.com - -- Update to version 1.2.0.8 with cabal2obs. - -------------------------------------------------------------------- -Mon Jul 25 11:21:37 UTC 2016 - psimons@suse.com - -- Update to version 1.2.0.7 revision 0 with cabal2obs. - -------------------------------------------------------------------- -Sun Jul 10 17:08:41 UTC 2016 - psimons@suse.com - -- Update to version 1.2.0.6 revision 0 with cabal2obs. - -------------------------------------------------------------------- -Wed Mar 16 09:12:05 UTC 2016 - mimi.vx@gmail.com - -- update to 1.2.0.6 -* Add Semigroup s => Semigroup (CI s) instance - -------------------------------------------------------------------- -Sun Oct 4 16:29:15 UTC 2015 - mimi.vx@gmail.com - -- update to 1.2.0.5 -* Support HUnit-1.3 -* Support criterion-1.1 - -------------------------------------------------------------------- -Mon Apr 13 08:05:41 UTC 2015 - mimi.vx@gmail.com - -- update to 1.2.0.4 -* Fixed #17: https://github.com/basvandijk/case-insensitive/issues/17 -* Bump base and deepseq upper bounds for GHC 7.10 compatibility -* Add case-insensitive.nix and default.nix -* Fix #14: Build failure with GHC 7.2.2 -* Fix #8: Don't unnecessarily use NoImplicitPrelude -* Solved warnings on GHC-7.8.3 -* Bump text upper version bounds -* Derived a Data instance for CI - -------------------------------------------------------------------- -Tue Sep 9 20:24:56 UTC 2014 - peter.trommler@ohm-hochschule.de - -- update to 1.1.0.3 -* no changelog -* for Haskell Platform 2014.2.0.0 - -------------------------------------------------------------------- -Tue Sep 2 08:52:04 UTC 2014 - peter.trommler@ohm-hochschule.de - -- regenerate spec file - -------------------------------------------------------------------- -Sat Aug 23 00:08:45 UTC 2014 - peter.trommler@ohm-hochschule.de - -- enable PowerPC builds - -------------------------------------------------------------------- -Tue May 7 14:17:19 UTC 2013 - peter.trommler@ohm-hochschule.de - -- update to 1.0.0.1 from upstream -* modifications requested for Haskell Platform -* support for hashable 1.2 -* improved performance for byte strings -- part of Haskell Platform 2013.2 -- more transparent packaging (fewer macros) - -------------------------------------------------------------------- -Sat Jun 9 10:26:44 UTC 2012 - peter.trommler@ohm-hochschule.de - -- packaged LICENSE file -- added copyright notice -- dropped rpmlintrc - -------------------------------------------------------------------- -Fri Mar 30 16:03:36 UTC 2012 - peter.trommler@ohm-hochschule.de - -- Fixed typo in BR. - -------------------------------------------------------------------- -Fri Mar 30 14:59:03 UTC 2012 - peter.trommler@ohm-hochschule.de - -- Initial packaging. - From 9bcfe5a416c138e57ded6896fa8823b6b9c5ec24e0adb05896b8f6091860c0c2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 14 May 2018 15:20:13 +0000 Subject: [PATCH 7/8] osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-case-insensitive revision:2, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-case-insensitive?expand=0&rev=35 --- ghc-case-insensitive.changes | 100 +++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 ghc-case-insensitive.changes diff --git a/ghc-case-insensitive.changes b/ghc-case-insensitive.changes new file mode 100644 index 0000000..a5a87f1 --- /dev/null +++ b/ghc-case-insensitive.changes @@ -0,0 +1,100 @@ +------------------------------------------------------------------- +Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com + +- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. + +------------------------------------------------------------------- +Wed May 31 14:01:06 UTC 2017 - psimons@suse.com + +- Update to version 1.2.0.10. + +------------------------------------------------------------------- +Mon Apr 24 12:26:22 UTC 2017 - psimons@suse.com + +- Update to version 1.2.0.9 with cabal2obs. + +------------------------------------------------------------------- +Mon Feb 20 08:42:19 UTC 2017 - psimons@suse.com + +- Update to version 1.2.0.8 with cabal2obs. + +------------------------------------------------------------------- +Mon Jul 25 11:21:37 UTC 2016 - psimons@suse.com + +- Update to version 1.2.0.7 revision 0 with cabal2obs. + +------------------------------------------------------------------- +Sun Jul 10 17:08:41 UTC 2016 - psimons@suse.com + +- Update to version 1.2.0.6 revision 0 with cabal2obs. + +------------------------------------------------------------------- +Wed Mar 16 09:12:05 UTC 2016 - mimi.vx@gmail.com + +- update to 1.2.0.6 +* Add Semigroup s => Semigroup (CI s) instance + +------------------------------------------------------------------- +Sun Oct 4 16:29:15 UTC 2015 - mimi.vx@gmail.com + +- update to 1.2.0.5 +* Support HUnit-1.3 +* Support criterion-1.1 + +------------------------------------------------------------------- +Mon Apr 13 08:05:41 UTC 2015 - mimi.vx@gmail.com + +- update to 1.2.0.4 +* Fixed #17: https://github.com/basvandijk/case-insensitive/issues/17 +* Bump base and deepseq upper bounds for GHC 7.10 compatibility +* Add case-insensitive.nix and default.nix +* Fix #14: Build failure with GHC 7.2.2 +* Fix #8: Don't unnecessarily use NoImplicitPrelude +* Solved warnings on GHC-7.8.3 +* Bump text upper version bounds +* Derived a Data instance for CI + +------------------------------------------------------------------- +Tue Sep 9 20:24:56 UTC 2014 - peter.trommler@ohm-hochschule.de + +- update to 1.1.0.3 +* no changelog +* for Haskell Platform 2014.2.0.0 + +------------------------------------------------------------------- +Tue Sep 2 08:52:04 UTC 2014 - peter.trommler@ohm-hochschule.de + +- regenerate spec file + +------------------------------------------------------------------- +Sat Aug 23 00:08:45 UTC 2014 - peter.trommler@ohm-hochschule.de + +- enable PowerPC builds + +------------------------------------------------------------------- +Tue May 7 14:17:19 UTC 2013 - peter.trommler@ohm-hochschule.de + +- update to 1.0.0.1 from upstream +* modifications requested for Haskell Platform +* support for hashable 1.2 +* improved performance for byte strings +- part of Haskell Platform 2013.2 +- more transparent packaging (fewer macros) + +------------------------------------------------------------------- +Sat Jun 9 10:26:44 UTC 2012 - peter.trommler@ohm-hochschule.de + +- packaged LICENSE file +- added copyright notice +- dropped rpmlintrc + +------------------------------------------------------------------- +Fri Mar 30 16:03:36 UTC 2012 - peter.trommler@ohm-hochschule.de + +- Fixed typo in BR. + +------------------------------------------------------------------- +Fri Mar 30 14:59:03 UTC 2012 - peter.trommler@ohm-hochschule.de + +- Initial packaging. + From 36aa472574f83259d18b5272f9c807f7383a73e8d96a65c30d030c6aa5bf0245 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 15 May 2018 18:23:29 +0000 Subject: [PATCH 8/8] osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-case-insensitive revision:3, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-case-insensitive?expand=0&rev=36 --- ghc-case-insensitive.changes | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ghc-case-insensitive.changes b/ghc-case-insensitive.changes index a5a87f1..d6119af 100644 --- a/ghc-case-insensitive.changes +++ b/ghc-case-insensitive.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Mon May 14 17:02:11 UTC 2018 - psimons@suse.com + +- Update case-insensitive to version 1.2.0.11. + * Dropped upper version bounds of dependencies because it's to + much work to maintain. + ------------------------------------------------------------------- Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com