Hello community,

here is the log from the commit of package ghc-mono-traversable for 
openSUSE:Factory checked in at 2017-02-08 12:07:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-mono-traversable (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-mono-traversable.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-mono-traversable"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/ghc-mono-traversable/ghc-mono-traversable.changes    
    2017-02-03 17:39:27.837730421 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-mono-traversable.new/ghc-mono-traversable.changes
   2017-02-08 12:07:05.397120320 +0100
@@ -1,0 +2,5 @@
+Thu Jan 26 16:20:10 UTC 2017 - [email protected]
+
+- Update to version 1.0.1.1 with cabal2obs.
+
+-------------------------------------------------------------------

Old:
----
  mono-traversable-1.0.1.tar.gz
  mono-traversable.cabal

New:
----
  mono-traversable-1.0.1.1.tar.gz

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

Other differences:
------------------
++++++ ghc-mono-traversable.spec ++++++
--- /var/tmp/diff_new_pack.xvACFb/_old  2017-02-08 12:07:05.957041354 +0100
+++ /var/tmp/diff_new_pack.xvACFb/_new  2017-02-08 12:07:05.961040791 +0100
@@ -19,14 +19,13 @@
 %global pkg_name mono-traversable
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        1.0.1
+Version:        1.0.1.1
 Release:        0
 Summary:        Type classes for mapping, folding, and traversing monomorphic 
containers
 License:        MIT
 Group:          Development/Languages/Other
 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-containers-devel
@@ -67,7 +66,6 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build
@@ -90,5 +88,6 @@
 
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
+%doc ChangeLog.md README.md
 
 %changelog

++++++ mono-traversable-1.0.1.tar.gz -> mono-traversable-1.0.1.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mono-traversable-1.0.1/ChangeLog.md 
new/mono-traversable-1.0.1.1/ChangeLog.md
--- old/mono-traversable-1.0.1/ChangeLog.md     2016-09-15 14:34:12.000000000 
+0200
+++ new/mono-traversable-1.0.1.1/ChangeLog.md   2017-01-20 08:53:47.000000000 
+0100
@@ -1,3 +1,7 @@
+## 1.0.1.1
+
+* Fix typo in rewrite rule
+
 ## 1.0.1
 
 * Add `replaceElem` and `replaceSeq` 
[#107](https://github.com/snoyberg/mono-traversable/pull/107)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mono-traversable-1.0.1/mono-traversable.cabal 
new/mono-traversable-1.0.1.1/mono-traversable.cabal
--- old/mono-traversable-1.0.1/mono-traversable.cabal   2016-09-15 
14:34:12.000000000 +0200
+++ new/mono-traversable-1.0.1.1/mono-traversable.cabal 2017-01-20 
08:53:47.000000000 +0100
@@ -1,5 +1,5 @@
 name:                mono-traversable
-version:             1.0.1
+version:             1.0.1.1
 synopsis:            Type classes for mapping, folding, and traversing 
monomorphic containers
 description:         Monomorphic variants of the Functor, Foldable, and 
Traversable typeclasses. If you understand Haskell's basic typeclasses, you 
understand mono-traversable. In addition to what you are used to, it adds on an 
IsSequence typeclass and has code for marking data structures as non-empty.
 homepage:            https://github.com/snoyberg/mono-traversable
@@ -20,7 +20,7 @@
                        Data.Containers
                        Data.Sequences
                        Data.NonNull
-  build-depends:       base >= 4.5 && < 5
+  build-depends:       base >= 4.7 && < 5
                      , containers >= 0.4
                      , unordered-containers >=0.2
                      , hashable
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mono-traversable-1.0.1/src/Data/MonoTraversable.hs 
new/mono-traversable-1.0.1.1/src/Data/MonoTraversable.hs
--- old/mono-traversable-1.0.1/src/Data/MonoTraversable.hs      2016-09-15 
14:34:12.000000000 +0200
+++ new/mono-traversable-1.0.1.1/src/Data/MonoTraversable.hs    2017-01-20 
08:53:47.000000000 +0100
@@ -836,7 +836,7 @@
 {-# INLINE [0] onotElem #-}
 
 {-# RULES "strict ByteString elem" oelem = S.elem #-}
-{-# RULES "strict ByteString notElem" oelem = S.notElem #-}
+{-# RULES "strict ByteString notElem" onotElem = S.notElem #-}
 
 {-# RULES "lazy ByteString elem" oelem = L.elem #-}
 {-# RULES "lazy ByteString notElem" oelem = L.notElem #-}


Reply via email to