commit ghc-regex-pcre-builtin for openSUSE:Factory

2020-10-23 Thread root
Hello community,

here is the log from the commit of package ghc-regex-pcre-builtin for 
openSUSE:Factory checked in at 2020-10-23 15:14:35

Comparing /work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new.3463 (New)


Package is "ghc-regex-pcre-builtin"

Fri Oct 23 15:14:35 2020 rev:12 rq:842761 version:0.95.1.3.8.43

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin/ghc-regex-pcre-builtin.changes
2020-08-28 21:36:59.376769610 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new.3463/ghc-regex-pcre-builtin.changes
  2020-10-23 15:14:40.922143925 +0200
@@ -1,0 +2,10 @@
+Mon Oct 19 02:01:22 UTC 2020 - psim...@suse.com
+
+- Update regex-pcre-builtin to version 0.95.1.3.8.43.
+  ## 0.95.1.3.8.43
+  - Version bump to reflect pcre version (8.43) and to have Hackage upgrade 
from 0.95.1.2.8.43 which does not include #15
+
+  ## 0.95.1.1.8.44
+  - Fix: `asCString` for `Text` regexes doesn't check for null-termination, 
causing the compiled regex to be corrupted. (@kuribas)
+
+---

Old:

  regex-pcre-builtin-0.95.1.2.8.43.tar.gz

New:

  regex-pcre-builtin-0.95.1.3.8.43.tar.gz



Other differences:
--
++ ghc-regex-pcre-builtin.spec ++
--- /var/tmp/diff_new_pack.vL4jYa/_old  2020-10-23 15:14:42.266144574 +0200
+++ /var/tmp/diff_new_pack.vL4jYa/_new  2020-10-23 15:14:42.282144582 +0200
@@ -18,7 +18,7 @@
 
 %global pkg_name regex-pcre-builtin
 Name:   ghc-%{pkg_name}
-Version:0.95.1.2.8.43
+Version:0.95.1.3.8.43
 Release:0
 Summary:PCRE Backend for "Text.Regex" (regex-base)
 License:BSD-3-Clause

++ regex-pcre-builtin-0.95.1.2.8.43.tar.gz -> 
regex-pcre-builtin-0.95.1.3.8.43.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/regex-pcre-builtin-0.95.1.2.8.43/ChangeLog.md 
new/regex-pcre-builtin-0.95.1.3.8.43/ChangeLog.md
--- old/regex-pcre-builtin-0.95.1.2.8.43/ChangeLog.md   2020-04-16 
07:08:54.0 +0200
+++ new/regex-pcre-builtin-0.95.1.3.8.43/ChangeLog.md   2001-09-09 
03:46:40.0 +0200
@@ -1,5 +1,11 @@
 See also http://pvp.haskell.org/faq
 
+## 0.95.1.3.8.43
+- Version bump to reflect pcre version (8.43) and to have Hackage upgrade from 
0.95.1.2.8.43 which does not include #15
+
+## 0.95.1.1.8.44
+- Fix: `asCString` for `Text` regexes doesn't check for null-termination, 
causing the compiled regex to be corrupted. (@kuribas)
+
 ## 0.95.1.0.8.43
 
 - Update to `regex-0.94.0.0` API
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/regex-pcre-builtin-0.95.1.2.8.43/regex-pcre-builtin.cabal 
new/regex-pcre-builtin-0.95.1.3.8.43/regex-pcre-builtin.cabal
--- old/regex-pcre-builtin-0.95.1.2.8.43/regex-pcre-builtin.cabal   
2020-04-16 07:08:54.0 +0200
+++ new/regex-pcre-builtin-0.95.1.3.8.43/regex-pcre-builtin.cabal   
2001-09-09 03:46:40.0 +0200
@@ -1,5 +1,5 @@
 Name:   regex-pcre-builtin
-Version:0.95.1.2.8.43
+Version:0.95.1.3.8.43
 Cabal-Version:  >=1.10
 stability:  Seems to work, passes a few tests
 build-type: Simple
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/regex-pcre-builtin-0.95.1.2.8.43/src/Text/Regex/PCRE/Text.hs 
new/regex-pcre-builtin-0.95.1.3.8.43/src/Text/Regex/PCRE/Text.hs
--- old/regex-pcre-builtin-0.95.1.2.8.43/src/Text/Regex/PCRE/Text.hs
2020-04-16 07:08:54.0 +0200
+++ new/regex-pcre-builtin-0.95.1.3.8.43/src/Text/Regex/PCRE/Text.hs
2001-09-09 03:46:40.0 +0200
@@ -50,6 +50,9 @@
   ) where
 
 import   Data.Array(Array,listArray)
