Hello community,

here is the log from the commit of package retext for openSUSE:Factory checked 
in at 2015-06-10 09:16:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/retext (Old)
 and      /work/SRC/openSUSE:Factory/.retext.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "retext"

Changes:
--------
--- /work/SRC/openSUSE:Factory/retext/retext.changes    2015-01-07 
09:39:10.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.retext.new/retext.changes       2015-06-10 
09:16:31.000000000 +0200
@@ -1,0 +2,5 @@
+Mon Jun  8 19:29:35 UTC 2015 - [email protected]
+
+- update to version 5.0.2
+
+-------------------------------------------------------------------

Old:
----
  ReText-5.0.1.tar.gz
  ReText-5.0.1.tar.gz.asc

New:
----
  ReText-5.0.2.tar.gz
  ReText-5.0.2.tar.gz.asc

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

Other differences:
------------------
++++++ retext.spec ++++++
--- /var/tmp/diff_new_pack.IFDgI1/_old  2015-06-10 09:16:32.000000000 +0200
+++ /var/tmp/diff_new_pack.IFDgI1/_new  2015-06-10 09:16:32.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package retext
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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:           retext
-Version:        5.0.1
+Version:        5.0.2
 Release:        0
 Summary:        Simple editor for Markdown and reStructuredText
 License:        GPL-3.0+

++++++ ReText-5.0.1.tar.gz -> ReText-5.0.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ReText-5.0.1/PKG-INFO new/ReText-5.0.2/PKG-INFO
--- old/ReText-5.0.1/PKG-INFO   2014-10-26 11:57:29.000000000 +0100
+++ new/ReText-5.0.2/PKG-INFO   2015-04-17 19:09:50.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: ReText
-Version: 5.0.1
+Version: 5.0.2
 Summary: Simple editor for Markdown and reStructuredText
 Home-page: http://retext.sourceforge.net/
 Author: Dmitry Shachnev
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ReText-5.0.1/ReText/__init__.py 
new/ReText-5.0.2/ReText/__init__.py
--- old/ReText-5.0.1/ReText/__init__.py 2014-10-26 11:38:14.000000000 +0100
+++ new/ReText-5.0.2/ReText/__init__.py 2015-04-17 19:08:52.000000000 +0200
@@ -10,7 +10,7 @@
 from PyQt5.QtGui import QFont
 
 app_name = "ReText"
-app_version = "5.0.1"
+app_version = "5.0.2"
 
 settings = QSettings('ReText project', 'ReText')
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ReText-5.0.1/ReText/config.py 
new/ReText-5.0.2/ReText/config.py
--- old/ReText-5.0.1/ReText/config.py   2014-10-26 11:36:33.000000000 +0100
+++ new/ReText-5.0.2/ReText/config.py   2015-04-17 17:52:53.000000000 +0200
@@ -106,7 +106,7 @@
                                if name == 'tabWidth':
                                        self.configurators[name].setRange(1, 10)
                                else:
-                                       self.configurators[name].setMaximum(100)
+                                       self.configurators[name].setMaximum(200)
                                self.configurators[name].setValue(value)
                        elif isinstance(value, str) and fileselector:
                                self.configurators[name] = 
FileSelectButton(self, value)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ReText-5.0.1/ReText/window.py 
new/ReText-5.0.2/ReText/window.py
--- old/ReText-5.0.1/ReText/window.py   2014-10-26 11:36:33.000000000 +0100
+++ new/ReText-5.0.2/ReText/window.py   2015-04-17 19:08:52.000000000 +0200
@@ -6,6 +6,7 @@
 import markups
 import sys
 from subprocess import Popen
+from markups.common import MODULE_HOME_PAGE
 from ReText import icon_path, DOCTYPE_MARKDOWN, DOCTYPE_REST, app_name, \
  app_version, globalSettings, settings, readListFromSettings, \
  writeListToSettings, writeToSettings, datadirs, enchant, enchant_available
@@ -24,6 +25,7 @@
  QLineEdit, QMainWindow, QMenuBar, QMessageBox, QSplitter, QTabWidget, \
  QTextBrowser, QTextEdit, QToolBar
 from PyQt5.QtPrintSupport import QPrintDialog, QPrintPreviewDialog, QPrinter
+from PyQt5.QtWebKit import QWebSettings
 from PyQt5.QtWebKitWidgets import QWebPage, QWebView
 
 class ReTextWindow(QMainWindow):
@@ -383,6 +385,7 @@
                if not globalSettings.handleWebLinks:
                        
webView.page().setLinkDelegationPolicy(QWebPage.DelegateExternalLinks)
                        
webView.page().linkClicked.connect(QDesktopServices.openUrl)
+               
webView.settings().setAttribute(QWebSettings.LocalContentCanAccessFileUrls, 
False)
                return webView
 
        def createTab(self, fileName):
