commit wicked for openSUSE:13.2:Update

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package wicked for openSUSE:13.2:Update 
checked in at 2016-02-29 20:11:18

Comparing /work/SRC/openSUSE:13.2:Update/wicked (Old)
 and  /work/SRC/openSUSE:13.2:Update/.wicked.new (New)


Package is "wicked"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.Rgw4iG/_old  2016-02-29 20:11:22.0 +0100
+++ /var/tmp/diff_new_pack.Rgw4iG/_new  2016-02-29 20:11:22.0 +0100
@@ -1 +1 @@
-
+




commit python3-mistune for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package python3-mistune for openSUSE:Factory 
checked in at 2016-02-29 09:14:17

Comparing /work/SRC/openSUSE:Factory/python3-mistune (Old)
 and  /work/SRC/openSUSE:Factory/.python3-mistune.new (New)


Package is "python3-mistune"

Changes:

--- /work/SRC/openSUSE:Factory/python3-mistune/python3-mistune.changes  
2015-10-20 00:06:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-mistune.new/python3-mistune.changes 
2016-02-29 09:16:01.0 +0100
@@ -1,0 +2,12 @@
+Sat Feb 27 16:33:51 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 0.7.2:
+  * Fix hard_wrap options on renderer.
+  * Fix emphasis regex pattern
+  * Fix base64 image link #80.
+  * Fix link security per #87.
+
+---

Old:

  mistune-0.7.1.tar.gz

New:

  mistune-0.7.2.tar.gz



Other differences:
--
++ python3-mistune.spec ++
--- /var/tmp/diff_new_pack.lXnUoR/_old  2016-02-29 09:16:03.0 +0100
+++ /var/tmp/diff_new_pack.lXnUoR/_new  2016-02-29 09:16:03.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-mistune
 #
-# 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
@@ -17,7 +17,7 @@
 
 
 Name:   python3-mistune
-Version:0.7.1
+Version:0.7.2
 Release:0
 Summary:The fastest markdown parser in pure Python
 License:BSD-3-Clause

++ mistune-0.7.1.tar.gz -> mistune-0.7.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mistune-0.7.1/CHANGES.rst 
new/mistune-0.7.2/CHANGES.rst
--- old/mistune-0.7.1/CHANGES.rst   2015-08-22 17:28:24.0 +0200
+++ new/mistune-0.7.2/CHANGES.rst   2016-02-26 02:41:10.0 +0100
@@ -3,6 +3,18 @@
 
 Here is the full history of mistune.
 
+Version 0.7.2
+~
+
+* Fix `hard_wrap` options on renderer.
+* Fix emphasis regex pattern
+* Fix base64 image link `#80`_.
+* Fix link security per `#87`_.
+
+.. _`#80`: https://github.com/lepture/mistune/issues/80
+.. _`#87`: https://github.com/lepture/mistune/issues/87
+
+
 Version 0.7.1
 ~
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mistune-0.7.1/PKG-INFO new/mistune-0.7.2/PKG-INFO
--- old/mistune-0.7.1/PKG-INFO  2015-08-22 17:44:33.0 +0200
+++ new/mistune-0.7.2/PKG-INFO  2016-02-26 02:43:24.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: mistune
-Version: 0.7.1
+Version: 0.7.2
 Summary: The fastest markdown parser in pure Python
 Home-page: https://github.com/lepture/mistune
 Author: Hsiaoming Yang
@@ -119,7 +119,7 @@
 import mistune
 from pygments import highlight
 from pygments.lexers import get_lexer_by_name
-from pygments.formatters import HtmlFormatter
+from pygments.formatters import html
 
 class HighlightRenderer(mistune.Renderer):
 def block_code(self, code, lang):
@@ -127,7 +127,7 @@
 return '\n%s\n' % \
 mistune.escape(code)
 lexer = get_lexer_by_name(lang, stripall=True)
-formatter = HtmlFormatter()
+formatter = html.HtmlFormatter()
 return highlight(code, lexer, formatter)
 
 renderer = HighlightRenderer()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mistune-0.7.1/README.rst new/mistune-0.7.2/README.rst
--- old/mistune-0.7.1/README.rst2015-08-11 09:55:52.0 +0200
+++ new/mistune-0.7.2/README.rst2015-11-08 09:30:41.0 +0100
@@ -111,7 +111,7 @@
 import mistune
 from pygments import highlight
 from pygments.lexers import get_lexer_by_name
-from pygments.formatters import HtmlFormatter
+from pygments.formatters import html
 
 class HighlightRenderer(mistune.Renderer):
 def block_code(self, code, lang):
@@ -119,7 +119,7 @@
 return '\n%s\n' % \
 mistune.escape(code)
 lexer = get_lexer_by_name(lang, stripall=True)
-formatter = HtmlFormatter()
+formatter = html.HtmlFormatter()
 return highlight(code, lexer, formatter)
 
 renderer = HighlightRenderer()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mistune-0.7.1/

commit ghc-base-orphans for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package ghc-base-orphans for 
openSUSE:Factory checked in at 2016-02-29 09:14:36

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


Package is "ghc-base-orphans"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-base-orphans/ghc-base-orphans.changes
2016-02-11 12:37:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-base-orphans.new/ghc-base-orphans.changes   
2016-02-29 09:16:08.0 +0100
@@ -1,0 +2,8 @@
+Sun Feb 28 21:35:32 UTC 2016 - mimi...@gmail.com
+
+- update to 0.5.2
+* Backported Enum, Bounded, Ix, Functor, Applicative, Monad, MonadFix, 
MonadPlus,
+MonadZip, Foldable, Traversable, and Data instances for datatypes
+in the GHC.Generics module (introduced in base-4.9)
+
+---

Old:

  base-orphans-0.5.1.tar.gz

New:

  base-orphans-0.5.2.tar.gz



Other differences:
--
++ ghc-base-orphans.spec ++
--- /var/tmp/diff_new_pack.XRmGNm/_old  2016-02-29 09:16:09.0 +0100
+++ /var/tmp/diff_new_pack.XRmGNm/_new  2016-02-29 09:16:09.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with tests
 
 Name:   ghc-base-orphans
-Version:0.5.1
+Version:0.5.2
 Release:0
 Summary:Backwards-compatible orphan instances for base
 Group:  System/Libraries

++ base-orphans-0.5.1.tar.gz -> base-orphans-0.5.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/base-orphans-0.5.1/CHANGES.markdown 
new/base-orphans-0.5.2/CHANGES.markdown
--- old/base-orphans-0.5.1/CHANGES.markdown 2016-02-01 23:14:19.0 
+0100
+++ new/base-orphans-0.5.2/CHANGES.markdown 2016-02-25 17:46:31.0 
+0100
@@ -1,3 +1,9 @@
+## Changes in 0.5.2
+ - Backported `Enum`, `Bounded`, `Ix`, `Functor`, `Applicative`, `Monad`,
+   `MonadFix`, `MonadPlus`, `MonadZip`, `Foldable`, `Traversable`, and
+   `Data` instances for datatypes in the `GHC.Generics` module (introduced in
+   `base-4.9`)
+
 ## Changes in 0.5.1
  - The `Storable` instances for `Complex` and `Ratio` are now exactly as lazy
