Hello community,

here is the log from the commit of package ghc-hxt-regex-xmlschema for 
openSUSE:Factory checked in at 2019-06-19 21:10:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-hxt-regex-xmlschema (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-hxt-regex-xmlschema.new.4811 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-hxt-regex-xmlschema"

Wed Jun 19 21:10:58 2019 rev:7 rq:710630 version:9.2.0.3

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/ghc-hxt-regex-xmlschema/ghc-hxt-regex-xmlschema.changes
  2018-10-25 08:26:44.767790985 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-hxt-regex-xmlschema.new.4811/ghc-hxt-regex-xmlschema.changes
        2019-06-19 21:12:21.762740309 +0200
@@ -1,0 +2,5 @@
+Tue Jun 11 14:29:12 UTC 2019 - Peter Simons <[email protected]>
+
+- Update Cabal file for more accurate build dependencies.
+
+-------------------------------------------------------------------

New:
----
  hxt-regex-xmlschema.cabal

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-hxt-regex-xmlschema.spec ++++++
--- /var/tmp/diff_new_pack.LBlm9d/_old  2019-06-19 21:12:25.314743760 +0200
+++ /var/tmp/diff_new_pack.LBlm9d/_new  2019-06-19 21:12:25.334743779 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-hxt-regex-xmlschema
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -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-bytestring-devel
 BuildRequires:  ghc-hxt-charproperties-devel
@@ -66,6 +67,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ hxt-regex-xmlschema.cabal ++++++
Name:                hxt-regex-xmlschema
Version:             9.2.0.3
x-revision: 1
Synopsis:            A regular expression library for W3C XML Schema regular 
expressions
Description:         This library supports full W3C XML Schema regular 
expressions
                     inclusive all Unicode character sets and blocks.
                     The complete grammar can be found under 
<http://www.w3.org/TR/xmlschema11-2/#regexs>.
                     It is implemented by the technique of derivations of 
regular expressions.
                     .
                     The W3C syntax is extended to support not only union of 
regular sets,
                     but also intersection, set difference, exor.
                     Matching of subexpressions is also supported.
                     .
                     The library can be used for constricting lightweight 
scanners and tokenizers.
                     It is a standalone library, no external regex libraries 
are used.
                     .
                     Extensions in 9.2: The library does nor only support 
String's, but also
                     ByteString's and Text in strict and lazy variants          
           
License:             MIT
License-file:        LICENSE
Author:              Uwe Schmidt
Maintainer:          Uwe Schmidt <[email protected]>
Copyright:           Copyright (c) 2010- Uwe Schmidt
Stability:           stable
Category:            Text
Homepage:            
http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema
Build-type:          Simple
Cabal-version:       >=1.10

extra-source-files:
  examples/colorizeProgs/ColorizeSourceCode.hs
  examples/colorizeProgs/Makefile
  examples/performance/REtest.hs
  examples/performance/Makefile
  examples/RegexXMLSchema/Makefile
  examples/RegexXMLSchema/REtest.hs

flag profile
  description: turn profiling on
  default: False

Library
  Exposed-modules:
    Text.Regex.Glob.String
    Text.Regex.Glob.Generic
    Text.Regex.Glob.Generic.RegexParser
    Text.Regex.XMLSchema.String
    Text.Regex.XMLSchema.Generic
    Text.Regex.XMLSchema.Generic.Matching
    Text.Regex.XMLSchema.Generic.RegexParser
    Text.Regex.XMLSchema.Generic.Regex
    Text.Regex.XMLSchema.Generic.StringLike

  hs-source-dirs:    src

  default-language:  Haskell2010

  ghc-options:       -Wall -fwarn-tabs -funbox-strict-fields

  if flag(profile)
    ghc-prof-options: -caf-all

  build-depends:     base               >= 4.5   && < 5
                   , bytestring         >= 0.10
                   , hxt-charproperties >= 9     && < 10
                   , parsec             >= 2.1   && < 4
                   , text               >= 0.10

test-suite SimpleMatch
  hs-source-dirs:    test
  main-is:           SimpleTest.hs
  type:              exitcode-stdio-1.0
  default-language:  Haskell2010
  ghc-options:       -Wall

  build-depends:     base
                   , bytestring
                   , hxt-regex-xmlschema
                   , text
                   , HUnit

test-suite Date
  hs-source-dirs:    test
  main-is:           Date.hs
  type:              exitcode-stdio-1.0
  default-language:  Haskell2010
  ghc-options:       -Wall

  build-depends:     base
                   , bytestring
                   , hxt-regex-xmlschema
                   , parsec >= 2
                   , text
                   , HUnit

Benchmark Benchmark
  hs-source-dirs:    test
  main-is:           Benchmark.hs
  type:              exitcode-stdio-1.0

  default-language:  Haskell2010

  ghc-options:       -Wall -O2

  build-depends:     base
                   , bytestring
                   , criterion           >= 1
                   , deepseq             >= 1.2
                   , hxt-regex-xmlschema
                   , parsec              >= 2
                   , text

Source-Repository head
  Type:     git
  Location: git://github.com/UweSchmidt/hxt.git


Reply via email to