Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-indexed-profunctors for 
openSUSE:Factory checked in at 2023-06-30 19:58:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-indexed-profunctors (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-indexed-profunctors.new.13546 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-indexed-profunctors"

Fri Jun 30 19:58:51 2023 rev:6 rq:1096038 version:0.1.1.1

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/ghc-indexed-profunctors/ghc-indexed-profunctors.changes
  2023-04-04 21:21:05.377424377 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-indexed-profunctors.new.13546/ghc-indexed-profunctors.changes
       2023-06-30 19:59:11.577757925 +0200
@@ -1,0 +2,7 @@
+Thu Jun 22 21:12:45 UTC 2023 - Peter Simons <[email protected]>
+
+- Update indexed-profunctors to version 0.1.1.1.
+  # indexed-profunctors-0.1.1.1 (2023-06-22)
+  * Add INLINE pragmas to small functions that really should inline
+
+-------------------------------------------------------------------

Old:
----
  indexed-profunctors-0.1.1.tar.gz

New:
----
  indexed-profunctors-0.1.1.1.tar.gz

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

Other differences:
------------------
++++++ ghc-indexed-profunctors.spec ++++++
--- /var/tmp/diff_new_pack.yTicch/_old  2023-06-30 19:59:12.093760994 +0200
+++ /var/tmp/diff_new_pack.yTicch/_new  2023-06-30 19:59:12.097761018 +0200
@@ -19,7 +19,7 @@
 %global pkg_name indexed-profunctors
 %global pkgver %{pkg_name}-%{version}
 Name:           ghc-%{pkg_name}
-Version:        0.1.1
+Version:        0.1.1.1
 Release:        0
 Summary:        Utilities for indexed profunctors
 License:        BSD-3-Clause

++++++ indexed-profunctors-0.1.1.tar.gz -> indexed-profunctors-0.1.1.1.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/indexed-profunctors-0.1.1/CHANGELOG.md 
new/indexed-profunctors-0.1.1.1/CHANGELOG.md
--- old/indexed-profunctors-0.1.1/CHANGELOG.md  2001-09-09 03:46:40.000000000 
+0200
+++ new/indexed-profunctors-0.1.1.1/CHANGELOG.md        2001-09-09 
03:46:40.000000000 +0200
@@ -1,3 +1,6 @@
+# indexed-profunctors-0.1.1.1 (2023-06-22)
+* Add INLINE pragmas to small functions that really should inline
+
 # indexed-profunctors-0.1.1 (2021-04-09)
 * Remove unnecessary INLINE pragmas
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/indexed-profunctors-0.1.1/indexed-profunctors.cabal 
new/indexed-profunctors-0.1.1.1/indexed-profunctors.cabal
--- old/indexed-profunctors-0.1.1/indexed-profunctors.cabal     2001-09-09 
03:46:40.000000000 +0200
+++ new/indexed-profunctors-0.1.1.1/indexed-profunctors.cabal   2001-09-09 
03:46:40.000000000 +0200
@@ -1,12 +1,13 @@
+cabal-version: 2.2
 name:          indexed-profunctors
-version:       0.1.1
-license:       BSD3
+version:       0.1.1.1
+license:       BSD-3-Clause
 license-file:  LICENSE
 build-type:    Simple
-cabal-version: 1.24
 maintainer:    [email protected]
 author:        Adam Gundry, Andres Löh, Andrzej Rybczak, Oleg Grenrus
-tested-with:   GHC ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.4 || 
==9.0.1, GHCJS ==8.4
+tested-with:   GHC ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7
+                || ==9.0.2 || ==9.2.8 || ==9.4.5 || ==9.6.2, GHCJS ==8.4
 synopsis:      Utilities for indexed profunctors
 category:      Data, Optics, Lenses, Profunctors
 description:
@@ -23,10 +24,40 @@
   location: https://github.com/well-typed/optics.git
   subdir:   indexed-profunctors
 
+common language
+    ghc-options:        -Wall -Wcompat
+
+    default-language:   Haskell2010
+
+    default-extensions: BangPatterns
+                        ConstraintKinds
+                        DefaultSignatures
+                        DeriveFoldable
+                        DeriveFunctor
+                        DeriveGeneric
+                        DeriveTraversable
+                        EmptyCase
+                        FlexibleContexts
+                        FlexibleInstances
+                        FunctionalDependencies
+                        GADTs
+                        GeneralizedNewtypeDeriving
+                        InstanceSigs
+                        KindSignatures
+                        LambdaCase
+                        OverloadedLabels
+                        PatternSynonyms
+                        RankNTypes
+                        ScopedTypeVariables
+                        TupleSections
+                        TypeApplications
+                        TypeFamilies
+                        TypeOperators
+                        ViewPatterns
+
 library
-  default-language: Haskell2010
+  import:           language
   hs-source-dirs:   src
-  ghc-options:      -Wall
 
   build-depends: base                   >= 4.10       && <5
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/indexed-profunctors-0.1.1/src/Data/Profunctor/Indexed.hs 
new/indexed-profunctors-0.1.1.1/src/Data/Profunctor/Indexed.hs
--- old/indexed-profunctors-0.1.1/src/Data/Profunctor/Indexed.hs        
2001-09-09 03:46:40.000000000 +0200
+++ new/indexed-profunctors-0.1.1.1/src/Data/Profunctor/Indexed.hs      
2001-09-09 03:46:40.000000000 +0200
@@ -1,10 +1,4 @@
-{-# LANGUAGE DefaultSignatures #-}
-{-# LANGUAGE DeriveFunctor #-}
-{-# LANGUAGE RankNTypes #-}
-{-# LANGUAGE ScopedTypeVariables #-}
-{-# LANGUAGE TupleSections #-}
 {-# OPTIONS_HADDOCK not-home #-}
-
 -- | Definitions of concrete profunctors and profunctor classes.
 module Data.Profunctor.Indexed
   (
@@ -667,6 +661,7 @@
 (#.) :: Coercible b c => (b -> c) -> (a -> b) -> (a -> c)
 (#.) _f = coerce
 infixl 8 .#
+{-# INLINE (.#) #-}
 
 -- | Composition operator where the second argument must be an
 -- identity function up to representational equivalence (e.g. a
@@ -674,3 +669,4 @@
 (.#) :: Coercible a b => (b -> c) -> (a -> b) -> (a -> c)
 (.#) f _g = coerce f
 infixr 9 #.
+{-# INLINE (#.) #-}

Reply via email to