Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-regex-pcre-builtin for 
openSUSE:Factory checked in at 2022-02-11 23:09:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new.1956 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-regex-pcre-builtin"

Fri Feb 11 23:09:32 2022 rev:16 rq:953518 version:0.95.2.3.8.44

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin/ghc-regex-pcre-builtin.changes
    2021-09-20 23:36:28.675420022 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new.1956/ghc-regex-pcre-builtin.changes
  2022-02-11 23:11:28.759305159 +0100
@@ -1,0 +2,6 @@
+Fri Feb  4 23:45:05 UTC 2022 - Peter Simons <psim...@suse.com>
+
+- Update regex-pcre-builtin to version 0.95.2.3.8.44 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  regex-pcre-builtin.cabal

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

Other differences:
------------------
++++++ ghc-regex-pcre-builtin.spec ++++++
--- /var/tmp/diff_new_pack.frtTxS/_old  2022-02-11 23:11:29.155306305 +0100
+++ /var/tmp/diff_new_pack.frtTxS/_new  2022-02-11 23:11:29.159306316 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-regex-pcre-builtin
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,7 @@
 License:        BSD-3-Clause
 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-bytestring-devel
@@ -54,6 +55,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ regex-pcre-builtin.cabal ++++++
Name:                   regex-pcre-builtin
Version:                0.95.2.3.8.44
x-revision: 1
Cabal-Version:          >=1.10
stability:              Seems to work, passes a few tests
build-type:             Simple
license:                BSD3
license-file:           LICENSE
copyright:              Copyright (c) 2006, Christopher Kuklewicz
author:                 Audrey Tang
maintainer:             audr...@audreyt.org
bug-reports:            https://github.com/audreyt/regex-pcre-builtin/issues
category:               Text

synopsis:    PCRE Backend for "Text.Regex" (regex-base)
description:
  This package provides a <http://pcre.org/ PCRE> backend for the 
<//hackage.haskell.org/package/regex-base regex-base> API.
  .
  See also <https://wiki.haskell.org/Regular_expressions> for more information.
  .
  Includes bundled code from www.pcre.org

extra-source-files:
  ChangeLog.md
  pcre/config.h pcre/pcre.h pcre/pcre_byte_order.c pcre/pcre_compile.c 
pcre/pcre_config.c pcre/pcre_chartables.c pcre/pcre_dfa_exec.c pcre/pcre_exec.c 
pcre/pcre_fullinfo.c pcre/pcre_get.c pcre/pcre_globals.c pcre/pcre_internal.h 
pcre/pcre_jit_compile.c pcre/pcre_maketables.c pcre/pcre_newline.c 
pcre/pcre_ord2utf8.c pcre/pcre_printint.c pcre/pcre_refcount.c 
pcre/pcre_scanner.h pcre/pcre_string_utils.c pcre/pcre_study.c 
pcre/pcre_tables.c pcre/pcre_ucd.c pcre/pcre_valid_utf8.c pcre/pcre_version.c 
pcre/pcre_xclass.c pcre/pcrecpp.h pcre/pcrecpp_internal.h pcre/pcreposix.h 
pcre/ucp.h

tested-with:
  GHC == 9.2.0.20210821
  GHC == 9.0.1
  GHC == 8.10.7
  GHC == 8.8.4
  GHC == 8.6.5
  GHC == 8.4.4
  GHC == 8.2.2
  GHC == 8.0.2
  GHC == 7.10.3
  GHC == 7.8.4
  GHC == 7.6.3
  GHC == 7.4.2
  GHC == 7.0.4

source-repository head
  type:     git
  location: https://github.com/audreyt/regex-pcre-builtin

library
  hs-source-dirs: src
  exposed-modules:
      Text.Regex.PCRE
      Text.Regex.PCRE.Wrap
      Text.Regex.PCRE.String
      Text.Regex.PCRE.Sequence
      Text.Regex.PCRE.ByteString
      Text.Regex.PCRE.ByteString.Lazy
      Text.Regex.PCRE.Text
      Text.Regex.PCRE.Text.Lazy

  other-modules:
      Paths_regex_pcre_builtin

  default-language: Haskell2010
  default-extensions:
      MultiParamTypeClasses
      FunctionalDependencies
      ForeignFunctionInterface
      ScopedTypeVariables
      GeneralizedNewtypeDeriving
      FlexibleContexts
      TypeSynonymInstances
      FlexibleInstances

  build-depends: regex-base == 0.94.*
               , base       >= 4.3 && < 4.17
               , containers >= 0.4 && < 0.7
               , bytestring >= 0.9 && < 0.12
               , array      >= 0.3 && < 0.6
               , text       >= 1.2.3 && < 2.1

  if !impl(ghc >= 8)
      build-depends: fail == 4.9.*

  ghc-options: -O2
               -Wall -fno-warn-unused-imports
  cc-options:  -DHAVE_CONFIG_H
  include-dirs: pcre
  includes: pcre.h config.h
  c-sources:
      pcre/pcre_byte_order.c pcre/pcre_compile.c pcre/pcre_config.c 
pcre/pcre_chartables.c pcre/pcre_dfa_exec.c pcre/pcre_exec.c 
pcre/pcre_fullinfo.c pcre/pcre_get.c pcre/pcre_globals.c 
pcre/pcre_jit_compile.c pcre/pcre_maketables.c pcre/pcre_newline.c 
pcre/pcre_ord2utf8.c pcre/pcre_refcount.c pcre/pcre_string_utils.c 
pcre/pcre_study.c pcre/pcre_tables.c pcre/pcre_ucd.c pcre/pcre_valid_utf8.c 
pcre/pcre_version.c pcre/pcre_xclass.c

Reply via email to