@@ -639,7 +642,7 @@
                        errMsg = self.tr('Could not parse file contents, check 
if '
                        'you have the <a href="%s">necessary module</a> 
installed!')
                        try:
-                               errMsg %= 
markupClass.attributes[markups.MODULE_HOME_PAGE]
+                               errMsg %= 
markupClass.attributes[MODULE_HOME_PAGE]
                        except (AttributeError, KeyError):
                                # Remove the link if markupClass doesn't have 
the needed attribute
                                errMsg = errMsg.replace('<a href="%s">', '')
Files old/ReText-5.0.1/locale/retext_de.qm and 
new/ReText-5.0.2/locale/retext_de.qm differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ReText-5.0.1/locale/retext_de.ts 
new/ReText-5.0.2/locale/retext_de.ts
--- old/ReText-5.0.1/locale/retext_de.ts        2014-10-26 11:36:33.000000000 
+0100
+++ new/ReText-5.0.2/locale/retext_de.ts        2015-04-17 17:52:53.000000000 
+0200
@@ -446,7 +446,7 @@
         <location filename="window.py" line="1180"/>
         <source>The document has been modified.
 Do you want to save your changes?</source>
-        <translation>Das Dokument wurde verändert.⏎
+        <translation>Das Dokument wurde verändert.
 Sollen die Änderungen gespeichert werden?</translation>
     </message>
     <message>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ReText-5.0.1/setup.py new/ReText-5.0.2/setup.py
--- old/ReText-5.0.1/setup.py   2014-10-26 11:57:10.000000000 +0100
+++ new/ReText-5.0.2/setup.py   2015-04-17 19:08:52.000000000 +0200
@@ -1,6 +1,6 @@
 #!/usr/bin/env python3
 
-VERSION = '5.0.1'
+VERSION = '5.0.2'
 
 long_description = '''\
 ReText is simple text editor that supports Markdown and reStructuredText
@@ -71,9 +71,8 @@
                self.identity = '0x2f1c8ae0'
                upload.run(self)
                for command, pyversion, filename in 
self.distribution.dist_files:
-                       print(filename)
                        full_version = re.search(r'ReText-([\d\.]+)\.tar\.gz', 
filename).group(1)
-                       new_path = 
('[email protected]:/home/frs/project/ReText/ReText-%s/%s' %
+                       new_path = 
('[email protected]:/home/frs/project/r/re/retext/ReText-%s/%s' %
                                    (full_version[:-2], basename(filename)))
                        args = ['scp', filename, new_path]
                        print('calling process', args)

++++++ ReText-5.0.1.tar.gz.asc -> ReText-5.0.2.tar.gz.asc ++++++
--- /work/SRC/openSUSE:Factory/retext/ReText-5.0.1.tar.gz.asc   2014-12-21 
12:04:54.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.retext.new/ReText-5.0.2.tar.gz.asc      
2015-06-10 09:16:31.000000000 +0200
@@ -1,17 +1,17 @@
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1
 
-iQIcBAABAgAGBQJUTNOZAAoJEGAmk20vHIrgomgQAKFKdtqpuxeL52tNGxNf+rjE
-luBtW5aHzg9zdFg8sPFn4W+zeItOQ+oWcRtf+onboXjrjqzRoXSirsbdSxKhAomL
-KOwNHYIAWd2OxDFG0cKNHbpL0qiV3TX4KWOug6SuBEk2j0RuB4b1gVaxrXIwEnty
-oOVKUsfiMGCcnqzGMe2NuEec3rKBdSvr9GMOSdE08ukpIOvtED2bDadvrDknzaOJ
-EMfyemH/iudSh1Zr6LAswdlZYtjlAcFZn3Ad4Um0Jsy8kSYp8Q09VR4d3teaCeme
-B4DAgHcX/+3DiFmyVtRICMNLi8nXo2DIoOUWMq+9CPQP7cMNnNYFO6JfmSzNrR0y
-p4OmNihxUbGmaaKPDzOUw+z1sbsqzt/SY7tz6rw+J6gj9w+5Kmsi58zX6jy7j+/d
-sa0ZFGTvEkTDeGA4aaU3itAyAjMSgxoNTtLS5yVA4VWXgJskD/D4qLVPzO1ya/Z8
-9H3qzSRKEDMS6yU1+Z5KVSF1lvxzVmKYTS36j3GBUjTxMFolexaU8F7ZQVPewEAU
-b9QAK+XDoKYw1VJh6F2x2hwgVt1Bklal+GxZ+ikLyCvn8Q4gJb8CI12gyrFYVSUM
-hlqIegP9FREa3i65hIrvk7ei6wmfNo3GMdkpd45DI/wFc4xlcmITzBJpxCRZCJ+l
-wojXA441SWSJ3l6luzeB
-=3CYp
+iQIcBAABAgAGBQJVMT5eAAoJENb+cQNj+F3TWOwP/3Zx13tUxW/F1BcXF1+jwrfW
+kXD1HV2lK40MMQX9LYAW0++yG+0QVfe1rOQdF9jg37c5N208NPyKmencA8cI199X
+GoOqbuN4bB4IkiJvS9G3/zNilJAs1IxYR3u8M+Vyn9qNFXx6vTHWC11dAEzXtsTh
+ntEtGt/PQTPOy33SQP91UaTi3itHyTuWPX7mt/Bt+Vsd3BadNU9eS5L+a1BIdVti
+Bzh7RURyc3BLNc6xf6xvIp42x1SFmvMx3dziKN78FWG3z3azhOHygvvEToliJK/q
+TA0t2drmhLT9sJCDL4Rf3lDg9ek+1yjKiMqeM36tofgxwW09MJd/xngqIbT+YG8z
+uqJe/7Tkl9RzshYxx/tTr/KzS7lsF5HbPirqBZ4p5fvT336KJj/g9+s/NtqlgTbe
+DvpvqlHEkpOtwIxn0Z4OCuC+kc3kn2ZgtVxUPTbndIvYfFxgfFNB/MJdKbO80ORn
+ZVroBtwVJDCnLP2snA2Smf0iEsi9SfkPU0ELZCdsr00l6RbojbGpCOo5sgshIsga
+BqFdw5+bChcPTWIADbzW/HvXxEcNKfYC9DDhDLgLNTQ2BtEC75UT1vBWnJXGi8/b
+ZsnLO4EbckRB73DpMMA8EDP3gOZ2JbRWUluIZgTFTpYnJwc13k8+36DB0f5fFJ+0
+Kw5iW1qtUWXqDysErgc3
+=aRvi
 -----END PGP SIGNATURE-----


Reply via email to