From 2055c103998514153b6938571fda0fe5cea2f70a132ef249296ed8019424c57d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 2 Jun 2018 11:51:44 +0000 Subject: [PATCH 1/4] osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-tagged revision:6, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-tagged?expand=0&rev=39 --- ghc-tagged.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-tagged.spec b/ghc-tagged.spec index 8c8736d..57606b4 100644 --- a/ghc-tagged.spec +++ b/ghc-tagged.spec @@ -1,7 +1,7 @@ # # spec file for package ghc-tagged # -# 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 From 7180f408bd1f22766050d22b8d7aa5ff70c25a9bbaa305945d10dfaafed4905a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 11 Jul 2018 01:01:58 +0000 Subject: [PATCH 2/4] osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-tagged revision:7, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-tagged?expand=0&rev=40 --- ghc-tagged.changes | 13 +++++++++ ghc-tagged.spec | 5 +--- tagged-0.8.5.tar.gz | 3 -- tagged-0.8.6.tar.gz | 3 ++ tagged.cabal | 68 --------------------------------------------- 5 files changed, 17 insertions(+), 75 deletions(-) delete mode 100644 tagged-0.8.5.tar.gz create mode 100644 tagged-0.8.6.tar.gz delete mode 100644 tagged.cabal diff --git a/ghc-tagged.changes b/ghc-tagged.changes index 82ca974..82f089a 100644 --- a/ghc-tagged.changes +++ b/ghc-tagged.changes @@ -1,3 +1,16 @@ +------------------------------------------------------------------- +Mon Jul 9 19:45:03 UTC 2018 - psimons@suse.com + +- Update tagged to version 0.8.6. + 0.8.6 [2018.07.02] + ------------------ + * Make the `Read(1)` instances for `Proxy` ignore the precedence argument, + mirroring similar changes to `base` + [here](http://git.haskell.org/ghc.git/commitdiff/8fd959998e900dffdb7f752fcd42df7aaedeae6e). + * Fix a bug in the `Floating` instance for `Tagged` in which `logBase` was + defined in terms of `(**)`. + * Avoid incurring some dependencies when using recent GHCs. + ------------------------------------------------------------------- Wed May 16 14:36:29 UTC 2018 - psimons@suse.com diff --git a/ghc-tagged.spec b/ghc-tagged.spec index 57606b4..38885ef 100644 --- a/ghc-tagged.spec +++ b/ghc-tagged.spec @@ -18,19 +18,17 @@ %global pkg_name tagged Name: ghc-%{pkg_name} -Version: 0.8.5 +Version: 0.8.6 Release: 0 Summary: Haskell 98 phantom types to avoid unsafely passing dummy arguments 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-deepseq-devel BuildRequires: ghc-rpm-macros BuildRequires: ghc-template-haskell-devel -BuildRequires: ghc-transformers-compat-devel BuildRequires: ghc-transformers-devel %description @@ -49,7 +47,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 %ghc_lib_build diff --git a/tagged-0.8.5.tar.gz b/tagged-0.8.5.tar.gz deleted file mode 100644 index eafe5e6..0000000 --- a/tagged-0.8.5.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e47c51c955ed77b0fa36897f652df990aa0a8c4eb278efaddcd604be00fc8d99 -size 10860 diff --git a/tagged-0.8.6.tar.gz b/tagged-0.8.6.tar.gz new file mode 100644 index 0000000..81f257d --- /dev/null +++ b/tagged-0.8.6.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad16def0884cf6f05ae1ae8e90192cf9d8d9673fa264b249499bd9e4fac791dd +size 11759 diff --git a/tagged.cabal b/tagged.cabal deleted file mode 100644 index 42891a6..0000000 --- a/tagged.cabal +++ /dev/null @@ -1,68 +0,0 @@ -name: tagged -version: 0.8.5 -x-revision: 2 -license: BSD3 -license-file: LICENSE -author: Edward A. Kmett -maintainer: Edward A. Kmett -stability: experimental -category: Data, Phantom Types -synopsis: Haskell 98 phantom types to avoid unsafely passing dummy arguments -homepage: http://github.com/ekmett/tagged -bug-reports: http://github.com/ekmett/tagged/issues -copyright: 2009-2015 Edward A. Kmett -description: Haskell 98 phantom types to avoid unsafely passing dummy arguments -build-type: Simple -cabal-version: >= 1.10 -extra-source-files: .travis.yml CHANGELOG.markdown README.markdown HLint.hs - -source-repository head - type: git - location: git://github.com/ekmett/tagged.git - -flag deepseq - description: - You can disable the use of the `deepseq` package using `-f-deepseq`. - . - Disabing this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. - default: True - manual: True - -flag transformers - description: - You can disable the use of the `transformers` and `transformers-compat` packages using `-f-transformers`. - . - Disable this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. - default: True - manual: True - -library - default-language: Haskell98 - other-extensions: CPP - build-depends: base >= 2 && < 5 - ghc-options: -Wall - hs-source-dirs: src - exposed-modules: Data.Tagged - - if !impl(hugs) - cpp-options: -DLANGUAGE_DeriveDataTypeable - other-extensions: DeriveDataTypeable - - if impl(ghc<7.7) - hs-source-dirs: old - exposed-modules: Data.Proxy - other-modules: Paths_tagged - - if impl(ghc>=7.2 && <7.5) - build-depends: ghc-prim - - if impl(ghc>=7.6) - exposed-modules: Data.Proxy.TH - build-depends: template-haskell >= 2.8 && < 2.14 - - if flag(deepseq) - build-depends: deepseq >= 1.1 && < 1.5 - - if flag(transformers) - build-depends: transformers >= 0.2 && < 0.6, - transformers-compat >= 0.5 && < 1 From 9ee7e4962544b02a935bcdbac8881eab0fea14f0ce4dedd2e26e74c8adc5b2d8 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 15 Jul 2018 01:01:56 +0000 Subject: [PATCH 3/4] osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-tagged revision:8, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-tagged?expand=0&rev=41 --- ghc-tagged.changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-tagged.changes b/ghc-tagged.changes index 82f089a..d05c347 100644 --- a/ghc-tagged.changes +++ b/ghc-tagged.changes @@ -1,5 +1,5 @@ ------------------------------------------------------------------- -Mon Jul 9 19:45:03 UTC 2018 - psimons@suse.com +Fri Jul 13 14:31:51 UTC 2018 - psimons@suse.com - Update tagged to version 0.8.6. 0.8.6 [2018.07.02] From 842e827fe37007e7c81850e46744eb37a0be692d139a4a233d1bd707935961ee Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 18 Jul 2018 14:41:33 +0000 Subject: [PATCH 4/4] osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-tagged revision:9, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-tagged?expand=0&rev=42 --- ghc-tagged.changes | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/ghc-tagged.changes b/ghc-tagged.changes index d05c347..a0dfeb8 100644 --- a/ghc-tagged.changes +++ b/ghc-tagged.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Wed Jul 18 14:26:42 UTC 2018 - psimons@suse.com + +- Cosmetic: replace tabs with blanks, strip trailing white space, + and update copyright headers with spec-cleaner. + ------------------------------------------------------------------- Fri Jul 13 14:31:51 UTC 2018 - psimons@suse.com @@ -50,7 +56,7 @@ Fri Jan 29 13:14:41 UTC 2016 - mimi.vx@gmail.com - update to 0.8.3 * Manual Generic1 support to work around a bug in GHC 7.6 -* Invert the dependency to supply the Semigroup instance ourselves +* Invert the dependency to supply the Semigroup instance ourselves when building on GHC 8 ------------------------------------------------------------------- @@ -66,7 +72,7 @@ Fri Aug 7 08:29:50 UTC 2015 - mimi.vx@gmail.com * Add KProxy to the backwards compatibility Data.Proxy module. * Add a Generic instance to Proxy. * Added Data.Proxy.TH, based on the code from Frames by Anthony Cowley. -* Removed reproxy from Data.Proxy. This is a bad API decision, but it isn't present +* Removed reproxy from Data.Proxy. This is a bad API decision, but it isn't present in GHC's Data.Proxy, and this makes the API more stable. ------------------------------------------------------------------- @@ -85,7 +91,7 @@ Wed Oct 9 06:45:39 UTC 2013 - sbahling@suse.com ------------------------------------------------------------------- Fri Jun 8 17:05:42 UTC 2012 - peter.trommler@ohm-hochschule.de -- use cabal2spec 0.25.5 spec file template +- use cabal2spec 0.25.5 spec file template ------------------------------------------------------------------- Sat Jan 21 11:20:55 UTC 2012 - herbert@graeber-clan.de