as their counterparts in `base` (see issue
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/base-orphans-0.5.1/LICENSE 
new/base-orphans-0.5.2/LICENSE
--- old/base-orphans-0.5.1/LICENSE  2016-02-01 23:14:19.0 +0100
+++ new/base-orphans-0.5.2/LICENSE  2016-02-25 17:46:31.0 +0100
@@ -1,4 +1,4 @@
-Copyright (c) 2015 Simon Hengel , João Cristóvão 
, Ryan Scott 
+Copyright (c) 2015-2016 Simon Hengel , João Cristóvão 
, Ryan Scott 
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/base-orphans-0.5.1/base-orphans.cabal 
new/base-orphans-0.5.2/base-orphans.cabal
--- old/base-orphans-0.5.1/base-orphans.cabal   2016-02-01 23:14:19.0 
+0100
+++ new/base-orphans-0.5.2/base-orphans.cabal   2016-02-25 17:46:31.0 
+0100
@@ -1,9 +1,9 @@
--- This file has been generated from package.yaml by hpack version 0.8.0.
+-- This file has been generated from package.yaml by hpack version 0.9.1.
 --
 -- see: https://github.com/sol/hpack
 
 name:base-orphans
-version: 0.5.1
+version: 0.5.2
 synopsis:Backwards-compatible orphan instances for base
 description: @base-orphans@ defines orphan instances that mimic 
instances available in later versions of @base@ to a wider (older) range of 
compilers. @base-orphans@ does not export anything except the orphan instances 
themselves and complements @@.
  See the README for what instances are covered: 
. See also the 
 section.
@@ -16,9 +16,9 @@
 maintainer:  Simon Hengel ,
  João Cristóvão ,
  Ryan Scott 
-copyright:   (c) 2012-2015 Simon Hengel,
- (c) 2014 João Cristóvão,
- (c) 2015 Ryan Scott
+copyright:   (c) 2012-2016 Simon Hengel,
+ (c) 2014-2016 João Cristóvão,
+ (c) 2015-2016 Ryan Scott
 license: MIT
 license-file:LICENSE
 build-type:  Simple
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/base-orphans-0.5.1/

commit python3-pip for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package python3-pip for openSUSE:Factory 
checked in at 2016-02-29 09:14:31

Comparing /work/SRC/openSUSE:Factory/python3-pip (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pip.new (New)


Package is "python3-pip"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pip/python3-pip.changes  2016-01-26 
10:15:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pip.new/python3-pip.changes 
2016-02-29 09:16:06.0 +0100
@@ -1,0 +2,16 @@
+Sat Feb 27 16:34:29 UTC 2016 - a...@gmx.de
+
+- update to version 8.0.3:
+  * Make install --quiet really quiet. See #3418.
+  * Fix a bug when removing packages in python 3: disable INI-style
+parsing of the entry_point.txt file to allow entry point names
+with colons (PR #3434)
+  * Normalize generated script files path in RECORD files. (PR #3448)
+  * Fix bug introduced in 8.0.0 where subcommand output was not shown,
+even when the user specified -v / --verbose. #3486.
+  * Enable python -W with respect to PipDeprecationWarning. (PR #3455)
+  * Upgrade distlib to 0.2.2 (fix #3467):
+  * Improved support for Jython when quoting executables in output
+scripts.
+
+---

Old:

  pip-8.0.2.tar.gz

New:

  pip-8.0.3.tar.gz



Other differences:
--
++ python3-pip.spec ++
--- /var/tmp/diff_new_pack.w62nE7/_old  2016-02-29 09:16:07.0 +0100
+++ /var/tmp/diff_new_pack.w62nE7/_new  2016-02-29 09:16:07.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pip
-Version:8.0.2
+Version:8.0.3
 Release:0
 Url:http://www.pip-installer.org
 Summary:Pip installs packages. Python packages. An easy_install 
replacement

++ pip-8.0.2.tar.gz -> pip-8.0.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pip-8.0.2/CHANGES.txt new/pip-8.0.3/CHANGES.txt
--- old/pip-8.0.2/CHANGES.txt   2016-01-22 00:49:22.0 +0100
+++ new/pip-8.0.3/CHANGES.txt   2016-02-25 18:18:32.0 +0100
@@ -1,3 +1,22 @@
+**8.0.3 (2016-02-25)**
+
+* Make ``install --quiet`` really quiet. See :issue:`3418`.
+
+* Fix a bug when removing packages in python 3: disable INI-style parsing of 
the
+  entry_point.txt file to allow entry point names with colons (:pull:`3434`)
+
+* Normalize generated script files path in RECORD files. (:pull:`3448`)
+
+* Fix bug introduced in 8.0.0 where subcommand output was not shown,
+  even when the user specified ``-v`` / ``--verbose``. :issue:`3486`.
+
+* Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`)
+
+* Upgrade distlib to 0.2.2 (fix :issue:`3467`):
+
+  * Improved support for Jython when quoting executables in output scripts.
+
+
 **8.0.2 (2016-01-21)**
 
 * Stop attempting to trust the system CA trust store because it's extremely
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pip-8.0.2/PKG-INFO new/pip-8.0.3/PKG-INFO
--- old/pip-8.0.2/PKG-INFO  2016-01-22 00:49:26.0 +0100
+++ new/pip-8.0.3/PKG-INFO  2016-02-25 18:18:39.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pip
-Version: 8.0.2
+Version: 8.0.3
 Summary: The PyPA recommended tool for installing Python packages.
 Home-page: https://pip.pypa.io/
 Author: The pip developers
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pip-8.0.2/pip/__init__.py 
new/pip-8.0.3/pip/__init__.py
--- old/pip-8.0.2/pip/__init__.py   2016-01-22 00:49:22.0 +0100
+++ new/pip-8.0.3/pip/__init__.py   2016-02-25 18:18:32.0 +0100
@@ -30,7 +30,7 @@
 cmdoptions = pip.cmdoptions
 
 # The version as used in the setup.py and the docs conf.py
-__version__ = "8.0.2"
+__version__ = "8.0.3"
 
 
 logger = logging.getLogger(__name__)
@@ -197,10 +197,6 @@
 if args is None:
 args = sys.argv[1:]
 
-# Enable our Deprecation Warnings
-for deprecation_warning in deprecation.DEPRECATIONS:
-warnings.simplefilter("default", deprecation_warning)
-
 # Configure our deprecation warnings to be sent through loggers
 deprecation.install_warning_logger()
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pip-8.0.2/pip/_vendor/distlib/__init__.py 
new/pip-8.0.3/pip/_vendor/distlib/__init__.py
--- old/pip-8.0.2/pip/_vendor/distlib/__init__.py   2016-01-22 
00:49:22.0 +0100
+++ new/pip-8.0.3/pip/_vendor/distlib/__init__.py   2016-02-25 
18:18:32.0 +0100
@@ -1,12 +1,12 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2012-2014 Vinay Sajip.
+# Copyright (C) 2012-2016 Vinay Sajip.
 # Licensed to the P

commit ghc-hourglass for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package ghc-hourglass for openSUSE:Factory 
checked in at 2016-02-29 09:14:45

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


Package is "ghc-hourglass"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-hourglass/ghc-hourglass.changes  
2015-05-27 12:43:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-hourglass.new/ghc-hourglass.changes 
2016-02-29 09:16:14.0 +0100
@@ -1,0 +2,5 @@
+Sun Feb 28 21:48:31 UTC 2016 - mimi...@gmail.com
+
+- update to 0.2.10
+
+---

Old:

  hourglass-0.2.9.tar.gz

New:

  hourglass-0.2.10.tar.gz



Other differences:
--
++ ghc-hourglass.spec ++
--- /var/tmp/diff_new_pack.o6ZMiG/_old  2016-02-29 09:16:16.0 +0100
+++ /var/tmp/diff_new_pack.o6ZMiG/_new  2016-02-29 09:16:16.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with tests
 
 Name:   ghc-%{pkg_name}
-Version:0.2.9
+Version:0.2.10
 Release:0
 Summary:Simple performant time related library
 Group:  System/Libraries

++ hourglass-0.2.9.tar.gz -> hourglass-0.2.10.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hourglass-0.2.9/Data/Hourglass/Compat.hs 
new/hourglass-0.2.10/Data/Hourglass/Compat.hs
--- old/hourglass-0.2.9/Data/Hourglass/Compat.hs2015-04-01 
16:53:50.0 +0200
+++ new/hourglass-0.2.10/Data/Hourglass/Compat.hs   2016-02-27 
12:23:51.0 +0100
@@ -29,76 +29,10 @@
 -- >
 -- > offsetTime = H.TimezoneOffset $ fromIntegral $ T.timeZoneMinutes $ 
T.zonedTimeZone oldTime
 --
+-- This module will be depreciated in favor of Time.Compat
+--
 module Data.Hourglass.Compat
-( dateFromPOSIXEpoch
-, dateFromTAIEpoch
-, diffTimeToTimeOfDay
+( module Time.Compat
 ) where
 
-import Data.Hourglass
-
--- | Convert an integer which represent the Number of days (To/From) POSIX 
Epoch
--- to a Date (POSIX Epoch is 1970-01-01).
-dateFromPOSIXEpoch :: Integer -- ^ number of days since POSIX Epoch
-   -> Date
-dateFromPOSIXEpoch day = do
-let sec = Elapsed $ fromIntegral $ day * 86400
-timeConvert sec
-
--- | Number of days between POSIX Epoch and TAI Epoch
--- (between 1858-11-17 and 1970-01-01)
-daysTAItoPOSIX :: Integer
-daysTAItoPOSIX = 40587
-
--- | Convert an integer which represents the Number of days (To/From) TAI Epoch
--- This function allows use of the package time to easily convert the Day into
--- the Hourglass Date representation (TAI Epoch is 1858-11-17).
--- 
--- This function allows user to easily convert a Data.Time.Calendar.Day into 
Date
---
--- > import qualified Data.Time.Calendar as T
--- >
--- > timeDay :: T.Day
--- >
--- > dateFromTAIEpoch $ T.toModifiedJulianDay timeDay
-dateFromTAIEpoch :: Integer -- ^ number of days since TAI Epoch
- -> Date
-dateFromTAIEpoch dtai =
-dateFromPOSIXEpoch (dtai - daysTAItoPOSIX)
-
--- | Convert of differential of time of a day.
--- (it convers a Data.Time.Clock.DiffTime into a TimeOfDay)
---
--- Example with DiffTime type from time:
---
--- > import qualified Data.Time.Clock as T
--- >
--- > difftime :: T.DiffTime
--- >
--- > diffTimeToTimeOfDay difftime
---
--- Example with the TimeOfDay type from time:
---
--- > import qualified Data.Time.Clock as T
--- >
--- > timeofday :: T.TimeOfDay
--- >
--- > diffTimeToTimeOfDay $ T.timeOfDayToTime timeofday
-diffTimeToTimeOfDay :: Real t
-=> t -- ^ number of seconds of the time of the day
--> TimeOfDay
-diffTimeToTimeOfDay dt = do
-TimeOfDay
-{ todHour = fromIntegral hours
-, todMin  = fromIntegral minutes
-, todSec  = fromIntegral seconds
-, todNSec = fromIntegral nsecs
-}
-  where
-r :: Rational
-r = toRational dt
-(secs, nR) = properFraction r :: (Integer, Rational)
-nsecs :: Integer
-nsecs = round (nR * 10)
-(minsofday, seconds) = secs `divMod` 60 :: (Integer, Integer)
-(hours, minutes) = minsofday `divMod` 60 :: (Integer, Integer)
+import Time.Compat
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hourglass-0.2.9/Data/Hourglass/Diff.hs 
new/hourglass-0.2.10/Data/Hourglass/Diff.hs
--- old/hourglass-0.2.9/Data/Hourglass/Diff.hs  2015-04-01 16:53:50.0 
+0200
+++ new/hourglass-0.2.10/Data/Hourglass/Diff.hs 2016-02-27 12:23:51.0 
+0100
@@ -34,7 +34,7 @@
 { periodYears  :: !Int
 , periodMonths :: !Int
 , periodDays   :: !Int
-} deriving (Read,Eq,Ord,Data,Typeable)
+} deriving (Show,R

commit python3-autopep8 for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package python3-autopep8 for 
openSUSE:Factory checked in at 2016-02-29 09:14:25

Comparing /work/SRC/openSUSE:Factory/python3-autopep8 (Old)
 and  /work/SRC/openSUSE:Factory/.python3-autopep8.new (New)


Package is "python3-autopep8"

Changes:

--- /work/SRC/openSUSE:Factory/python3-autopep8/python3-autopep8.changes
2015-10-20 00:04:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-autopep8.new/python3-autopep8.changes   
2016-02-29 09:16:04.0 +0100
@@ -1,0 +2,22 @@
+Sat Feb 27 16:21:20 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 1.2.2:
+  * Point to new URL
+  * Simplify
+  * Fix broken link
+  * Put constant on right
+  * Disable some checks for now
+  * Use consistent type
+  * Use enumerate rather than range and len
+  * Put constant on right side
+  * Simplify
+  * Handle "-OO" mode
+  * Support "noqa" for E265
+  * Suppress option that is not recommended
+  * Avoid infinite loop upon an invalid code input
+  * Suppress false positive
+
+---

Old:

  autopep8-1.2.1.tar.gz

New:

  autopep8-1.2.2.tar.gz



Other differences:
--
++ python3-autopep8.spec ++
--- /var/tmp/diff_new_pack.pL72ax/_old  2016-02-29 09:16:05.0 +0100
+++ /var/tmp/diff_new_pack.pL72ax/_new  2016-02-29 09:16:05.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-autopep8
 #
-# 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
@@ -17,7 +17,7 @@
 
 
 Name:   python3-autopep8
-Version:1.2.1
+Version:1.2.2
 Release:0
 Url:https://github.com/hhatto/autopep8
 Summary:Automatic generated to pep8 checked code

++ autopep8-1.2.1.tar.gz -> autopep8-1.2.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autopep8-1.2.1/PKG-INFO new/autopep8-1.2.2/PKG-INFO
--- old/autopep8-1.2.1/PKG-INFO 2015-09-20 03:30:39.0 +0200
+++ new/autopep8-1.2.2/PKG-INFO 2016-02-25 07:27:59.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: autopep8
-Version: 1.2.1
+Version: 1.2.2
 Summary: A tool that automatically formats Python code to conform to the PEP 8 
style guide
 Home-page: https://github.com/hhatto/autopep8
 Author: Hideo Hattori
@@ -19,7 +19,7 @@
 be formatted. autopep8 is capable of fixing most of the formatting 
issues_ that
 can be reported by pep8.
 
-.. _PEP 8: http://www.python.org/dev/peps/pep-0008/
+.. _PEP 8: https://www.python.org/dev/peps/pep-0008/
 .. _issues: 
https://pep8.readthedocs.org/en/latest/intro.html#error-codes
 
 .. contents::
@@ -34,7 +34,7 @@
 
 Consider using the ``--user`` option_.
 
-.. _option: 
https://pip.readthedocs.org/en/latest/user_guide.html#user-installs
+.. _option: https://pip.pypa.io/en/latest/user_guide/#user-installs
 
 
 Requirements
@@ -42,7 +42,7 @@
 
 autopep8 requires pep8_.
 
-.. _pep8: https://github.com/PyCQA/pep8
+.. _pep8: https://github.com/PyCQA/pycodestyle
 
 
 Usage
@@ -135,7 +135,7 @@
 [--ignore-local-config] [-r] [-j n] [-p n] [-a]
 [--experimental] [--exclude globs] [--list-fixes]
 [--ignore errors] [--select errors] 
[--max-line-length n]
-[--line-range line line] [--indent-size n]
+[--line-range line line]
 [files [files ...]]
 
 Automatically formats Python code to conform to the PEP 8 style 
guide.
@@ -178,7 +178,6 @@
 only fix errors found within this 
inclusive range of
 line numbers (e.g. 1 99); line numbers are 
indexed at
 1
-  --indent-size n   number of spaces per indent level (default 
4)
 
 
 Features
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autopep8-1.2.1/README.rst 
new/autopep8-1.2.2/README.rst
--- old/autopep8-1.2.1/README.rst   2015-09-20 03:27:50.0 +0200
+++ new/autopep8-1.2.2/README.rst   2016-02-25 07:21:42.0 +0100
@@ -11,7 +11,7 @@
 be formatted. autopep8 is capable of fixing m

commit python-yubico for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package python-yubico for openSUSE:Factory 
checked in at 2016-02-29 09:14:03

Comparing /work/SRC/openSUSE:Factory/python-yubico (Old)
 and  /work/SRC/openSUSE:Factory/.python-yubico.new (New)


Package is "python-yubico"

Changes:

--- /work/SRC/openSUSE:Factory/python-yubico/python-yubico.changes  
2015-11-10 10:03:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-yubico.new/python-yubico.changes 
2016-02-29 09:15:54.0 +0100
@@ -1,0 +2,10 @@
+Tue Feb 23 11:48:24 UTC 2016 - mich...@stroeder.com
+
+- update to 1.3.2
+  * yubico/yubikey_usb_hid.py: change logic for pgm seq if no
+config is valid, seq 0 is ok
+  * yubico/yubikey_usb_hid.py: that the new sequence is 0 is also ok
+  * yubico/yubikey_frame.py: Added comments explaining debug data.
+  * Solved: Unlock code couldn't be set
+
+---

Old:

  python-yubico-1.3.1.tar.gz
  python-yubico-1.3.1.tar.gz.sig

New:

  python-yubico-1.3.2.tar.gz
  python-yubico-1.3.2.tar.gz.sig



Other differences:
--
++ python-yubico.spec ++
--- /var/tmp/diff_new_pack.VU8yKY/_old  2016-02-29 09:15:55.0 +0100
+++ /var/tmp/diff_new_pack.VU8yKY/_new  2016-02-29 09:15:55.0 +0100
@@ -22,7 +22,7 @@
 BuildArch:  noarch
 %endif
 Name:   python-yubico
-Version:1.3.1
+Version:1.3.2
 Release:0
 Summary:Python code for talking to Yubico's YubiKeys
 License:BSD-2-Clause

++ python-yubico-1.3.1.tar.gz -> python-yubico-1.3.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-yubico-1.3.1/ChangeLog 
new/python-yubico-1.3.2/ChangeLog
--- old/python-yubico-1.3.1/ChangeLog   2015-10-01 15:59:08.0 +0200
+++ new/python-yubico-1.3.2/ChangeLog   2016-02-23 12:24:39.0 +0100
@@ -1,3 +1,32 @@
+2016-02-23  Dain Nilsson 
+
+   * NEWS, release.py, yubico/yubico_version.py: Bumped version and
+   updated NEWS for release.
+
+2015-11-03  Klas Lindfors 
+
+   * yubico/yubikey_usb_hid.py: change logic for pgm seq if no config is 
valid, seq 0 is ok
+
+2015-11-03  Klas Lindfors 
+
+   * yubico/yubikey_usb_hid.py: that the new sequence is 0 is also ok
+
+2015-10-07  Dain Nilsson 
+
+   * yubico/yubikey_frame.py: Added comments explaining debug data.
+
+2015-10-07  Dain Nilsson 
+
+   * : Merge pull request #31 from axhoffmann/master Solved: Unlock code 
couldn't be set
+
+2015-10-01  Dain Nilsson 
+
+   * MANIFEST.in: Include tests.
+
+2015-10-01  Dain Nilsson 
+
+   * NEWS, yubico/yubico_version.py: Bumped version post release.
+
 2015-10-01  Dain Nilsson 
 
* NEWS, yubico/yubico_version.py: Update version and NEWS for
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-yubico-1.3.1/MANIFEST.in 
new/python-yubico-1.3.2/MANIFEST.in
--- old/python-yubico-1.3.1/MANIFEST.in 2015-10-01 15:51:28.0 +0200
+++ new/python-yubico-1.3.2/MANIFEST.in 2016-02-23 12:21:35.0 +0100
@@ -5,3 +5,4 @@
 include examples/*
 include util/*
 include doc/*
+recursive-include test *.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-yubico-1.3.1/NEWS new/python-yubico-1.3.2/NEWS
--- old/python-yubico-1.3.1/NEWS2015-10-01 15:58:46.0 +0200
+++ new/python-yubico-1.3.2/NEWS2016-02-23 12:21:35.0 +0100
@@ -1,3 +1,7 @@
+* Version 1.3.2 (released 2016-02-23)
+ ** Various fixes to sequence number checking.
+ ** Fix issue with using an access code with the debug flag on.
+
 * Version 1.3.1 (released 2015-10-01)
  ** Fixup release to correct packages listed in last release.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-yubico-1.3.1/PKG-INFO 
new/python-yubico-1.3.2/PKG-INFO
--- old/python-yubico-1.3.1/PKG-INFO2015-10-01 15:59:08.0 +0200
+++ new/python-yubico-1.3.2/PKG-INFO2016-02-23 12:24:40.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-yubico
-Version: 1.3.1
+Version: 1.3.2
 Summary: Python code for talking to Yubico's YubiKeys
 Home-page: https://github.com/Yubico/python-yubico
 Author: Yubico Open Source Maintainers
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-yubico-1.3.1/python_yubico.egg-info/PKG-INFO 
new/python-yubico-1.3.2/python_yubico.egg-info/PKG-INFO
--- old/python-yubico-1.3.1/python_yubico.egg-info/PKG-INFO 2015-10-01 
15:59:08.0 +0200
+++ new/python-yubico-1.3.2/python_yubico.egg-info/PKG-INFO 2016-02-23 
12:24:39.0 +0100
@@ -1

commit hlint for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package hlint for openSUSE:Factory checked 
in at 2016-02-29 09:14:40

Comparing /work/SRC/openSUSE:Factory/hlint (Old)
 and  /work/SRC/openSUSE:Factory/.hlint.new (New)


Package is "hlint"

Changes:

--- /work/SRC/openSUSE:Factory/hlint/hlint.changes  2016-02-11 
12:37:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.hlint.new/hlint.changes 2016-02-29 
09:16:11.0 +0100
@@ -1,0 +2,8 @@
+Sun Feb 28 21:42:14 UTC 2016 - mimi...@gmail.com
+
+- update to 1.9.30
+* fix incorrect hints of foldr/foldl on a tuple accumulator
+* add warnings about foldable methods on tuple
+* Put warnings before suggestions in the HTML report
+
+---

Old:

  hlint-1.9.28.tar.gz

New:

  hlint-1.9.30.tar.gz



Other differences:
--
++ hlint.spec ++
--- /var/tmp/diff_new_pack.ZKYdIr/_old  2016-02-29 09:16:13.0 +0100
+++ /var/tmp/diff_new_pack.ZKYdIr/_new  2016-02-29 09:16:13.0 +0100
@@ -20,7 +20,7 @@
 # no useful debuginfo for Haskell packages without C sources
 %global debug_package %{nil}
 Name:   hlint
-Version:1.9.28
+Version:1.9.30
 Release:0
 Summary:Source code suggestions
 License:BSD-3-Clause

++ hlint-1.9.28.tar.gz -> hlint-1.9.30.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hlint-1.9.28/CHANGES.txt new/hlint-1.9.30/CHANGES.txt
--- old/hlint-1.9.28/CHANGES.txt2016-02-04 09:55:19.0 +0100
+++ new/hlint-1.9.30/CHANGES.txt2016-02-26 21:55:03.0 +0100
@@ -1,5 +1,10 @@
 Changelog for HLint
 
+1.9.30
+#220, fix incorrect hints of foldr/foldl on a tuple accumulator
+1.9.29
+#219, add warnings about foldable methods on tuple
+Put warnings before suggestions in the HTML report
 1.9.28
 #215, spot newtype deriving inside classes
 1.9.27
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hlint-1.9.28/data/Default.hs 
new/hlint-1.9.30/data/Default.hs
--- old/hlint-1.9.28/data/Default.hs2016-02-04 09:55:19.0 +0100
+++ new/hlint-1.9.30/data/Default.hs2016-02-26 21:55:03.0 +0100
@@ -509,6 +509,51 @@
 warn "Evaluate" = zip [] [] ==> []
 warn "Evaluate" = const x y ==> x
 
+-- FOLDABLE + TUPLES
+
+warn "Using foldr on tuple"   = foldr   f z (x,b) ==> f b z
+warn "Using foldr' on tuple"  = foldr'  f z (x,b) ==> f b z
+warn "Using foldl on tuple"   = foldl   f z (x,b) ==> f z b
+warn "Using foldl' on tuple"  = foldl'  f z (x,b) ==> f z b
+warn "Using foldMap on tuple" = foldMap f   (x,b) ==> f b
+warn "Using foldr1 on tuple"  = foldr1  f   (x,b) ==> b
+warn "Using foldl1 on tuple"  = foldl1  f   (x,b) ==> b
+warn "Using elem on tuple"= eleme   (x,b) ==> e == b
+warn "Using fold on tuple"= fold(x,b) ==> b
+warn "Using toList on tuple"  = toList  (x,b) ==> b
+warn "Using maximum on tuple" = maximum (x,b) ==> b
+warn "Using minimum on tuple" = minimum (x,b) ==> b
+warn "Using sum on tuple" = sum (x,b) ==> b
+warn "Using product on tuple" = product (x,b) ==> b
+warn "Using concat on tuple"  = concat  (x,b) ==> b
+warn "Using and on tuple" = and (x,b) ==> b
+warn "Using or on tuple"  = or  (x,b) ==> b
+warn "Using any on tuple" = any f   (x,b) ==> f b
+warn "Using all on tuple" = all f   (x,b) ==> f b
+
+warn "Using foldr on tuple"   = foldr   f z (x,y,b) ==> f b z
+warn "Using foldr' on tuple"  = foldr'  f z (x,y,b) ==> f b z
+warn "Using foldl on tuple"   = foldl   f z (x,y,b) ==> f z b
+warn "Using foldl' on tuple"  = foldl'  f z (x,y,b) ==> f z b
+warn "Using foldMap on tuple" = foldMap f   (x,y,b)   ==> f b
+warn "Using foldr1 on tuple"  = foldr1  f   (x,y,b)   ==> b
+warn "Using foldl1 on tuple"  = foldl1  f   (x,y,b)   ==> b
+warn "Using elem on tuple"= eleme   (x,y,b)   ==> e == b
+warn "Using fold on tuple"= fold(x,y,b)   ==> b
+warn "Using toList on tuple"  = toList  (x,y,b)   ==> b
+warn "Using maximum on tuple" = maximum (x,y,b)   ==> b
+warn "Using minimum on tuple" = minimum (x,y,b)   ==> b
+warn "Using sum on tuple" = sum (x,y,b)   ==> b
+warn "Using product on tuple" = product (x,y,b)   ==> b
+warn "Using concat on tuple"  = concat  (x,y,b)   ==> b
+warn "Using and on tuple" = and (x,y,b)   ==> b
+warn "Using or on tuple"  = or  (x,y,b)   ==> b
+warn "Using any on tuple" = any f   (x,y,b)   ==> f b
+warn "Using all on tuple" = all f   (x,y,b)   ==> f b
+
+warn "Using null on tuple"   = null x   ==> False where _ = isTuple x
+war

commit poedit for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package poedit for openSUSE:Factory checked 
in at 2016-02-29 09:14:09

Comparing /work/SRC/openSUSE:Factory/poedit (Old)
 and  /work/SRC/openSUSE:Factory/.poedit.new (New)


Package is "poedit"

Changes:

--- /work/SRC/openSUSE:Factory/poedit/poedit.changes2016-02-11 
12:37:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.poedit.new/poedit.changes   2016-02-29 
09:15:59.0 +0100
@@ -1,0 +2,6 @@
+Sat Feb 27 17:32:41 UTC 2016 - astie...@suse.com
+
+- poedit 1.8.7.1:
+  * Add explicit boost dependencies in cpprest 
+
+---

Old:

  poedit-1.8.7.tar.gz

New:

  poedit-1.8.7.1.tar.gz



Other differences:
--
++ poedit.spec ++
--- /var/tmp/diff_new_pack.0MeE2c/_old  2016-02-29 09:16:00.0 +0100
+++ /var/tmp/diff_new_pack.0MeE2c/_new  2016-02-29 09:16:00.0 +0100
@@ -20,7 +20,7 @@
 %bcond_without language_detection
 %bcond_without crowdin_integration
 Name:   poedit
-Version:1.8.7
+Version:1.8.7.1
 Release:0
 Summary:Cross-platform Gettext Catalogs Editing Tool
 License:MIT

++ poedit-1.8.7.tar.gz -> poedit-1.8.7.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/poedit-1.8.7/configure new/poedit-1.8.7.1/configure
--- old/poedit-1.8.7/configure  2016-02-02 19:39:47.0 +0100
+++ new/poedit-1.8.7.1/configure2016-02-23 12:59:22.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for poedit 1.8.7.
+# Generated by GNU Autoconf 2.68 for poedit 1.8.7.1.
 #
 # Report bugs to .
 #
@@ -560,8 +560,8 @@
 # Identity of this package.
 PACKAGE_NAME='poedit'
 PACKAGE_TARNAME='poedit'
-PACKAGE_VERSION='1.8.7'
-PACKAGE_STRING='poedit 1.8.7'
+PACKAGE_VERSION='1.8.7.1'
+PACKAGE_STRING='poedit 1.8.7.1'
 PACKAGE_BUGREPORT='h...@poedit.net'
 PACKAGE_URL=''
 
@@ -1331,7 +1331,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures poedit 1.8.7 to adapt to many kinds of systems.
+\`configure' configures poedit 1.8.7.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1401,7 +1401,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of poedit 1.8.7:";;
+ short | recursive ) echo "Configuration of poedit 1.8.7.1:";;
esac
   cat <<\_ACEOF
 
@@ -1529,7 +1529,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-poedit configure 1.8.7
+poedit configure 1.8.7.1
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -1936,7 +1936,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by poedit $as_me 1.8.7, which was
+It was created by poedit $as_me 1.8.7.1, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -2284,7 +2284,7 @@
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
 
-PACKAGE_SHORT_VERSION=1.8.7
+PACKAGE_SHORT_VERSION=1.8.7.1
 
 
 ac_aux_dir=
@@ -2828,7 +2828,7 @@
 
 # Define the identity of the package.
  PACKAGE='poedit'
- VERSION='1.8.7'
+ VERSION='1.8.7.1'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -5201,7 +5201,7 @@
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for 
libcpprest >= 2.5" >&5
 $as_echo_n "checking for libcpprest >= 2.5... " >&6; }
   old_LIBS="$LIBS"
-  LIBS="-lcpprest $LIBS"
+  LIBS="-lcpprest -lboost_system -lssl -lcrypto $LIBS"
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
 
@@ -5364,7 +5364,7 @@
 
   $as_echo "#define HAVE_HTTP_CLIENT 1" >>confdefs.h
 
-  CPPREST_LIBS="-lcpprest"
+  CPPREST_LIBS="-lcpprest -lboost_system -lssl -lcrypto"
 
 
 pkg_failed=no
@@ -7270,7 +7270,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by poedit $as_me 1.8.7, which was
+This file was extended by poedit $as_me 1.8.7.1, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -7327,7 +7327,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/&/g'`"
 ac_cs_version="\\
-poedit config.status 1.8.7
+poedit config.status 1.8.7.1
 configured by $0, gene

commit MozillaFirefox for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package MozillaFirefox for openSUSE:Factory 
checked in at 2016-02-29 09:13:34

Comparing /work/SRC/openSUSE:Factory/MozillaFirefox (Old)
 and  /work/SRC/openSUSE:Factory/.MozillaFirefox.new (New)


Package is "MozillaFirefox"

Changes:

--- /work/SRC/openSUSE:Factory/MozillaFirefox/MozillaFirefox.changes
2016-02-12 11:22:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.MozillaFirefox.new/MozillaFirefox.changes   
2016-02-29 09:13:39.0 +0100
@@ -1,0 +2,20 @@
+Fri Feb 26 16:22:52 UTC 2016 - astie...@suse.com
+
+- fix build problems on i586, caused by too large unified compile
+  units - adding mozilla-reduce-files-per-UnifiedBindings.patch
+
+---
+Thu Feb 11 07:51:34 UTC 2016 - w...@rosenauer.org
+
+- update to Firefox 44.0.2
+  * MFSA 2016-13/CVE-2016-1949 (bmo#1245724, boo#966438)
+Same-origin-policy violation using Service Workers with plugins
+  * Fix issue which could lead to the removal of stored passwords
+under certain circumstances (bmo#1242176)
+  * Allows spaces in cookie names (bmo#1244505)
+  * Disable opus/vorbis audio with H.264 (bmo#1245696)
+  * Fix for graphics startup crash (GNU/Linux) (bmo#1222171)
+  * Fix a crash in cache networking (bmo#1244076)
+  * Fix using WebSockets in service worker controlled pages (bmo#1243942)
+
+---

Old:

  firefox-44.0-source.tar.xz
  l10n-44.0.tar.xz

New:

  firefox-44.0.2-source.tar.xz
  l10n-44.0.2.tar.xz
  mozilla-reduce-files-per-UnifiedBindings.patch



Other differences:
--
++ MozillaFirefox.spec ++
--- /var/tmp/diff_new_pack.1NiNVv/_old  2016-02-29 09:15:49.0 +0100
+++ /var/tmp/diff_new_pack.1NiNVv/_new  2016-02-29 09:15:49.0 +0100
@@ -19,9 +19,9 @@
 
 # changed with every update
 %define major 44
-%define mainver %major.0
+%define mainver %major.0.2
 %define update_channel release
-%define releasedate 2016012300
+%define releasedate 2016021000
 
 # general build definitions
 %if "%{update_channel}" != "aurora"
@@ -159,6 +159,7 @@
 Patch8: mozilla-openaes-decl.patch
 Patch10:mozilla-no-stdcxx-check.patch
 Patch11:mozilla-libproxy.patch
+Patch12:mozilla-reduce-files-per-UnifiedBindings.patch
 # Firefox/browser
 Patch101:   firefox-kde.patch
 Patch102:   firefox-no-default-ualocale.patch
@@ -268,6 +269,7 @@
 %patch8 -p1
 %patch10 -p1
 %patch11 -p1
+%patch12 -p1
 # Firefox
 %patch101 -p1
 %patch102 -p1

++ _constraints ++
--- /var/tmp/diff_new_pack.1NiNVv/_old  2016-02-29 09:15:49.0 +0100
+++ /var/tmp/diff_new_pack.1NiNVv/_new  2016-02-29 09:15:49.0 +0100
@@ -2,10 +2,10 @@
 
   
 
-  9
+  13
 
 
-  5000
+  6000
 
   
   

++ compare-locales.tar.xz ++

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.1NiNVv/_old  2016-02-29 09:15:49.0 +0100
+++ /var/tmp/diff_new_pack.1NiNVv/_new  2016-02-29 09:15:49.0 +0100
@@ -2,8 +2,8 @@
 
 CHANNEL="release"
 BRANCH="releases/mozilla-$CHANNEL"
-RELEASE_TAG="FIREFOX_44_0_RELEASE"
-VERSION="44.0"
+RELEASE_TAG="FIREFOX_44_0_2_RELEASE"
+VERSION="44.0.2"
 
 # mozilla
 if [ -d mozilla ]; then

++ firefox-44.0-source.tar.xz -> firefox-44.0.2-source.tar.xz ++
/work/SRC/openSUSE:Factory/MozillaFirefox/firefox-44.0-source.tar.xz 
/work/SRC/openSUSE:Factory/.MozillaFirefox.new/firefox-44.0.2-source.tar.xz 
differ: char 26, line 1



++ l10n-44.0.tar.xz -> l10n-44.0.2.tar.xz ++
/work/SRC/openSUSE:Factory/MozillaFirefox/l10n-44.0.tar.xz 
/work/SRC/openSUSE:Factory/.MozillaFirefox.new/l10n-44.0.2.tar.xz differ: char 
26, line 1

++ mozilla-reduce-files-per-UnifiedBindings.patch ++
From: Andreas Stieger 
Date: Fri, 26 Feb 2016 16:20:09 +
Subject: For UnifiedBindings*.cpp files, reduce number of files per unified file
Upstream: no

home/abuild/rpmbuild/BUILD/obj/dom/bindings/UnifiedBindings16.cpp
[ 1589s] UnifiedBindings17.o
[ 1612s] [ 1567.621989] Out of memory: Kill process 19849 (cc1plus) score 170 
or sacrifice child
[ 1612s] [ 1567.625099] Killed process 19849 (cc1plus) total-vm:905704kB, 
anon-rss:102500kB, file-rss:156kB
[ 1616s] {standard input}: Assembler messages:
[ 1616s] {standard input}:316015: Warning: end of file not at end of a line; 
newline inserted
[ 1635s] {standard input}: Error: open CFI at the end of file; missing 
.cfi_endproc directive
[ 1636s] c++: internal compiler error: Killed (program cc1plus)
[ 1636s] Please submit a full bug report,

Index: mozilla/python/mozbuild/mozbuild/backend/common.py
===
--- mozilla.orig/p

commit libwebp for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package libwebp for openSUSE:Factory checked 
in at 2016-02-29 09:13:53

Comparing /work/SRC/openSUSE:Factory/libwebp (Old)
 and  /work/SRC/openSUSE:Factory/.libwebp.new (New)


Package is "libwebp"

Changes:

--- /work/SRC/openSUSE:Factory/libwebp/libwebp.changes  2015-12-17 
15:52:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.libwebp.new/libwebp.changes 2016-02-29 
09:15:51.0 +0100
@@ -1,0 +2,38 @@
+Fri Feb 12 15:34:04 UTC 2016 - mplus...@suse.com
+
+- Update baselibs.conf
+
+---
+Thu Feb 11 15:44:22 UTC 2016 - mplus...@suse.com
+
+- Update to 0.5.0
+  * miscellaneous bug & build fixes (issues #234, #258, #274, #275, 
+#278)
+  * encoder & decoder speed-ups on x86/ARM/MIPS for lossy & 
+lossless
++ note! YUV->RGB conversion was sped-up, but the results will 
+  be slightly different from previous releases
+  * various lossless encoder improvements
+  * gif2webp improvements, -min_size option added
+  * tools fully support input from stdin and output to stdout (issue 
+#168)
+  * New WebPAnimEncoder API for creating animations
+  * New WebPAnimDecoder API for decoding animations
+  * other API changes:
++ libwebp:
+  WebPPictureSmartARGBToYUVA() (-pre 4 in cwebp)
+  WebPConfig::exact (-exact in cwebp; -alpha_cleanup is now the 
+  default)
+  WebPConfig::near_lossless (-near_lossless in cwebp)
+  WebPFree() (free'ing webp allocated memory in other 
+  languages)
+  WebPConfigLosslessPreset()
+  WebPMemoryWriterClear()
++ libwebpdemux: removed experimental fragment related fields 
+  and functions
++ libwebpmux: WebPMuxSetCanvasSize()
+  * new libwebpextras library with some uncommon import functions:
+WebPImportGray/WebPImportRGB565/WebPImportRGB
+- Make building more verbose
+
+---

Old:

  libwebp-0.4.4.tar.gz
  libwebp-0.4.4.tar.gz.asc

New:

  libwebp-0.5.0.tar.gz
  libwebp-0.5.0.tar.gz.asc



Other differences:
--
++ libwebp.spec ++
--- /var/tmp/diff_new_pack.qWD5Or/_old  2016-02-29 09:15:52.0 +0100
+++ /var/tmp/diff_new_pack.qWD5Or/_new  2016-02-29 09:15:52.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libwebp
-Version:0.4.4
+Version:0.5.0
 Release:0
 Summary:Library and tools for the WebP graphics format
 License:BSD-3-Clause
@@ -58,53 +58,66 @@
 developers can use WebP to compress, archive and distribute digital
 images more efficiently.
 
-%package -n libwebp5
+%package -n libwebp6
 Summary:Library for the WebP graphics format
 Group:  System/Libraries
 
-%description -n libwebp5
+%description -n libwebp6
 WebP is an image format that does lossy compression of digital
 photographic images. WebP consists of a codec based on VP8, and a
 container based on RIFF. Webmasters, web developers and browser
 developers can use WebP to compress, archive and distribute digital
 images more efficiently.
 
-%package -n libwebpdemux1
+%package -n libwebpdemux2
 Summary:Library for extraction of data and images from WebP container 
files
 Group:  System/Libraries
 
-%description -n libwebpdemux1
+%description -n libwebpdemux2
 The WebP Demux API enables extraction of images and extended format
 data from WebP files. This API currently supports reading of XMP/EXIF
 metadata, ICC profile and animated images.
 
-%package -n libwebpmux1
+%package -n libwebpmux2
 Summary:Library for reading/adding data to WebP container files
 Group:  System/Libraries
 
-%description -n libwebpmux1
+%description -n libwebpmux2
 The WebP Mux API contains methods for adding data to and reading data
 from WebP files. This API currently supports XMP/EXIF metadata, ICC
 profile and animation.
 
-%package -n libwebpdecoder1
+%package -n libwebpdecoder2
 Summary:Library for decoding WebP graphics format
 Group:  System/Libraries
 
-%description -n libwebpdecoder1
+%description -n libwebpdecoder2
 WebP is an image format that does lossy compression of digital
 photographic images. WebP consists of a codec based on VP8, and a
 container based on RIFF. Webmasters, web developers and browser
 developers can use WebP to compress, archive and distribute digital
 images more efficiently.
 
+%package -n libwebpextras0
+Summary:Library for decoding WebP graphics format
+Group:  System/Libraries
+
+%description -n libwebpextras0
+WebP is an image format that does lossy compression of digital
+photographic images. WebP consists of a codec based on VP8, and a
+container based on RIFF. Webmaster

commit wayland for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package wayland for openSUSE:Factory checked 
in at 2016-02-29 09:12:49

Comparing /work/SRC/openSUSE:Factory/wayland (Old)
 and  /work/SRC/openSUSE:Factory/.wayland.new (New)


Package is "wayland"

Changes:

--- /work/SRC/openSUSE:Factory/wayland/wayland.changes  2015-10-01 
12:21:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.wayland.new/wayland.changes 2016-02-29 
09:12:55.0 +0100
@@ -1,0 +2,14 @@
+Thu Feb 18 21:44:50 UTC 2016 - jeng...@inai.de
+
+- Update to new upstream release 1.10.0
+* Drag and drop actions are now added to the Wayland API
+* Frame events group pointer events together
+* A buffer damage request, wl_surface.damage_buffer, allows
+  applications a more convenient way to communicate portions of a
+  surface needing to be re-rendered.
+* Shared memory buffers now do reference counting to allow
+  compositors to delay releasing the memory pools.
+* New APIs are provided for getting and setting the socket file
+  descriptor Wayland servers use to communicate with their clients.
+
+---

Old:

  wayland-1.9.0.tar.xz
  wayland-1.9.0.tar.xz.sig

New:

  wayland-1.10.0.tar.xz
  wayland-1.10.0.tar.xz.sig



Other differences:
--
++ wayland.spec ++
--- /var/tmp/diff_new_pack.d8Jd3O/_old  2016-02-29 09:12:56.0 +0100
+++ /var/tmp/diff_new_pack.d8Jd3O/_new  2016-02-29 09:12:56.0 +0100
@@ -18,7 +18,7 @@
 
 %define lname  libwayland0
 Name:   wayland
-Version:1.9.0
+Version:1.10.0
 Release:0
 Summary:Wayland Compositor Infrastructure
 License:MIT
@@ -41,6 +41,7 @@
 BuildRequires:  xz
 BuildRequires:  pkgconfig(expat)
 BuildRequires:  pkgconfig(libffi)
+BuildRequires:  pkgconfig(libxml-2.0)
 %define with_doc 0
 %if 0%with_doc
 BuildRequires:  doxygen

++ wayland-1.9.0.tar.xz -> wayland-1.10.0.tar.xz ++
 8010 lines of diff (skipped)




commit gsoap for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package gsoap for openSUSE:Factory checked 
in at 2016-02-29 09:13:03

Comparing /work/SRC/openSUSE:Factory/gsoap (Old)
 and  /work/SRC/openSUSE:Factory/.gsoap.new (New)


Package is "gsoap"

Changes:

--- /work/SRC/openSUSE:Factory/gsoap/gsoap.changes  2016-02-17 
12:12:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.gsoap.new/gsoap.changes 2016-02-29 
09:13:07.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 18 21:39:20 UTC 2016 - jeng...@inai.de
+
+- Employ full version SO naming because of ABI changes within 2.8.x
+
+---



Other differences:
--
++ gsoap.spec ++
--- /var/tmp/diff_new_pack.fo3M7W/_old  2016-02-29 09:13:08.0 +0100
+++ /var/tmp/diff_new_pack.fo3M7W/_new  2016-02-29 09:13:08.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gsoap
-%define lname  libgsoap-2_8
+%define lname  libgsoap-2_8_28
 Version:2.8.28
 Release:0
 Summary:Toolkit for C/C++ server and client web service applications
@@ -98,7 +98,12 @@
 ln -fs stdsoap2.cpp gsoap/stdsoap2.c
 
 %build
+# The version is used for filenames, and GSOAP changed its ABI between
+# 2.8.22 and 2.8.28, so we need the full version.
+perl -i -lpe 's{AC_INIT\(gsoap, 2.8\)}{AC_INIT([gsoap], [%version])}' \
+   configure.ac
 # Rebuild configure - fix that utterly long mktime test.
+# Also needed because Makefile.am and configure.ac are touched.
 autoreconf -fi
 
 %configure --enable-ipv6 --disable-static
@@ -126,7 +131,7 @@
 
 %files -n %lname
 %defattr(-,root,root)
-%_libdir/*-2.8.so
+%_libdir/libgsoap*-%version.so
 
 %files -n libgsoap-devel
 %defattr(-,root,root)




commit yast2-bootloader for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package yast2-bootloader for 
openSUSE:Factory checked in at 2016-02-29 09:13:20

Comparing /work/SRC/openSUSE:Factory/yast2-bootloader (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-bootloader.new (New)


Package is "yast2-bootloader"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-bootloader/yast2-bootloader.changes
2016-01-20 09:53:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-bootloader.new/yast2-bootloader.changes   
2016-02-29 09:13:24.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 25 19:27:10 UTC 2016 - dmuel...@suse.com
+
+- include quiet in default kernel boot parameters for aarch64
+- 3.1.163
+
+---

Old:

  yast2-bootloader-3.1.162.tar.bz2

New:

  yast2-bootloader-3.1.163.tar.bz2



Other differences:
--
++ yast2-bootloader.spec ++
--- /var/tmp/diff_new_pack.F6GMs4/_old  2016-02-29 09:13:25.0 +0100
+++ /var/tmp/diff_new_pack.F6GMs4/_new  2016-02-29 09:13:25.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-bootloader
-Version:3.1.162
+Version:3.1.163
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-bootloader-3.1.162.tar.bz2 -> yast2-bootloader-3.1.163.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-3.1.162/package/yast2-bootloader.changes 
new/yast2-bootloader-3.1.163/package/yast2-bootloader.changes
--- old/yast2-bootloader-3.1.162/package/yast2-bootloader.changes   
2016-01-13 14:22:12.0 +0100
+++ new/yast2-bootloader-3.1.163/package/yast2-bootloader.changes   
2016-02-26 09:17:12.0 +0100
@@ -1,4 +1,10 @@
 ---
+Thu Feb 25 19:27:10 UTC 2016 - dmuel...@suse.com
+
+- include quiet in default kernel boot parameters for aarch64
+- 3.1.163
+
+---
 Fri Nov 27 14:46:57 CET 2015 - snw...@suse.de
 
 - updated boot doc for prep partitions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-3.1.162/package/yast2-bootloader.spec 
new/yast2-bootloader-3.1.163/package/yast2-bootloader.spec
--- old/yast2-bootloader-3.1.162/package/yast2-bootloader.spec  2016-01-13 
14:22:12.0 +0100
+++ new/yast2-bootloader-3.1.163/package/yast2-bootloader.spec  2016-02-26 
09:17:12.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-bootloader
-Version:3.1.162
+Version:3.1.163
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-bootloader-3.1.162/src/modules/BootArch.rb 
new/yast2-bootloader-3.1.163/src/modules/BootArch.rb
--- old/yast2-bootloader-3.1.162/src/modules/BootArch.rb2016-01-13 
14:22:13.0 +0100
+++ new/yast2-bootloader-3.1.163/src/modules/BootArch.rb2016-02-26 
09:17:13.0 +0100
@@ -43,7 +43,7 @@
   )
   kernel_cmdline = Kernel.GetCmdLine.dup
 
-  if Arch.i386 || Arch.x86_64
+  if Arch.i386 || Arch.x86_64 || Arch.aarch64
 ret = kernel_cmdline
 ret << " resume=#{resume}" unless resume.empty?
 ret << " #{features}" unless features.empty?




commit libass for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package libass for openSUSE:Factory checked 
in at 2016-02-29 09:12:25

Comparing /work/SRC/openSUSE:Factory/libass (Old)
 and  /work/SRC/openSUSE:Factory/.libass.new (New)


Package is "libass"

Changes:

--- /work/SRC/openSUSE:Factory/libass/libass.changes2016-01-04 
09:21:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.libass.new/libass.changes   2016-02-29 
09:12:28.0 +0100
@@ -1,0 +2,14 @@
+Thu Feb 25 16:22:23 UTC 2016 - mplus...@suse.com
+
+- Update to 0.13.2
+  * Add ass_set_check_readorder() API function to disable use of 
+the ReadOrder field for duplicate checking in 
+ass_process_chunk().
+  * ass_step_sub(track, now, 0) now finds the start of the subtitle 
+at now.
+  * Bug fixes:
++ Fix an issue with the new duplicate checking, which could 
+  lead to missing subtitles after seeking.
++ Fix a crash with Core Text under specific circumstances.
+
+---

Old:

  libass-0.13.1.tar.xz

New:

  libass-0.13.2.tar.xz



Other differences:
--
++ libass.spec ++
--- /var/tmp/diff_new_pack.MLSkS6/_old  2016-02-29 09:12:29.0 +0100
+++ /var/tmp/diff_new_pack.MLSkS6/_new  2016-02-29 09:12:29.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libass
 #
-# 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
@@ -18,7 +18,7 @@
 
 %define soname 5
 Name:   libass
-Version:0.13.1
+Version:0.13.2
 Release:0
 Summary:Library for SSA/ASS-formatted subtitle rendering
 License:ISC
@@ -78,17 +78,16 @@
 make %{?_smp_mflags} check
 
 %post -n libass%{soname} -p /sbin/ldconfig
-
 %postun -n libass%{soname} -p /sbin/ldconfig
 
 %files -n libass%{soname}
 %defattr(-, root, root)
-%{_libdir}/*.so.%{soname}*
+%{_libdir}/libass.so.%{soname}*
 
 %files devel
 %defattr(-, root, root)
-%{_includedir}/*
-%{_libdir}/*.so
-%{_libdir}/pkgconfig/*.pc
+%{_includedir}/ass
+%{_libdir}/libass.so
+%{_libdir}/pkgconfig/libass.pc
 
 %changelog

++ libass-0.13.1.tar.xz -> libass-0.13.2.tar.xz ++
 27619 lines of diff (skipped)




commit xorg-x11-server for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-server for openSUSE:Factory 
checked in at 2016-02-29 09:12:35

Comparing /work/SRC/openSUSE:Factory/xorg-x11-server (Old)
 and  /work/SRC/openSUSE:Factory/.xorg-x11-server.new (New)


Package is "xorg-x11-server"

Changes:

--- /work/SRC/openSUSE:Factory/xorg-x11-server/xorg-x11-server.changes  
2016-02-17 12:26:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.xorg-x11-server.new/xorg-x11-server.changes 
2016-02-29 09:12:37.0 +0100
@@ -1,0 +2,13 @@
+Thu Feb 25 20:54:32 UTC 2016 - e...@suse.com
+
+- Add 50-extensions.conf
+  Disable the DGA extension by default (boo#947695).
+
+---
+Thu Feb 25 20:53:20 UTC 2016 - e...@suse.com
+
+- Replaced u_confine_to_shape.diff
+  by u_01-Improved-ConfineToShape.patch
+  and 
u_02-DIX-ConfineTo-Don-t-bother-about-the-bounding-box-when-grabbing-a-shaped-window.patch.
+
+---

Old:

  u_confine_to_shape.diff

New:

  50-extensions.conf
  u_01-Improved-ConfineToShape.patch
  
u_02-DIX-ConfineTo-Don-t-bother-about-the-bounding-box-when-grabbing-a-shaped-window.patch



Other differences:
--
++ xorg-x11-server.spec ++
--- /var/tmp/diff_new_pack.AP1685/_old  2016-02-29 09:12:39.0 +0100
+++ /var/tmp/diff_new_pack.AP1685/_new  2016-02-29 09:12:39.0 +0100
@@ -37,6 +37,7 @@
 Source2:README.updates
 Source3:xorgcfg.tar.bz2
 Source4:xorg-backtrace
+Source5:50-extensions.conf
 # RPM Macros to be installed. The ABI Versions will be injected by configure.
 Source90:   xorg-x11-server.macros.in
 # Source91 and Source99 are used to ensure proper ABI provides.
@@ -163,7 +164,8 @@
 Patch4: N_fix_fglrx_screendepth_issue.patch
 Patch6: N_fix-dpi-values.diff
 
-Patch101:   u_confine_to_shape.diff
+Patch100:   u_01-Improved-ConfineToShape.patch
+Patch101:   
u_02-DIX-ConfineTo-Don-t-bother-about-the-bounding-box-when-grabbing-a-shaped-window.patch
 # PATCH-FIX-UPSTREAM u_x86emu-include-order.patch sch...@suse.de -- Change 
include order to avoid conflict with system header, remove duplicate definitions
 Patch102:   u_x86emu-include-order.patch
 Patch104:   u_xorg-server-xdmcp.patch
@@ -268,7 +270,8 @@
 %patch4 -p0
 %patch6 -p0
 #
-%patch101
+%patch100 -p1
+%patch101 -p1
 %patch102 -p1
 %patch104 -p1
 %patch106 -p1
@@ -376,6 +379,7 @@
 %ifnarch s390 s390x
 mkdir -p %{buildroot}%{_sysconfdir}/X11/xorg.conf.d
 cp %{buildroot}/%{_datadir}/X11/xorg.conf.d/10-quirks.conf 
%{buildroot}%{_sysconfdir}/X11/xorg.conf.d/
+%{__install} -m 644 %{S:5} %{buildroot}%{_sysconfdir}/X11/xorg.conf.d/
 %endif
 %endif
 %if 0%{?suse_version} < 1315
@@ -459,6 +463,7 @@
 %if 0%{?suse_version} > 1120
 %dir %{_sysconfdir}/X11/xorg.conf.d
 %config(noreplace) %{_sysconfdir}/X11/xorg.conf.d/10-quirks.conf
+%config(noreplace) %{_sysconfdir}/X11/xorg.conf.d/50-extensions.conf
 %dir %{_datadir}/X11/xorg.conf.d
 %{_datadir}/X11/xorg.conf.d/10-*.conf
 %endif

++ 50-extensions.conf ++
# Add extensions to be disabled. This may be needed as some
# extra modules may add extensions which cause the maximum 
# number of extensions possible to be exceeded.
#
# SUSE Default: disable DGA.

Section "Extensions"
  Option "XFree86-DGA" "Disable"
EndSection++ u_01-Improved-ConfineToShape.patch ++
From: Keith Packard 
Date: Fri Oct 4 16:00:49 2013 -0700
Subject: [PATCH 1/2]Improved ConfineToShape
Patch-mainline: to be upstreamed
Git-commit: 0d0951624db7ae4686b362c7c6307f1ed46c8579

References: bnc#62146
Signed-off-by: Egbert Eich 

Find the box within the region which is closest to the point and move
there.

Signed-off-by: Keith Packard 
---
 dix/events.c | 74 
 1 file changed, 50 insertions(+), 24 deletions(-)

diff --git a/dix/events.c b/dix/events.c
index efaf91d..5244781 100644
--- a/dix/events.c
+++ b/dix/events.c
@@ -666,37 +666,63 @@ SetCriticalEvent(int event)
 criticalEvents[event >> 3] |= 1 << (event & 7);
 }
 
+static uint32_t
+ConfineToBox(int x, int y, BoxPtr box, int *px, int *py)
+{
+int dx, dy;
+
+*px = x;
+*py = y;
+
+if (*px < box->x1)
+*px = box->x1;
+else if (*px >= box->x2)
+*px = box->x2 - 1;
+
+if (*py < box->y1)
+*py = box->y1;
+else if (*py >= box->y2)
+*py = box->y2 - 1;
+
+dx = x - *px;
+if (dx < 0) dx = -dx;
+if (dx > 32767)
+dx = 32767;
+dy = y - *py;
+if (dy < 0) dy = -dy;
+if (dy > 32767)
+dy = 32767;
+
+return (uint32_t) dx * (uint32_t) dx + (uint32_t) dy * (uint32_t) dy;
+}
+
 void

commit installation-images-openSUSE for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package installation-images-openSUSE for 
openSUSE:Factory checked in at 2016-02-29 09:11:55

Comparing /work/SRC/openSUSE:Factory/installation-images-openSUSE (Old)
 and  /work/SRC/openSUSE:Factory/.installation-images-openSUSE.new (New)


Package is "installation-images-openSUSE"

Changes:

--- 
/work/SRC/openSUSE:Factory/installation-images-openSUSE/installation-images-openSUSE.changes
2016-02-23 16:53:16.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.installation-images-openSUSE.new/installation-images-openSUSE.changes
   2016-02-29 09:11:59.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 25 15:50:00 CET 2016 - snw...@suse.de
+
+- drop xf86-input-vmmouse (fate#320612)
+
+---



Other differences:
--
++ installation-images-openSUSE.spec ++
--- /var/tmp/diff_new_pack.AS26xD/_old  2016-02-29 09:12:00.0 +0100
+++ /var/tmp/diff_new_pack.AS26xD/_new  2016-02-29 09:12:00.0 +0100
@@ -285,7 +285,6 @@
 BuildRequires:  xf86-input-evdev
 BuildRequires:  xf86-input-synaptics
 %ifarch %ix86 x86_64
-BuildRequires:  xf86-input-vmmouse
 BuildRequires:  xf86-video-intel
 BuildRequires:  xf86-video-vmware
 %endif




commit liferea for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package liferea for openSUSE:Factory checked 
in at 2016-02-29 09:12:11

Comparing /work/SRC/openSUSE:Factory/liferea (Old)
 and  /work/SRC/openSUSE:Factory/.liferea.new (New)


Package is "liferea"

Changes:

--- /work/SRC/openSUSE:Factory/liferea/liferea.changes  2015-03-03 
11:13:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.liferea.new/liferea.changes 2016-02-29 
09:12:14.0 +0100
@@ -1,0 +2,47 @@
+Sat Feb 20 00:09:30 UTC 2016 - zai...@opensuse.org
+
+- Update to version 1.10.18:
+  + Fix gh#lwindolf/liferea#287: media:content support broken.
+  + Fix gh#lwindolf/liferea#279: Rules not visible in searchdialog.
+  + Fix gh#lwindolf/liferea#83: Segfault when sorting feeds in
+folder.
+  + Fix gh#lwindolf/liferea#302: Broken compilation with
+--disable-notify.
+- Changes from version 1.10.17:
+  + Fix gh#lwindolf/liferea#194: Add source dialog visually broken.
+  + Fix gh#lwindolf/liferea#195: Out-dated documentation on
+enclosure download.
+  + Fix gh#lwindolf/liferea#223: Search folder dialog don't show
+rules.
+  + Fix gh#lwindolf/liferea#227: Preference dialog fails to load
+with latest GtkBuilder.
+  + Fix gh#lwindolf/liferea#234: Segmentation fault upon attempting
+to add an OPML.
+  + Fix compilation error when there is no libnotify.
+  + Added debugging for gh#lwindolf/liferea#258: Dialog loading
+issues.
+- Changes from version 1.10.16:
+  + Added "Do Not Track" support (enabled per default).
+  + Added x-scheme-handler/feed to desktop file.
+  + Add image icons to plugins.
+  + Enable tests for parsing RFC822 dates with 2 digit year.
+  + Fix gh#lwindolf/liferea#78: Shaky text in feed list.
+  + Fix gh#lwindolf/liferea#195: Out-dated documentation on enclose
+download.
+  + Fix gh#lwindolf/liferea#198: Traceback on popup notifications.
+  + Fix gh#lwindolf/liferea#216: Untranslatable strings.
+  + Fix gh#lwindolf/liferea#256: PyGIWarnings on loading plugins.
+- Changes from version 1.10.15:
+  + Implement full screen mode for videos.
+  + Fix gh#lwindolf/liferea#32: Prevent erroneous "Mark all as
+read".
+  + Improves gh#lwindolf/liferea#36, gh#lwindolf/liferea#113: UI
+lock up during refresh.
+  + Fix gh#lwindolf/liferea#180: Removing item from (v)folder marks
+all read.
+  + Fix gh#lwindolf/liferea#140, #158: Vertical pane placement is
+forgotten.
+  + Fix gh#lwindolf/liferea#182: Missing config.h include in
+date.c.
+
+---

Old:

  liferea-1.10.14.tar.bz2

New:

  liferea-1.10.18.tar.bz2



Other differences:
--
++ liferea.spec ++
--- /var/tmp/diff_new_pack.b7Kyvj/_old  2016-02-29 09:12:15.0 +0100
+++ /var/tmp/diff_new_pack.b7Kyvj/_new  2016-02-29 09:12:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package liferea
 #
-# Copyright (c) 2015 SUSE LINUX Products 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
@@ -17,7 +17,7 @@
 
 
 Name:   liferea
-Version:1.10.14
+Version:1.10.18
 Release:0
 Summary:Linux Feed Reader
 License:GPL-2.0+
@@ -39,7 +39,7 @@
 BuildRequires:  pkgconfig(libpeas-1.0) >= 1.0.0
 BuildRequires:  pkgconfig(libpeas-gtk-1.0) >= 1.0.0
 BuildRequires:  pkgconfig(libsoup-2.4) >= 2.28.2
-BuildRequires:  pkgconfig(libxml-2.0)
+BuildRequires:  pkgconfig(libxml-2.0) >= 2.6.27
 BuildRequires:  pkgconfig(libxslt) >= 1.1.19
 BuildRequires:  pkgconfig(pango) >= 1.4.0
 BuildRequires:  pkgconfig(sqlite3) >= 3.7.0

++ liferea-1.10.14.tar.bz2 -> liferea-1.10.18.tar.bz2 ++
 7478 lines of diff (skipped)




commit net-snmp for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package net-snmp for openSUSE:Factory 
checked in at 2016-02-29 09:11:37

Comparing /work/SRC/openSUSE:Factory/net-snmp (Old)
 and  /work/SRC/openSUSE:Factory/.net-snmp.new (New)


Package is "net-snmp"

Changes:

--- /work/SRC/openSUSE:Factory/net-snmp/net-snmp.changes2015-09-13 
09:42:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.net-snmp.new/net-snmp.changes   2016-02-29 
09:11:44.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 15 20:38:20 UTC 2016 - astie...@suse.com
+
+- fix build with GNU grep 2.23, use grep -a to force text matching
+
+---



Other differences:
--
++ net-snmp.spec ++
--- /var/tmp/diff_new_pack.KiBeyH/_old  2016-02-29 09:11:45.0 +0100
+++ /var/tmp/diff_new_pack.KiBeyH/_new  2016-02-29 09:11:45.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package net-snmp
 #
-# 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
@@ -280,7 +280,7 @@
 pushd python
 %{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot}
 popd
-%{__grep} -v "^#define PACKAGE" 
%{buildroot}%{_includedir}/net-snmp/net-snmp-config.h > \
+%{__grep} -a -v "^#define PACKAGE" 
%{buildroot}%{_includedir}/net-snmp/net-snmp-config.h > \
 %{buildroot}%{_includedir}/net-snmp/net-snmp-config.h.new
 %{__mv}  %{buildroot}%{_includedir}/net-snmp/net-snmp-config.h{.new,}
 %{__install} -D -m 0644 %{S:7} \




commit autoyast2 for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package autoyast2 for openSUSE:Factory 
checked in at 2016-02-29 09:11:08

Comparing /work/SRC/openSUSE:Factory/autoyast2 (Old)
 and  /work/SRC/openSUSE:Factory/.autoyast2.new (New)


Package is "autoyast2"

Changes:

--- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes  2016-02-23 
16:52:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.autoyast2.new/autoyast2.changes 2016-02-29 
09:11:12.0 +0100
@@ -1,0 +2,10 @@
+Tue Feb 23 17:01:09 CET 2016 - sch...@suse.de
+
+- As network configuration will be moved to first installation
+  stage and wickedd should not be restarted in the second stage,
+  all wickedd and network services will not be restarted at all
+  by AutoYaST.
+  (bnc#944349,  bnc#955260)
+- 3.1.116
+
+---

Old:

  autoyast2-3.1.115.tar.bz2

New:

  autoyast2-3.1.116.tar.bz2



Other differences:
--
++ autoyast2.spec ++
--- /var/tmp/diff_new_pack.Q3haqO/_old  2016-02-29 09:11:13.0 +0100
+++ /var/tmp/diff_new_pack.Q3haqO/_new  2016-02-29 09:11:13.0 +0100
@@ -18,7 +18,7 @@
 
 Name:   autoyast2
 
-Version:3.1.115
+Version:3.1.116
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ autoyast2-3.1.115.tar.bz2 -> autoyast2-3.1.116.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.115/package/autoyast2.changes 
new/autoyast2-3.1.116/package/autoyast2.changes
--- old/autoyast2-3.1.115/package/autoyast2.changes 2016-02-18 
09:19:45.0 +0100
+++ new/autoyast2-3.1.116/package/autoyast2.changes 2016-02-24 
10:04:14.0 +0100
@@ -1,4 +1,14 @@
 ---
+Tue Feb 23 17:01:09 CET 2016 - sch...@suse.de
+
+- As network configuration will be moved to first installation
+  stage and wickedd should not be restarted in the second stage,
+  all wickedd and network services will not be restarted at all
+  by AutoYaST.
+  (bnc#944349,  bnc#955260)
+- 3.1.116
+
+---
 Wed Feb 17 10:01:02 UTC 2016 - mvid...@suse.com
 
 - Moved the body of AutoinstallIoInclude#Get to yast2-update
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.115/package/autoyast2.spec 
new/autoyast2-3.1.116/package/autoyast2.spec
--- old/autoyast2-3.1.115/package/autoyast2.spec2016-02-18 
09:19:45.0 +0100
+++ new/autoyast2-3.1.116/package/autoyast2.spec2016-02-24 
10:04:14.0 +0100
@@ -18,7 +18,7 @@
 
 Name:   autoyast2
 
-Version:3.1.115
+Version:3.1.116
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.115/src/clients/inst_autoconfigure.rb 
new/autoyast2-3.1.116/src/clients/inst_autoconfigure.rb
--- old/autoyast2-3.1.115/src/clients/inst_autoconfigure.rb 2016-02-18 
09:19:45.0 +0100
+++ new/autoyast2-3.1.116/src/clients/inst_autoconfigure.rb 2016-02-24 
10:04:14.0 +0100
@@ -293,13 +293,21 @@
 ["general", "mode", "max_systemd_wait"],
 30
   )
+
   @ser_ignore = [
 "YaST2-Second-Stage.service",
 "autoyast-initscripts.service",
 # Do not restart dbus. Otherwise some services will hang.
 # bnc#937900
-"dbus.service"
+"dbus.service",
+# Do not restart wickedd* services
+# bnc#944349
+"^wickedd",
+# Do not restart NetworkManager* services
+# bnc#955260
+"^NetworkManager"
   ]
+
   if final_restart_services
 logStep(_("Restarting all running services"))
 @cmd = "systemctl --type=service list-units | grep \" running \""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.115/test/AutoInstallRules_test.rb 
new/autoyast2-3.1.116/test/AutoInstallRules_test.rb
--- old/autoyast2-3.1.115/test/AutoInstallRules_test.rb 2016-02-18 
09:19:45.0 +0100
+++ new/autoyast2-3.1.116/test/AutoInstallRules_test.rb 2016-02-24 
10:04:14.0 +0100
@@ -71,6 +71,10 @@
   end
 
   describe "#ProbeRules" do
+before(:each) do
+  subject.reset
+end
+
 it "reads installed product properties from content file" do
   expect(Yast::SCR).to 
receive(:Read).with(Yast::Path.new(".probe.bios")).and_return([])
   expect(Yast::SCR).to 
receive(:Read).with(Yast::Path.new(".probe.memory")).and_return([])
@@ -98,7 +102,6 @@
 
 cont

commit openldap2 for openSUSE:Factory

2016-02-29 Thread h_root
Hello community,

here is the log from the commit of package openldap2 for openSUSE:Factory 
checked in at 2016-02-29 09:11:20

Comparing /work/SRC/openSUSE:Factory/openldap2 (Old)
 and  /work/SRC/openSUSE:Factory/.openldap2.new (New)


Package is "openldap2"

Changes:

--- /work/SRC/openSUSE:Factory/openldap2/openldap2.changes  2016-02-18 
12:35:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.openldap2.new/openldap2.changes 2016-02-29 
09:11:26.0 +0100
@@ -1,0 +2,28 @@
+Thu Feb 25 11:06:12 UTC 2016 - h...@suse.com
+
+- Move ldap.conf into libldap-data package, per convention.
+
+---
+Sun Feb 21 23:04:38 UTC 2016 - jeng...@inai.de
+
+- Move ldap.conf out of shlib package again, they are not allowed
+  there for obvious reasons (conflict with future package).
+
+---
+Thu Feb 18 14:45:30 UTC 2016 - h...@suse.com
+
+- Build password strength enforcer as an implementation of ppolicy
+  password checker, introducing:
+  ppolicy-check-password-1.2.tar.gz
+  ppolicy-check-password.Makefile
+  ppolicy-check-password.conf
+  ppolicy-check-password.5
+  0200-Fix-incorrect-calculation-of-consecutive-number-of-c.patch
+  (Implements fate#319461)
+
+---
+Thu Feb 18 12:18:13 UTC 2016 - lmue...@suse.com
+
+- Remove redundant -n openldap2- package name prefix.
+
+---

New:

  0200-Fix-incorrect-calculation-of-consecutive-number-of-c.patch
  ppolicy-check-password-1.2.tar.gz
  ppolicy-check-password.5
  ppolicy-check-password.Makefile
  ppolicy-check-password.conf



Other differences:
--
++ openldap2.spec ++
--- /var/tmp/diff_new_pack.Me3g3K/_old  2016-02-29 09:11:29.0 +0100
+++ /var/tmp/diff_new_pack.Me3g3K/_new  2016-02-29 09:11:29.0 +0100
@@ -25,6 +25,10 @@
 %define  _rundir /var/run/slapd
 %endif
 
+%define name_ppolicy_check_module ppolicy-check-password
+%define version_ppolicy_check_module 1.2
+%define ppolicy_docdir 
%{_docdir}/openldap-%{name_ppolicy_check_module}-%{version_ppolicy_check_module}
+
 Name:   openldap2
 Summary:An open source implementation of the Lightweight Directory 
Access Protocol
 License:OLDAP-2.8
@@ -59,6 +63,12 @@
 Patch9: 0009-Fix-ldap-host-lookup-ipv6.patch
 Patch10:0010-Enforce-minimum-DH-size-of-1024.patch
 Patch11:0011-openldap-re24-its7796.patch
+Source200:  
%{name_ppolicy_check_module}-%{version_ppolicy_check_module}.tar.gz
+Source201:  %{name_ppolicy_check_module}.Makefile
+Source202:  %{name_ppolicy_check_module}.conf
+Source203:  %{name_ppolicy_check_module}.5
+Patch200:   0200-Fix-incorrect-calculation-of-consecutive-number-of-c.patch
+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  cyrus-sasl-devel
 BuildRequires:  db-devel
@@ -86,54 +96,65 @@
 
 The server provides several database backends and overlays.
 
-%package  -n openldap2-back-perl
+%package back-perl
 Summary:OpenLDAP Perl Back-End
 Group:  Productivity/Networking/LDAP/Servers
 Requires:   openldap2 = %{version_main}
 Requires:   perl = %{perl_version}
 
-%description -n openldap2-back-perl
+%description back-perl
 The OpenLDAP Perl back-end allows you to execute Perl code specific to
 different LDAP operations.
 
-%package  -n openldap2-back-sock
+%package back-sock
 Summary:OpenLDAP Socket Back-End
 Group:  Productivity/Networking/LDAP/Servers
 Requires:   openldap2 = %{version_main}
 Provides:   openldap2:/usr/share/man/man5/slapd-sock.5.gz
 
-%description -n openldap2-back-sock
+%description back-sock
 The OpenLDAP socket back-end allows you to handle LDAP requests and
 results with an external process listening on a Unix domain socket.
 
-%package  -n openldap2-back-meta
+%package back-meta
 Summary:OpenLDAP Meta Back-End
 Group:  Productivity/Networking/LDAP/Servers
 Requires:   openldap2 = %{version_main}
 Provides:   openldap2:/usr/share/man/man5/slapd-meta.5.gz
 
-%description -n openldap2-back-meta
+%description back-meta
 The OpenLDAP Meta back-end is able to perform basic LDAP proxying with
 respect to a set of remote LDAP servers. The information contained in
 these servers can be presented as belonging to a single Directory
 Information Tree (DIT).
 
-%package  -n openldap2-back-sql
+%package back-sql
 Summary:OpenLDAP SQL Back-End
 Group:  Productivity/Networking/LDAP/Servers
 Requires:   openldap2 = %{version_main}
 
-%description -n openldap2-back-sql
+%description back-sq