commit ghc-unicode-transforms for openSUSE:Factory

2020-10-23 Thread root
Hello community,

here is the log from the commit of package ghc-unicode-transforms for 
openSUSE:Factory checked in at 2020-10-23 15:15:15

Comparing /work/SRC/openSUSE:Factory/ghc-unicode-transforms (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new.3463 (New)


Package is "ghc-unicode-transforms"

Fri Oct 23 15:15:15 2020 rev:11 rq:842772 version:0.3.7.1

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-unicode-transforms/ghc-unicode-transforms.changes
2020-08-28 21:40:16.740862973 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new.3463/ghc-unicode-transforms.changes
  2020-10-23 15:15:18.978162287 +0200
@@ -1,0 +2,8 @@
+Tue Oct 13 07:00:26 UTC 2020 - psim...@suse.com
+
+- Update unicode-transforms to version 0.3.7.1.
+  ## 0.3.7.1
+
+  * Fix x32 build
+
+---

Old:

  unicode-transforms-0.3.7.tar.gz

New:

  unicode-transforms-0.3.7.1.tar.gz



Other differences:
--
++ ghc-unicode-transforms.spec ++
--- /var/tmp/diff_new_pack.OpJESI/_old  2020-10-23 15:15:21.214163366 +0200
+++ /var/tmp/diff_new_pack.OpJESI/_new  2020-10-23 15:15:21.218163367 +0200
@@ -19,7 +19,7 @@
 %global pkg_name unicode-transforms
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:0.3.7
+Version:0.3.7.1
 Release:0
 Summary:Unicode normalization
 License:BSD-3-Clause

++ unicode-transforms-0.3.7.tar.gz -> unicode-transforms-0.3.7.1.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unicode-transforms-0.3.7/Changelog.md 
new/unicode-transforms-0.3.7.1/Changelog.md
--- old/unicode-transforms-0.3.7/Changelog.md   2001-09-09 03:46:40.0 
+0200
+++ new/unicode-transforms-0.3.7.1/Changelog.md 2020-10-11 23:37:59.0 
+0200
@@ -1,3 +1,7 @@
+## 0.3.7.1
+
+* Fix x32 build
+
 ## 0.3.7
 
 * Significant performance improvements
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/unicode-transforms-0.3.7/Data/Unicode/Internal/Bits.hs 
new/unicode-transforms-0.3.7.1/Data/Unicode/Internal/Bits.hs
--- old/unicode-transforms-0.3.7/Data/Unicode/Internal/Bits.hs  2001-09-09 
03:46:40.0 +0200
+++ new/unicode-transforms-0.3.7.1/Data/Unicode/Internal/Bits.hs
2020-09-27 00:20:30.0 +0200
@@ -1,3 +1,4 @@
+{-# LANGUAGE BangPatterns #-}
 {-# LANGUAGE MagicHash #-}
 -- |
 -- Module  : Data.Unicode.Internal.Bits
@@ -16,8 +17,9 @@
   lookupBit64
 ) where
 
+import Data.Bits (finiteBitSize, popCount)
 import GHC.Exts
-   (Addr#, Int(..), Word(..), indexWord64OffAddr#, and#, andI#,
+   (Addr#, Int(..), Word(..), indexWordOffAddr#, and#, andI#,
 uncheckedIShiftRL#, uncheckedShiftL#)
 
 -- | @lookup64 addr index@ looks up the bit stored at bit index @index@ using a
@@ -29,7 +31,13 @@
 lookupBit64 :: Addr# -> Int -> Bool
 lookupBit64 addr# (I# index#) = W# (word## `and#` bitMask##) /= 0
   where
-wordIndex# = index# `uncheckedIShiftRL#` 6#
-word## = indexWord64OffAddr# addr# wordIndex#
-bitIndex# = index# `andI#` 63#
+!fbs@(I# fbs#) = finiteBitSize (0 :: Word) - 1
+!(I# logFbs#) = case fbs of
+  31 -> 5
+  63 -> 6
+  _  -> popCount fbs -- this is a really weird architecture
+
+wordIndex# = index# `uncheckedIShiftRL#` logFbs#
+word## = indexWordOffAddr# addr# wordIndex#
+bitIndex# = index# `andI#` fbs#
 bitMask## = 1## `uncheckedShiftL#` bitIndex#
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unicode-transforms-0.3.7/unicode-transforms.cabal 
new/unicode-transforms-0.3.7.1/unicode-transforms.cabal
--- old/unicode-transforms-0.3.7/unicode-transforms.cabal   2001-09-09 
03:46:40.0 +0200
+++ new/unicode-transforms-0.3.7.1/unicode-transforms.cabal 2020-10-12 
20:15:53.0 +0200
@@ -1,13 +1,13 @@
 cabal-version: 2.2
 
 name:   unicode-transforms
-version:0.3.7
+version:0.3.7.1
 synopsis:   Unicode normalization
 description:Fast Unicode 13.0.0 normalization in Haskell (NFC, NFKC, NFD, 
NFKD).
 category:   Data,Text,Unicode
 stability:  Experimental
-homepage:   http://github.com/harendra-kumar/unicode-transforms
-bug-reports:https://github.com/harendra-kumar/unicode-transforms/issues
+homepage:   http://github.com/composewell/unicode-transforms
+bug-reports:https://github.com/composewell/unicode-transforms/issues
 author: Harendra Kumar
 maintainer: harendra.ku...@gmail.com
 copyright:  2016-2017 Harendra Kumar,
@@ -51,7 +51,7 @@
 
 source-repository head
   type: git
-  location: 

commit ghc-unicode-transforms for openSUSE:Factory

2020-08-28 Thread root
Hello community,

here is the log from the commit of package ghc-unicode-transforms for 
openSUSE:Factory checked in at 2020-08-28 21:40:15

Comparing /work/SRC/openSUSE:Factory/ghc-unicode-transforms (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new.3399 (New)


Package is "ghc-unicode-transforms"

Fri Aug 28 21:40:15 2020 rev:10 rq:829467 version:0.3.7

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-unicode-transforms/ghc-unicode-transforms.changes
2020-06-19 17:20:17.275354161 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new.3399/ghc-unicode-transforms.changes
  2020-08-28 21:40:16.740862973 +0200
@@ -1,0 +2,14 @@
+Tue Aug 18 17:11:54 UTC 2020 - psim...@suse.com
+
+- Update unicode-transforms to version 0.3.7.
+  ## 0.3.7
+
+  * Significant performance improvements
+  * Update to Unicode version 13.0.0
+
+---
+Tue Aug 18 10:46:25 UTC 2020 - Peter Simons 
+
+- Replace %setup -q with the more modern %autosetup macro.
+
+---

Old:

  unicode-transforms-0.3.6.tar.gz

New:

  unicode-transforms-0.3.7.tar.gz



Other differences:
--
++ ghc-unicode-transforms.spec ++
--- /var/tmp/diff_new_pack.OiIZ0a/_old  2020-08-28 21:40:17.376863207 +0200
+++ /var/tmp/diff_new_pack.OiIZ0a/_new  2020-08-28 21:40:17.380863208 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-unicode-transforms
 #
-# Copyright (c) 2019 SUSE LLC
+# 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
@@ -19,14 +19,13 @@
 %global pkg_name unicode-transforms
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:0.3.6
+Version:0.3.7
 Release:0
 Summary:Unicode normalization
 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
 BuildRequires:  ghc-Cabal-devel
-BuildRequires:  ghc-bitarray-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-text-devel
@@ -34,11 +33,12 @@
 BuildRequires:  ghc-QuickCheck-devel
 BuildRequires:  ghc-deepseq-devel
 BuildRequires:  ghc-getopt-generics-devel
+BuildRequires:  ghc-hspec-devel
 BuildRequires:  ghc-split-devel
 %endif
 
 %description
-Fast Unicode 12.1.0 normalization in Haskell (NFC, NFKC, NFD, NFKD).
+Fast Unicode 13.0.0 normalization in Haskell (NFC, NFKC, NFD, NFKD).
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
@@ -52,7 +52,7 @@
 files.
 
 %prep
-%setup -q -n %{pkg_name}-%{version}
+%autosetup -n %{pkg_name}-%{version}
 
 %build
 %ghc_lib_build

++ unicode-transforms-0.3.6.tar.gz -> unicode-transforms-0.3.7.tar.gz ++
 3093 lines of diff (skipped)




commit ghc-unicode-transforms for openSUSE:Factory

2020-06-19 Thread root
Hello community,

here is the log from the commit of package ghc-unicode-transforms for 
openSUSE:Factory checked in at 2020-06-19 17:20:16

Comparing /work/SRC/openSUSE:Factory/ghc-unicode-transforms (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new.3606 (New)


Package is "ghc-unicode-transforms"

Fri Jun 19 17:20:16 2020 rev:9 rq:815204 version:0.3.6

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-unicode-transforms/ghc-unicode-transforms.changes
2019-12-27 13:58:49.144816327 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new.3606/ghc-unicode-transforms.changes
  2020-06-19 17:20:17.275354161 +0200
@@ -1,0 +2,5 @@
+Tue Jun 16 11:14:46 UTC 2020 - Peter Simons 
+
+- Re-generate file with latest version of spec-cleaner.
+
+---



Other differences:
--
++ ghc-unicode-transforms.spec ++
--- /var/tmp/diff_new_pack.M1FCQ0/_old  2020-06-19 17:20:18.039356169 +0200
+++ /var/tmp/diff_new_pack.M1FCQ0/_new  2020-06-19 17:20:18.043356179 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-unicode-transforms
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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-unicode-transforms for openSUSE:Factory

2019-12-27 Thread root
Hello community,

here is the log from the commit of package ghc-unicode-transforms for 
openSUSE:Factory checked in at 2019-12-27 13:58:43

Comparing /work/SRC/openSUSE:Factory/ghc-unicode-transforms (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new.6675 (New)


Package is "ghc-unicode-transforms"

Fri Dec 27 13:58:43 2019 rev:8 rq:759547 version:0.3.6

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-unicode-transforms/ghc-unicode-transforms.changes
2019-06-19 21:13:02.278779673 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new.6675/ghc-unicode-transforms.changes
  2019-12-27 13:58:49.144816327 +0100
@@ -1,0 +2,5 @@
+Fri Nov  8 16:15:06 UTC 2019 - Peter Simons 
+
+- Drop obsolete group attributes.
+
+---



Other differences:
--
++ ghc-unicode-transforms.spec ++
--- /var/tmp/diff_new_pack.wwOsUu/_old  2019-12-27 13:58:50.028816754 +0100
+++ /var/tmp/diff_new_pack.wwOsUu/_new  2019-12-27 13:58:50.028816754 +0100
@@ -23,7 +23,6 @@
 Release:0
 Summary:Unicode normalization
 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-unicode-transforms for openSUSE:Factory

2018-12-06 Thread root
Hello community,

here is the log from the commit of package ghc-unicode-transforms for 
openSUSE:Factory checked in at 2018-12-06 12:16:32

Comparing /work/SRC/openSUSE:Factory/ghc-unicode-transforms (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new.19453 (New)


Package is "ghc-unicode-transforms"

Thu Dec  6 12:16:32 2018 rev:6 rq:650508 version:0.3.5

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-unicode-transforms/ghc-unicode-transforms.changes
2018-10-25 09:06:45.654489939 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new.19453/ghc-unicode-transforms.changes
 2018-12-06 12:16:35.673566344 +0100
@@ -1,0 +2,9 @@
+Sat Nov 17 03:01:51 UTC 2018 - psim...@suse.com
+
+- Update unicode-transforms to version 0.3.5.
+  ## 0.3.5
+
+  * Update dependency version bounds
+  * Test with GHC 8.6.2
+
+---

Old:

  unicode-transforms-0.3.4.tar.gz

New:

  unicode-transforms-0.3.5.tar.gz



Other differences:
--
++ ghc-unicode-transforms.spec ++
--- /var/tmp/diff_new_pack.pNvrun/_old  2018-12-06 12:16:36.781565154 +0100
+++ /var/tmp/diff_new_pack.pNvrun/_new  2018-12-06 12:16:36.785565149 +0100
@@ -19,7 +19,7 @@
 %global pkg_name unicode-transforms
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:0.3.4
+Version:0.3.5
 Release:0
 Summary:Unicode normalization
 License:BSD-3-Clause

++ unicode-transforms-0.3.4.tar.gz -> unicode-transforms-0.3.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unicode-transforms-0.3.4/Changelog.md 
new/unicode-transforms-0.3.5/Changelog.md
--- old/unicode-transforms-0.3.4/Changelog.md   2018-04-05 11:30:57.0 
+0200
+++ new/unicode-transforms-0.3.5/Changelog.md   2018-11-16 05:39:38.0 
+0100
@@ -1,3 +1,8 @@
+## 0.3.5
+
+* Update dependency version bounds
+* Test with GHC 8.6.2
+
 ## 0.3.4
 
 * GHC 8.4.1 support
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unicode-transforms-0.3.4/README.md 
new/unicode-transforms-0.3.5/README.md
--- old/unicode-transforms-0.3.4/README.md  2018-04-05 12:16:09.0 
+0200
+++ new/unicode-transforms-0.3.5/README.md  2018-11-16 07:34:08.0 
+0100
@@ -1,5 +1,10 @@
 # Unicode Transforms
 
+[![Hackage](https://img.shields.io/hackage/v/unicode-transforms.svg?style=flat)](https://hackage.haskell.org/package/unicode-transforms)
+[![Build 
Status](https://travis-ci.org/composewell/unicode-transforms.svg?branch=master)](https://travis-ci.org/composewell/unicode-transforms)
+[![Windows Build 
status](https://ci.appveyor.com/api/projects/status/5wov8m1m0asvbv32?svg=true)](https://ci.appveyor.com/project/harendra-kumar/unicode-transforms)
+[![Coverage 
Status](https://coveralls.io/repos/composewell/unicode-transforms/badge.svg?branch=master=github)](https://coveralls.io/github/composewell/unicode-transforms?branch=master)
+
 Fast Unicode 9.0 normalization in Haskell (NFC, NFKC, NFD, NFKD).
 
 ## What is normalization?
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unicode-transforms-0.3.4/stack-7.10.yaml 
new/unicode-transforms-0.3.5/stack-7.10.yaml
--- old/unicode-transforms-0.3.4/stack-7.10.yaml2018-03-18 
23:12:59.0 +0100
+++ new/unicode-transforms-0.3.5/stack-7.10.yaml2018-11-16 
05:39:38.0 +0100
@@ -3,5 +3,5 @@
 resolver: lts-6.35
 extra-deps:
 - bitarray-0.0.1.1
-- gauge-0.2.1
+- gauge-0.2.4
 - basement-0.0.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unicode-transforms-0.3.4/stack.yaml 
new/unicode-transforms-0.3.5/stack.yaml
--- old/unicode-transforms-0.3.4/stack.yaml 2018-04-05 11:39:04.0 
+0200
+++ new/unicode-transforms-0.3.5/stack.yaml 2018-11-16 05:39:38.0 
+0100
@@ -1,8 +1,3 @@
 packages:
 - '.'
-resolver: lts-11.3
-extra-deps:
-- bitarray-0.0.1.1
-- gauge-0.2.1
-- basement-0.0.7
-- getopt-generics-0.13.0.2
+resolver: lts-12.18
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unicode-transforms-0.3.4/unicode-transforms.cabal 
new/unicode-transforms-0.3.5/unicode-transforms.cabal
--- old/unicode-transforms-0.3.4/unicode-transforms.cabal   2018-04-05 
11:42:05.0 +0200
+++ new/unicode-transforms-0.3.5/unicode-transforms.cabal   2018-11-16 
05:39:38.0 +0100
@@ -1,11 +1,11 @@
--- This file has been generated from package.yaml by hpack version 0.20.0.
+-- This file has been generated from package.yaml by hpack version 0.28.2.
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 

commit ghc-unicode-transforms for openSUSE:Factory

2018-10-25 Thread root
Hello community,

here is the log from the commit of package ghc-unicode-transforms for 
openSUSE:Factory checked in at 2018-10-25 09:06:45

Comparing /work/SRC/openSUSE:Factory/ghc-unicode-transforms (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new (New)


Package is "ghc-unicode-transforms"

Thu Oct 25 09:06:45 2018 rev:5 rq:643482 version:0.3.4

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-unicode-transforms/ghc-unicode-transforms.changes
2018-07-21 10:24:08.686973091 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new/ghc-unicode-transforms.changes
   2018-10-25 09:06:45.654489939 +0200
@@ -1,0 +2,5 @@
+Sat Oct 20 11:32:10 UTC 2018 - Peter Simons 
+
+- Use https URL to refer to bugs.opensuse.org.
+
+---



Other differences:
--
++ ghc-unicode-transforms.spec ++
--- /var/tmp/diff_new_pack.IloqZL/_old  2018-10-25 09:06:46.090489679 +0200
+++ /var/tmp/diff_new_pack.IloqZL/_new  2018-10-25 09:06:46.090489679 +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-unicode-transforms for openSUSE:Factory

2018-07-21 Thread root
Hello community,

here is the log from the commit of package ghc-unicode-transforms for 
openSUSE:Factory checked in at 2018-07-21 10:24:06

Comparing /work/SRC/openSUSE:Factory/ghc-unicode-transforms (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new (New)


Package is "ghc-unicode-transforms"

Sat Jul 21 10:24:06 2018 rev:4 rq:623883 version:0.3.4

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-unicode-transforms/ghc-unicode-transforms.changes
2018-05-30 12:27:44.597363891 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new/ghc-unicode-transforms.changes
   2018-07-21 10:24:08.686973091 +0200
@@ -1,0 +2,6 @@
+Wed Jul 18 14:26:46 UTC 2018 - psim...@suse.com
+
+- Cosmetic: replace tabs with blanks, strip trailing white space,
+  and update copyright headers with spec-cleaner.
+
+---
@@ -22 +27,0 @@
-



Other differences:
--



commit ghc-unicode-transforms for openSUSE:Factory

2018-05-30 Thread root
Hello community,

here is the log from the commit of package ghc-unicode-transforms for 
openSUSE:Factory checked in at 2018-05-30 12:15:12

Comparing /work/SRC/openSUSE:Factory/ghc-unicode-transforms (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new (New)


Package is "ghc-unicode-transforms"

Wed May 30 12:15:12 2018 rev:3 rq:607913 version:0.3.4

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-unicode-transforms/ghc-unicode-transforms.changes
2017-08-31 21:01:16.542848721 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-unicode-transforms.new/ghc-unicode-transforms.changes
   2018-05-30 12:27:44.597363891 +0200
@@ -1,0 +2,7 @@
+Mon May 14 17:02:11 UTC 2018 - psim...@suse.com
+
+- Update unicode-transforms to version 0.3.4.
+  * GHC 8.4.1 support
+  * GHC 8.2.1 support
+
+---

Old:

  unicode-transforms-0.3.2.tar.gz

New:

  unicode-transforms-0.3.4.tar.gz



Other differences:
--
++ ghc-unicode-transforms.spec ++
--- /var/tmp/diff_new_pack.3PPvbW/_old  2018-05-30 12:27:45.377336529 +0200
+++ /var/tmp/diff_new_pack.3PPvbW/_new  2018-05-30 12:27:45.381336388 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-unicode-transforms
 #
-# 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
@@ -19,19 +19,18 @@
 %global pkg_name unicode-transforms
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:0.3.2
+Version:0.3.4
 Release:0
 Summary:Unicode normalization
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-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
 BuildRequires:  ghc-bitarray-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-text-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-QuickCheck-devel
 BuildRequires:  ghc-deepseq-devel
@@ -44,7 +43,7 @@
 
 %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}
@@ -73,11 +72,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
-%doc LICENSE
+%license LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc Changelog.md README.md
 
 %changelog

++ unicode-transforms-0.3.2.tar.gz -> unicode-transforms-0.3.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unicode-transforms-0.3.2/Changelog.md 
new/unicode-transforms-0.3.4/Changelog.md
--- old/unicode-transforms-0.3.2/Changelog.md   2017-07-23 08:32:30.0 
+0200
+++ new/unicode-transforms-0.3.4/Changelog.md   2018-04-05 11:30:57.0 
+0200
@@ -1,3 +1,11 @@
+## 0.3.4
+
+* GHC 8.4.1 support
+
+## 0.3.3
+
+* GHC 8.2.1 support
+
 ## 0.3.2
 
 * Work around a GHC/LLVM issue for ARM
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/unicode-transforms-0.3.2/Data/Unicode/Properties/CombiningClass.hs 
new/unicode-transforms-0.3.4/Data/Unicode/Properties/CombiningClass.hs
--- old/unicode-transforms-0.3.2/Data/Unicode/Properties/CombiningClass.hs  
2017-02-05 23:26:01.0 +0100
+++ new/unicode-transforms-0.3.4/Data/Unicode/Properties/CombiningClass.hs  
2017-12-01 06:31:18.0 +0100
@@ -830,9 +830,10 @@
 isCombining :: Char -> Bool
 isCombining c | (ord c) < 768 || (ord c) > 125258 = False
 isCombining c = lookupBit combiningBitmap (ord c)
-bitList :: [Int]
-bitList =