Hello community,

here is the log from the commit of package eric5 for openSUSE:Factory checked 
in at 2013-01-07 15:03:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/eric5 (Old)
 and      /work/SRC/openSUSE:Factory/.eric5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "eric5", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/eric5/eric5.changes      2012-10-18 
15:56:11.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.eric5.new/eric5.changes 2013-01-07 
15:03:17.000000000 +0100
@@ -1,0 +2,7 @@
+Wed Jan  2 04:07:18 UTC 2013 - [email protected]
+
+- Update to version 5.2.7
+  * Bugfix release
+  * Refresh eric5-build_compare.patch
+
+-------------------------------------------------------------------

Old:
----
  eric5-5.2.6.tar.gz
  eric5-i18n-cs-5.2.6.tar.gz
  eric5-i18n-de-5.2.6.tar.gz
  eric5-i18n-en-5.2.6.tar.gz
  eric5-i18n-es-5.2.6.tar.gz
  eric5-i18n-fr-5.2.6.tar.gz
  eric5-i18n-it-5.2.6.tar.gz
  eric5-i18n-ru-5.2.6.tar.gz
  eric5-i18n-tr-5.2.6.tar.gz
  eric5-i18n-zh_CN.GB2312-5.2.6.tar.gz

New:
----
  eric5-5.2.7.tar.gz
  eric5-i18n-cs-5.2.7.tar.gz
  eric5-i18n-de-5.2.7.tar.gz
  eric5-i18n-en-5.2.7.tar.gz
  eric5-i18n-es-5.2.7.tar.gz
  eric5-i18n-fr-5.2.7.tar.gz
  eric5-i18n-it-5.2.7.tar.gz
  eric5-i18n-ru-5.2.7.tar.gz
  eric5-i18n-tr-5.2.7.tar.gz
  eric5-i18n-zh_CN.GB2312-5.2.7.tar.gz

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

Other differences:
------------------
++++++ eric5.spec ++++++
--- /var/tmp/diff_new_pack.Ihcbr7/_old  2013-01-07 15:03:19.000000000 +0100
+++ /var/tmp/diff_new_pack.Ihcbr7/_new  2013-01-07 15:03:19.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package eric5
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products 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:           eric5
-Version:        5.2.6
+Version:        5.2.7
 Release:        0
 Summary:        Python IDE based on Qt4
 License:        GPL-3.0+

++++++ eric5-5.2.6.tar.gz -> eric5-5.2.7.tar.gz ++++++
/work/SRC/openSUSE:Factory/eric5/eric5-5.2.6.tar.gz 
/work/SRC/openSUSE:Factory/.eric5.new/eric5-5.2.7.tar.gz differ: char 5, line 1

++++++ eric5-build_compare.patch ++++++
--- /var/tmp/diff_new_pack.Ihcbr7/_old  2013-01-07 15:03:19.000000000 +0100
+++ /var/tmp/diff_new_pack.Ihcbr7/_new  2013-01-07 15:03:19.000000000 +0100
@@ -1,19 +1,21 @@
---- install.py.orig    2011-11-23 23:34:48.000000000 -0500
-+++ install.py 2011-11-23 23:35:00.000000000 -0500
-@@ -469,24 +469,24 @@
+Index: install.py
+===================================================================
+--- install.py.orig
++++ install.py
+@@ -530,24 +530,24 @@ def installEric():
          apidir = os.path.join(cfg['apidir'], progLanguage.lower())
          if not os.path.exists(apidir):
              os.makedirs(apidir)
 -        for apiName in glob.glob(os.path.join(sourceDir, "APIs", 
progLanguage, "*.api")):
 +        for apiName in sorted(glob.glob(os.path.join(sourceDir, "APIs", 
progLanguage, "*.api"))):
              try:
-                 shutil.copy(apiName, apidir)
+                 shutilCopy(apiName, apidir)
              except EnvironmentError:
                  print("Could not install '{0}'.".format(apiName))
 -        for apiName in glob.glob(os.path.join(sourceDir, "APIs", 
progLanguage, "*.bas")):
 +        for apiName in sorted(glob.glob(os.path.join(sourceDir, "APIs", 
progLanguage, "*.bas"))):
              try:
-                 shutil.copy(apiName, apidir)
+                 shutilCopy(apiName, apidir)
              except EnvironmentError:
                  print("Could not install '{0}'.".format(apiName))
          if progLanguage == "Python":
@@ -21,15 +23,15 @@
 -            for apiName in glob.glob(os.path.join(sourceDir, "APIs", 
"Python3", "*.api")):
 +            for apiName in sorted(glob.glob(os.path.join(sourceDir, "APIs", 
"Python3", "*.api"))):
                  try:
-                     shutil.copy(apiName, apidir)
+                     shutilCopy(apiName, apidir)
                  except EnvironmentError:
                      print("Could not install '{0}'.".format(apiName))
 -            for apiName in glob.glob(os.path.join(sourceDir, "APIs", 
"Python3", "*.bas")):
 +            for apiName in sorted(glob.glob(os.path.join(sourceDir, "APIs", 
"Python3", "*.bas"))):
                  try:
-                     shutil.copy(apiName, apidir)
+                     shutilCopy(apiName, apidir)
                  except EnvironmentError:
-@@ -547,11 +547,11 @@
+@@ -687,11 +687,11 @@ def createConfig():
      
      apis = []
      for progLanguage in progLanguages:

++++++ eric5-i18n-cs-5.2.6.tar.gz -> eric5-i18n-cs-5.2.7.tar.gz ++++++
++++ 6006 lines of diff (skipped)

++++++ eric5-i18n-de-5.2.6.tar.gz -> eric5-i18n-de-5.2.7.tar.gz ++++++
++++ 6049 lines of diff (skipped)

++++++ eric5-i18n-en-5.2.6.tar.gz -> eric5-i18n-en-5.2.7.tar.gz ++++++
++++ 5870 lines of diff (skipped)

++++++ eric5-i18n-es-5.2.6.tar.gz -> eric5-i18n-es-5.2.7.tar.gz ++++++
++++ 5927 lines of diff (skipped)

++++++ eric5-i18n-fr-5.2.6.tar.gz -> eric5-i18n-fr-5.2.7.tar.gz ++++++
++++ 6107 lines of diff (skipped)

++++++ eric5-i18n-it-5.2.6.tar.gz -> eric5-i18n-it-5.2.7.tar.gz ++++++
++++ 6004 lines of diff (skipped)

++++++ eric5-i18n-ru-5.2.6.tar.gz -> eric5-i18n-ru-5.2.7.tar.gz ++++++
++++ 6065 lines of diff (skipped)

++++++ eric5-i18n-tr-5.2.6.tar.gz -> eric5-i18n-tr-5.2.7.tar.gz ++++++
++++ 5906 lines of diff (skipped)

++++++ eric5-i18n-zh_CN.GB2312-5.2.6.tar.gz -> 
eric5-i18n-zh_CN.GB2312-5.2.7.tar.gz ++++++
++++ 6048 lines of diff (skipped)

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to