Hello community,

here is the log from the commit of package ghc-fast-builder for 
openSUSE:Factory checked in at 2017-09-15 22:30:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-fast-builder (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-fast-builder.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-fast-builder"

Fri Sep 15 22:30:54 2017 rev:2 rq:526006 version:0.0.0.6

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-fast-builder/ghc-fast-builder.changes        
2016-11-01 09:51:51.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-fast-builder.new/ghc-fast-builder.changes   
2017-09-15 22:30:55.586718434 +0200
@@ -1,0 +2,11 @@
+Thu Sep 14 05:39:21 UTC 2017 - [email protected]
+
+- add remove-debug-flag.patch
+  * fixes build on PowerPC 
+
+-------------------------------------------------------------------
+Thu Aug  3 15:38:38 UTC 2017 - [email protected]
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+-------------------------------------------------------------------

New:
----
  remove-debug-flag.patch

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

Other differences:
------------------
++++++ ghc-fast-builder.spec ++++++
--- /var/tmp/diff_new_pack.zMYa93/_old  2017-09-15 22:30:56.286619842 +0200
+++ /var/tmp/diff_new_pack.zMYa93/_new  2017-09-15 22:30:56.290619279 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-fast-builder
 #
-# 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
@@ -23,20 +23,19 @@
 Release:        0
 Summary:        Fast ByteString Builder
 License:        SUSE-Public-Domain
-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
+# PATCH-FIX-UPSTREAM remove-debug-flag.patch [email protected] -- Fix build 
on PowerPC where debug information is not implemented in GHC yet.
+Patch1:         remove-debug-flag.patch
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-QuickCheck-devel
 BuildRequires:  ghc-process-devel
 BuildRequires:  ghc-stm-devel
 %endif
-# End cabal-rpm deps
 
 %description
 An efficient implementation of ByteString builder. It should be faster than the
@@ -46,7 +45,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}
@@ -57,21 +56,16 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
-
+%patch1 -p1
 
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache
@@ -80,10 +74,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog

++++++ remove-debug-flag.patch ++++++
Index: fast-builder-0.0.0.6/fast-builder.cabal
===================================================================
--- fast-builder-0.0.0.6.orig/fast-builder.cabal
+++ fast-builder-0.0.0.6/fast-builder.cabal
@@ -27,7 +27,7 @@ library
   build-depends:       base >= 4.8 && < 4.10, bytestring >= 0.10.6.0, ghc-prim
   -- hs-source-dirs:
   default-language:    Haskell2010
-  ghc-options:         -Wall -g
+  ghc-options:         -Wall
 
 benchmark aeson
   type:                exitcode-stdio-1.0
@@ -39,28 +39,28 @@ benchmark aeson
     scientific, text, vector, deepseq, unordered-containers, ghc-prim,
     template-haskell, true-name >= 0.1.0.0
   ghc-options:         -fsimpl-tick-factor=120
-  ghc-options:         -Wall -threaded -g -rtsopts
+  ghc-options:         -Wall -threaded -rtsopts
 
 benchmark vector
   type:                exitcode-stdio-1.0
   main-is:             vector.hs
   hs-source-dirs:      benchmarks
   build-depends:       base, fast-builder, criterion, bytestring, vector, 
deepseq
-  ghc-options:         -Wall -threaded -g -rtsopts -eventlog
+  ghc-options:         -Wall -threaded -rtsopts -eventlog
 
 benchmark map
   type:                exitcode-stdio-1.0
   main-is:             map.hs
   hs-source-dirs:      benchmarks
   build-depends:       base, fast-builder, criterion, bytestring, containers, 
deepseq
-  ghc-options:         -Wall -threaded -g -rtsopts -eventlog
+  ghc-options:         -Wall -threaded -rtsopts -eventlog
 
 test-suite prop
   type:                exitcode-stdio-1.0
   main-is:             prop.hs
   hs-source-dirs:      tests
   build-depends:       base, fast-builder, bytestring, QuickCheck, stm, process
-  ghc-options:         -Wall -g -rtsopts
+  ghc-options:         -Wall -rtsopts
 
 source-repository head
   type:                git

Reply via email to