Hello community,
here is the log from the commit of package ghc-haskell-src-exts for
openSUSE:Factory checked in at 2018-08-20 16:20:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-haskell-src-exts (Old)
and /work/SRC/openSUSE:Factory/.ghc-haskell-src-exts.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-haskell-src-exts"
Mon Aug 20 16:20:23 2018 rev:8 rq:630367 version:1.20.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-haskell-src-exts/ghc-haskell-src-exts.changes
2018-07-24 17:19:19.247064161 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-haskell-src-exts.new/ghc-haskell-src-exts.changes
2018-08-20 16:20:25.860908065 +0200
@@ -1,0 +2,5 @@
+Fri Aug 17 14:30:43 UTC 2018 - [email protected]
+
+- Update Cabal build information to support GHC 8.6.x.
+
+-------------------------------------------------------------------
New:
----
haskell-src-exts.cabal
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-haskell-src-exts.spec ++++++
--- /var/tmp/diff_new_pack.QMw9eA/_old 2018-08-20 16:20:27.156909896 +0200
+++ /var/tmp/diff_new_pack.QMw9eA/_new 2018-08-20 16:20:27.160909902 +0200
@@ -26,6 +26,7 @@
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-cpphs-devel
@@ -66,6 +67,7 @@
%prep
%setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build
++++++ haskell-src-exts.cabal ++++++
Name: haskell-src-exts
Version: 1.20.2
x-revision: 1
License: BSD3
License-File: LICENSE
Build-Type: Simple
Author: Niklas Broberg
Maintainer: Matthew Pickering <[email protected]>
Category: Language
Synopsis: Manipulating Haskell source: abstract syntax, lexer,
parser, and pretty-printer
Description: Haskell-Source with Extensions (HSE, haskell-src-exts)
is a standalone parser for Haskell. In addition to
standard Haskell, all extensions implemented in GHC are
supported.
.
Apart from these standard extensions,
it also handles regular patterns as per the HaRP
extension
as well as HSX-style embedded XML syntax.
Homepage: https://github.com/haskell-suite/haskell-src-exts
Stability: Stable
Cabal-Version: >= 1.10
Tested-With:
GHC == 7.6.3
, GHC == 7.8.2
, GHC == 7.10.3
, GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.1
Extra-Source-Files:
README.md
CHANGELOG
RELEASENOTES-1.17.0
tests/examples/*.hs
tests/examples/*.lhs
tests/examples/*.hs.parser.golden
tests/examples/*.lhs.parser.golden
tests/examples/*.hs.exactprinter.golden
tests/examples/*.lhs.exactprinter.golden
tests/examples/*.hs.prettyprinter.golden
tests/examples/*.lhs.prettyprinter.golden
tests/examples/*.hs.prettyparser.golden
tests/examples/*.lhs.prettyparser.golden
tests/Runner.hs
tests/Extensions.hs
Library
Default-language: Haskell98
Build-Tools: happy >= 1.19
Build-Depends: array >= 0.1, pretty >= 1.0, cpphs >= 1.3,
base >= 4.5 && < 4.12,
-- this is needed to access GHC.Generics on GHC 7.4
ghc-prim
-- this is needed to access Data.Semigroup on GHCs before 8.0
if !impl(ghc >= 8.0)
Build-Depends:
semigroups >= 0.18.3
Exposed-modules: Language.Haskell.Exts,
Language.Haskell.Exts.Lexer,
Language.Haskell.Exts.Pretty,
Language.Haskell.Exts.Extension,
Language.Haskell.Exts.Build,
Language.Haskell.Exts.SrcLoc,
Language.Haskell.Exts.Syntax,
Language.Haskell.Exts.Fixity,
Language.Haskell.Exts.ExactPrint,
Language.Haskell.Exts.Parser,
Language.Haskell.Exts.Comments
Other-modules: Language.Haskell.Exts.ExtScheme,
Language.Haskell.Exts.ParseMonad,
Language.Haskell.Exts.ParseSyntax,
Language.Haskell.Exts.InternalLexer,
Language.Haskell.Exts.ParseUtils,
Language.Haskell.Exts.InternalParser
Hs-source-dirs: src
Ghc-options: -Wall
Source-Repository head
Type: git
Location: https://github.com/haskell-suite/haskell-src-exts.git
Test-Suite test
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Runner.hs
other-modules: Extensions
GHC-Options: -threaded -Wall
Default-language: Haskell2010
Build-depends: base < 5,
mtl,
containers,
haskell-src-exts,
smallcheck >= 1.0,
tasty >= 0.3,
tasty-smallcheck,
tasty-golden >= 2.2.2,
filepath,
directory,
pretty-show >= 1.6.16