Hello community, here is the log from the commit of package ghc-GLURaw for openSUSE:Factory checked in at 2016-05-17 17:15:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-GLURaw (Old) and /work/SRC/openSUSE:Factory/.ghc-GLURaw.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-GLURaw" Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-GLURaw/ghc-GLURaw.changes 2016-01-22 01:08:41.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-GLURaw.new/ghc-GLURaw.changes 2016-05-17 17:15:50.000000000 +0200 @@ -1,0 +2,7 @@ +Thu May 12 18:39:24 UTC 2016 - [email protected] + +- update to 2.0.0.2 +* Relaxed upper version bound for OpenGLRaw. +* Silence warnings about pattern synonyms with no type signatures. + +------------------------------------------------------------------- Old: ---- GLURaw-2.0.0.1.tar.gz New: ---- GLURaw-2.0.0.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-GLURaw.spec ++++++ --- /var/tmp/diff_new_pack.jMm264/_old 2016-05-17 17:15:51.000000000 +0200 +++ /var/tmp/diff_new_pack.jMm264/_new 2016-05-17 17:15:51.000000000 +0200 @@ -18,7 +18,7 @@ %global pkg_name GLURaw Name: ghc-GLURaw -Version: 2.0.0.1 +Version: 2.0.0.2 Release: 0 Summary: A raw binding for the OpenGL graphics system License: BSD-3-Clause ++++++ GLURaw-2.0.0.1.tar.gz -> GLURaw-2.0.0.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/GLURaw-2.0.0.1/CHANGELOG.md new/GLURaw-2.0.0.2/CHANGELOG.md --- old/GLURaw-2.0.0.1/CHANGELOG.md 2016-01-10 16:25:43.000000000 +0100 +++ new/GLURaw-2.0.0.2/CHANGELOG.md 2016-05-11 14:37:48.000000000 +0200 @@ -1,3 +1,8 @@ +2.0.0.2 +------- +* Relaxed upper version bound for `OpenGLRaw`. +* Silence warnings about pattern synonyms with no type signatures. + 2.0.0.1 ------- * Relaxed upper version bound for `OpenGLRaw`. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/GLURaw-2.0.0.1/GLURaw.cabal new/GLURaw-2.0.0.2/GLURaw.cabal --- old/GLURaw-2.0.0.1/GLURaw.cabal 2016-01-10 16:25:43.000000000 +0100 +++ new/GLURaw-2.0.0.2/GLURaw.cabal 2016-05-11 14:22:16.000000000 +0200 @@ -1,5 +1,5 @@ name: GLURaw -version: 2.0.0.1 +version: 2.0.0.2 synopsis: A raw binding for the OpenGL graphics system description: GLURaw is a raw Haskell binding for the GLU 1.3 OpenGL utility library. It is @@ -21,6 +21,11 @@ maintainer: Sven Panne <[email protected]>, Jason Dagit <[email protected]> category: Graphics build-type: Simple +tested-with: + GHC == 7.8.4 + GHC == 7.10.3 + GHC == 8.0.1 + GHC == 8.1 cabal-version: >= 1.10 extra-source-files: CHANGELOG.md @@ -46,9 +51,11 @@ build-depends: base >= 4 && < 5, transformers >= 0.2 && < 0.6, - OpenGLRaw >= 3.0 && < 3.2 + OpenGLRaw >= 3.0 && < 3.3 default-language: Haskell2010 ghc-options: -Wall + if impl(ghc > 8) + ghc-options: -Wcompat other-extensions: CPP PatternSynonyms diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/GLURaw-2.0.0.1/src/Graphics/GLU/Tokens.hs new/GLURaw-2.0.0.2/src/Graphics/GLU/Tokens.hs --- old/GLURaw-2.0.0.1/src/Graphics/GLU/Tokens.hs 2016-01-10 16:25:43.000000000 +0100 +++ new/GLURaw-2.0.0.2/src/Graphics/GLU/Tokens.hs 2016-02-26 09:03:57.000000000 +0100 @@ -1,4 +1,7 @@ -{-# LANGUAGE PatternSynonyms, ScopedTypeVariables #-} +{-# LANGUAGE CPP, PatternSynonyms, ScopedTypeVariables #-} +#if __GLASGOW_HASKELL__ >= 800 +{-# OPTIONS_GHC -Wno-missing-pattern-synonym-signatures #-} +#endif -------------------------------------------------------------------------------- -- | -- Module : Graphics.GLU.Tokens