+import   Data.Char(ord)
+import   Control.Monad.Fail (fail)
+import   Prelude hiding (fail)
 import qualified Data.ByteString  as B
 import qualified Data.ByteString.Unsafe   as B
 import qualified Data.Textas T
@@ -154,7 +157,9 @@
 
 {-# INLINE asCString #-}
 asCString :: T.Text -> (CString->IO a) -> IO a
-asCString = B.unsafeUseAsCString . T.encodeUtf8
+asCString t
+  | T.null t || (ord (T.last t) /= 0) = B.useAsCString $ T.encodeUtf8 t
+  | otherwise = B.unsafeUseAsCString $ T.encodeUtf8 t
 
 {-# INLINE asCStringLen #-}
 asCStringLen :: T.Text -> (CStringLen->IO a) -> IO a




commit ghc-regex-pcre-builtin for openSUSE:Factory

2020-08-28 Thread root
Hello community,

here is the log from the commit of package ghc-regex-pcre-builtin for 
openSUSE:Factory checked in at 2020-08-28 21:36:58

Comparing /work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new.3399 (New)


Package is "ghc-regex-pcre-builtin"

Fri Aug 28 21:36:58 2020 rev:11 rq:829399 version:0.95.1.2.8.43

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin/ghc-regex-pcre-builtin.changes
2020-06-19 17:17:24.194884924 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new.3399/ghc-regex-pcre-builtin.changes
  2020-08-28 21:36:59.376769610 +0200
@@ -1,0 +2,5 @@
+Tue Aug 18 10:45:51 UTC 2020 - Peter Simons 
+
+- Replace %setup -q with the more modern %autosetup macro.
+
+---



Other differences:
--
++ ghc-regex-pcre-builtin.spec ++
--- /var/tmp/diff_new_pack.GMuC97/_old  2020-08-28 21:37:00.636770207 +0200
+++ /var/tmp/diff_new_pack.GMuC97/_new  2020-08-28 21:37:00.640770209 +0200
@@ -52,7 +52,7 @@
 files.
 
 %prep
-%setup -q -n %{pkg_name}-%{version}
+%autosetup -n %{pkg_name}-%{version}
 
 %build
 %ghc_lib_build




commit ghc-regex-pcre-builtin for openSUSE:Factory

2020-06-19 Thread root
Hello community,

here is the log from the commit of package ghc-regex-pcre-builtin for 
openSUSE:Factory checked in at 2020-06-19 17:17:22

Comparing /work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new.3606 (New)


Package is "ghc-regex-pcre-builtin"

Fri Jun 19 17:17:22 2020 rev:10 rq:815160 version:0.95.1.2.8.43

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin/ghc-regex-pcre-builtin.changes
2020-05-11 13:36:16.156478074 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new.3606/ghc-regex-pcre-builtin.changes
  2020-06-19 17:17:24.194884924 +0200
@@ -1,0 +2,5 @@
+Tue Jun 16 11:14:31 UTC 2020 - Peter Simons 
+
+- Re-generate file with latest version of spec-cleaner.
+
+---



Other differences:
--
++ ghc-regex-pcre-builtin.spec ++
--- /var/tmp/diff_new_pack.InSnS8/_old  2020-06-19 17:17:25.030887292 +0200
+++ /var/tmp/diff_new_pack.InSnS8/_new  2020-06-19 17:17:25.030887292 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-regex-pcre-builtin
 #
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed




commit ghc-regex-pcre-builtin for openSUSE:Factory

2020-05-11 Thread root
Hello community,

here is the log from the commit of package ghc-regex-pcre-builtin for 
openSUSE:Factory checked in at 2020-05-11 13:35:50

Comparing /work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new.2738 (New)


Package is "ghc-regex-pcre-builtin"

Mon May 11 13:35:50 2020 rev:9 rq:801044 version:0.95.1.2.8.43

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin/ghc-regex-pcre-builtin.changes
2019-12-27 13:56:37.760752842 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new.2738/ghc-regex-pcre-builtin.changes
  2020-05-11 13:36:16.156478074 +0200
@@ -1,0 +2,7 @@
+Wed May  6 06:54:11 UTC 2020 - psim...@suse.com
+
+- Update regex-pcre-builtin to version 0.95.1.2.8.43.
+  Upstream has not updated the file "ChangeLog.md" since the last
+  release.
+
+---

Old:

  regex-pcre-builtin-0.95.1.1.8.43.tar.gz

New:

  regex-pcre-builtin-0.95.1.2.8.43.tar.gz



Other differences:
--
++ ghc-regex-pcre-builtin.spec ++
--- /var/tmp/diff_new_pack.2hFoas/_old  2020-05-11 13:36:16.964479768 +0200
+++ /var/tmp/diff_new_pack.2hFoas/_new  2020-05-11 13:36:16.964479768 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-regex-pcre-builtin
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 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
@@ -18,7 +18,7 @@
 
 %global pkg_name regex-pcre-builtin
 Name:   ghc-%{pkg_name}
-Version:0.95.1.1.8.43
+Version:0.95.1.2.8.43
 Release:0
 Summary:PCRE Backend for "Text.Regex" (regex-base)
 License:BSD-3-Clause

++ regex-pcre-builtin-0.95.1.1.8.43.tar.gz -> 
regex-pcre-builtin-0.95.1.2.8.43.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/regex-pcre-builtin-0.95.1.1.8.43/regex-pcre-builtin.cabal 
new/regex-pcre-builtin-0.95.1.2.8.43/regex-pcre-builtin.cabal
--- old/regex-pcre-builtin-0.95.1.1.8.43/regex-pcre-builtin.cabal   
2001-09-09 03:46:40.0 +0200
+++ new/regex-pcre-builtin-0.95.1.2.8.43/regex-pcre-builtin.cabal   
2020-04-16 07:08:54.0 +0200
@@ -1,5 +1,5 @@
 Name:   regex-pcre-builtin
-Version:0.95.1.1.8.43
+Version:0.95.1.2.8.43
 Cabal-Version:  >=1.10
 stability:  Seems to work, passes a few tests
 build-type: Simple
@@ -55,7 +55,7 @@
   FlexibleInstances
 
   build-depends: regex-base == 0.94.*
-   , base   >= 4.3 && < 4.14
+   , base   >= 4.3 && < 4.15
, containers >= 0.4 && < 0.7
, bytestring >= 0.9 && < 0.11
, array  >= 0.3 && < 0.6




commit ghc-regex-pcre-builtin for openSUSE:Factory

2019-12-27 Thread root
Hello community,

here is the log from the commit of package ghc-regex-pcre-builtin for 
openSUSE:Factory checked in at 2019-12-27 13:56:35

Comparing /work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new.6675 (New)


Package is "ghc-regex-pcre-builtin"

Fri Dec 27 13:56:35 2019 rev:8 rq:759488 version:0.95.1.1.8.43

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin/ghc-regex-pcre-builtin.changes
2019-10-18 14:34:40.860044450 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new.6675/ghc-regex-pcre-builtin.changes
  2019-12-27 13:56:37.760752842 +0100
@@ -1,0 +2,5 @@
+Fri Nov  8 16:14:33 UTC 2019 - Peter Simons 
+
+- Drop obsolete group attributes.
+
+---



Other differences:
--
++ ghc-regex-pcre-builtin.spec ++
--- /var/tmp/diff_new_pack.gkWnX7/_old  2019-12-27 13:56:38.388753145 +0100
+++ /var/tmp/diff_new_pack.gkWnX7/_new  2019-12-27 13:56:38.388753145 +0100
@@ -22,7 +22,6 @@
 Release:0
 Summary:PCRE Backend for "Text.Regex" (regex-base)
 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
 BuildRequires:  ghc-Cabal-devel
@@ -43,7 +42,6 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}




commit ghc-regex-pcre-builtin for openSUSE:Factory

2019-10-18 Thread root
Hello community,

here is the log from the commit of package ghc-regex-pcre-builtin for 
openSUSE:Factory checked in at 2019-10-18 14:34:39

Comparing /work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new.2352 (New)


Package is "ghc-regex-pcre-builtin"

Fri Oct 18 14:34:39 2019 rev:7 rq:737213 version:0.95.1.1.8.43

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin/ghc-regex-pcre-builtin.changes
2018-10-25 09:03:16.982617018 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new.2352/ghc-regex-pcre-builtin.changes
  2019-10-18 14:34:40.860044450 +0200
@@ -1,0 +2,27 @@
+Fri Oct  4 02:02:04 UTC 2019 - psim...@suse.com
+
+- Update regex-pcre-builtin to version 0.95.1.1.8.43.
+  Upstream has not updated the file "ChangeLog.md" since the last
+  release.
+
+---
+Thu Oct  3 02:02:06 UTC 2019 - psim...@suse.com
+
+- Update regex-pcre-builtin to version 0.95.1.0.8.43.
+  Upstream added a new change log file in this release. With no
+  previous version to compare against, the automatic updater cannot
+  reliable determine the relevante entries for this release.
+
+---
+Tue Oct  1 02:01:30 UTC 2019 - psim...@suse.com
+
+- Update regex-pcre-builtin to version 0.95.0.8.8.35.
+  Upstream does not provide a change log file.
+
+---
+Mon Sep 30 02:01:22 UTC 2019 - psim...@suse.com
+
+- Update regex-pcre-builtin to version 0.94.5.8.8.35.
+  Upstream does not provide a change log file.
+
+---

Old:

  regex-pcre-builtin-0.94.4.8.8.35.tar.gz

New:

  regex-pcre-builtin-0.95.1.1.8.43.tar.gz



Other differences:
--
++ ghc-regex-pcre-builtin.spec ++
--- /var/tmp/diff_new_pack.5GuUhB/_old  2019-10-18 14:34:41.512042752 +0200
+++ /var/tmp/diff_new_pack.5GuUhB/_new  2019-10-18 14:34:41.520042731 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-regex-pcre-builtin
 #
-# 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
@@ -18,9 +18,9 @@
 
 %global pkg_name regex-pcre-builtin
 Name:   ghc-%{pkg_name}
-Version:0.94.4.8.8.35
+Version:0.95.1.1.8.43
 Release:0
-Summary:Replaces/Enhances Text.Regex
+Summary:PCRE Backend for "Text.Regex" (regex-base)
 License:BSD-3-Clause
 Group:  Development/Libraries/Haskell
 URL:https://hackage.haskell.org/package/%{pkg_name}
@@ -31,9 +31,15 @@
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-regex-base-devel
 BuildRequires:  ghc-rpm-macros
+BuildRequires:  ghc-text-devel
 
 %description
-The PCRE backend to accompany regex-base, with bundled code from www.pcre.org.
+This package provides a  backend for the
+ API.
+
+See also  for more information.
+
+Includes bundled code from www.pcre.org.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
@@ -66,5 +72,6 @@
 %license LICENSE
 
 %files devel -f %{name}-devel.files
+%doc ChangeLog.md
 
 %changelog

++ regex-pcre-builtin-0.94.4.8.8.35.tar.gz -> 
regex-pcre-builtin-0.95.1.1.8.43.tar.gz ++
 23505 lines of diff (skipped)




commit ghc-regex-pcre-builtin for openSUSE:Factory

2018-10-25 Thread root
Hello community,

here is the log from the commit of package ghc-regex-pcre-builtin for 
openSUSE:Factory checked in at 2018-10-25 09:03:13

Comparing /work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new (New)


Package is "ghc-regex-pcre-builtin"

Thu Oct 25 09:03:13 2018 rev:6 rq:643447 version:0.94.4.8.8.35

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin/ghc-regex-pcre-builtin.changes
2018-07-24 17:21:28.619230194 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new/ghc-regex-pcre-builtin.changes
   2018-10-25 09:03:16.982617018 +0200
@@ -1,0 +2,5 @@
+Sat Oct 20 11:31:55 UTC 2018 - Peter Simons 
+
+- Use https URL to refer to bugs.opensuse.org.
+
+---



Other differences:
--
++ ghc-regex-pcre-builtin.spec ++
--- /var/tmp/diff_new_pack.YFo8di/_old  2018-10-25 09:03:17.774616533 +0200
+++ /var/tmp/diff_new_pack.YFo8di/_new  2018-10-25 09:03:17.778616531 +0200
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 




commit ghc-regex-pcre-builtin for openSUSE:Factory

2018-07-24 Thread root
Hello community,

here is the log from the commit of package ghc-regex-pcre-builtin for 
openSUSE:Factory checked in at 2018-07-24 17:21:27

Comparing /work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new (New)


Package is "ghc-regex-pcre-builtin"

Tue Jul 24 17:21:27 2018 rev:5 rq:623841 version:0.94.4.8.8.35

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin/ghc-regex-pcre-builtin.changes
2018-05-30 12:27:00.162908278 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new/ghc-regex-pcre-builtin.changes
   2018-07-24 17:21:28.619230194 +0200
@@ -1,0 +2,6 @@
+Wed Jul 18 14:26:38 UTC 2018 - psim...@suse.com
+
+- Cosmetic: replace tabs with blanks, strip trailing white space,
+  and update copyright headers with spec-cleaner.
+
+---
@@ -20 +25,0 @@
-



Other differences:
--
++ ghc-regex-pcre-builtin.spec ++
--- /var/tmp/diff_new_pack.THBkXM/_old  2018-07-24 17:21:29.327231101 +0200
+++ /var/tmp/diff_new_pack.THBkXM/_new  2018-07-24 17:21:29.327231101 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-regex-pcre-builtin
 #
-# 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




commit ghc-regex-pcre-builtin for openSUSE:Factory

2018-05-30 Thread root
Hello community,

here is the log from the commit of package ghc-regex-pcre-builtin for 
openSUSE:Factory checked in at 2018-05-30 12:20:27

Comparing /work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new (New)


Package is "ghc-regex-pcre-builtin"

Wed May 30 12:20:27 2018 rev:4 rq:609815 version:0.94.4.8.8.35

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin/ghc-regex-pcre-builtin.changes
2017-09-15 22:09:17.941520293 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new/ghc-regex-pcre-builtin.changes
   2018-05-30 12:27:00.162908278 +0200
@@ -1,0 +2,5 @@
+Wed May 16 14:36:28 UTC 2018 - psim...@suse.com
+
+- Prefer the new %license attribute over %doc.
+
+---



Other differences:
--
++ ghc-regex-pcre-builtin.spec ++
--- /var/tmp/diff_new_pack.0cmtKS/_old  2018-05-30 12:27:00.966880595 +0200
+++ /var/tmp/diff_new_pack.0cmtKS/_new  2018-05-30 12:27:00.966880595 +0200
@@ -63,7 +63,7 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%doc LICENSE
+%license LICENSE
 
 %files devel -f %{name}-devel.files
 




commit ghc-regex-pcre-builtin for openSUSE:Factory

2017-09-15 Thread root
Hello community,

here is the log from the commit of package ghc-regex-pcre-builtin for 
openSUSE:Factory checked in at 2017-09-15 22:09:16

Comparing /work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new (New)


Package is "ghc-regex-pcre-builtin"

Fri Sep 15 22:09:16 2017 rev:3 rq:525290 version:0.94.4.8.8.35

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin/ghc-regex-pcre-builtin.changes
2016-07-20 09:26:43.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new/ghc-regex-pcre-builtin.changes
   2017-09-15 22:09:17.941520293 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-regex-pcre-builtin.spec ++
--- /var/tmp/diff_new_pack.6iDEf8/_old  2017-09-15 22:09:18.577430702 +0200
+++ /var/tmp/diff_new_pack.6iDEf8/_new  2017-09-15 22:09:18.577430702 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-regex-pcre-builtin
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -22,25 +22,22 @@
 Release:0
 Summary:Replaces/Enhances Text.Regex
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+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
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-array-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-regex-base-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 The PCRE backend to accompany regex-base, with bundled code from www.pcre.org.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -53,15 +50,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -69,10 +63,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-regex-pcre-builtin for openSUSE:Factory

2016-07-20 Thread h_root
Hello community,

here is the log from the commit of package ghc-regex-pcre-builtin for 
openSUSE:Factory checked in at 2016-07-20 09:26:40

Comparing /work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new (New)


Package is "ghc-regex-pcre-builtin"

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin/ghc-regex-pcre-builtin.changes
2015-05-27 12:45:32.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new/ghc-regex-pcre-builtin.changes
   2016-07-20 09:26:43.0 +0200
@@ -1,0 +2,5 @@
+Sun Jul 10 17:27:32 UTC 2016 - psim...@suse.com
+
+- Update to version 0.94.4.8.8.35 revision 0 with cabal2obs.
+
+---



Other differences:
--
++ ghc-regex-pcre-builtin.spec ++
--- /var/tmp/diff_new_pack.jTYCBO/_old  2016-07-20 09:26:44.0 +0200
+++ /var/tmp/diff_new_pack.jTYCBO/_new  2016-07-20 09:26:44.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-regex-pcre-builtin
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -15,45 +15,41 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%global pkg_name regex-pcre-builtin
 
+%global pkg_name regex-pcre-builtin
 Name:   ghc-%{pkg_name}
 Version:0.94.4.8.8.35
 Release:0
 Summary:Replaces/Enhances Text.Regex
-Group:  System/Libraries
-
 License:BSD-3-Clause
+Group:  System/Libraries
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-
 BuildRequires:  ghc-Cabal-devel
-BuildRequires:  ghc-rpm-macros
 # Begin cabal-rpm deps:
 BuildRequires:  ghc-array-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-regex-base-devel
+BuildRequires:  ghc-rpm-macros
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 # End cabal-rpm deps
 
 %description
 The PCRE backend to accompany regex-base, with bundled code from www.pcre.org.
 
-
 %package devel
 Summary:Haskell %{pkg_name} library development files
 Group:  Development/Libraries/Other
+Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
 Requires(postun): ghc-compiler = %{ghc_version}
-Requires:   %{name} = %{version}-%{release}
 
 %description devel
 This package provides the Haskell %{pkg_name} library development
 files.
 
-
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
@@ -69,18 +65,14 @@
 %post devel
 %ghc_pkg_recache
 
-
 %postun devel
 %ghc_pkg_recache
 
-
 %files -f %{name}.files
 %defattr(-,root,root,-)
 %doc LICENSE
 
-
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
 
-
 %changelog




commit ghc-regex-pcre-builtin for openSUSE:Factory

2015-05-27 Thread h_root
Hello community,

here is the log from the commit of package ghc-regex-pcre-builtin for 
openSUSE:Factory checked in at 2015-05-27 12:45:31

Comparing /work/SRC/openSUSE:Factory/ghc-regex-pcre-builtin (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new (New)


Package is "ghc-regex-pcre-builtin"

Changes:

New Changes file:

--- /dev/null   2015-05-15 19:41:08.266053825 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-regex-pcre-builtin.new/ghc-regex-pcre-builtin.changes
   2015-05-27 12:45:32.0 +0200
@@ -0,0 +1,5 @@
+---
+Mon Apr 20 12:16:15 UTC 2015 - mimi...@gmail.com
+
+- initial commit 
+

New:

  ghc-regex-pcre-builtin.changes
  ghc-regex-pcre-builtin.spec
  regex-pcre-builtin-0.94.4.8.8.35.tar.gz



Other differences:
--
++ ghc-regex-pcre-builtin.spec ++
#
# spec file for package ghc-regex-pcre-builtin
#
# Copyright (c) 2015 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

%global pkg_name regex-pcre-builtin

Name:   ghc-%{pkg_name}
Version:0.94.4.8.8.35
Release:0
Summary:Replaces/Enhances Text.Regex
Group:  System/Libraries

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
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

BuildRequires:  ghc-Cabal-devel
BuildRequires:  ghc-rpm-macros
# Begin cabal-rpm deps:
BuildRequires:  ghc-array-devel
BuildRequires:  ghc-bytestring-devel
BuildRequires:  ghc-containers-devel
BuildRequires:  ghc-regex-base-devel
# End cabal-rpm deps

%description
The PCRE backend to accompany regex-base, with bundled code from www.pcre.org.


%package devel
Summary:Haskell %{pkg_name} library development files
Group:  Development/Libraries/Other
Requires:   ghc-compiler = %{ghc_version}
Requires(post): ghc-compiler = %{ghc_version}
Requires(postun): ghc-compiler = %{ghc_version}
Requires:   %{name} = %{version}-%{release}

%description devel
This package provides the Haskell %{pkg_name} library development
files.


%prep
%setup -q -n %{pkg_name}-%{version}


%build
%ghc_lib_build


%install
%ghc_lib_install


%post devel
%ghc_pkg_recache


%postun devel
%ghc_pkg_recache


%files -f %{name}.files
%defattr(-,root,root,-)
%doc LICENSE


%files devel -f %{name}-devel.files
%defattr(-,root,root,-)


%changelog