commit kdevelop5-plugin-php for openSUSE:Factory

2020-09-09 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2020-09-09 18:04:39

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.3399 (New)


Package is "kdevelop5-plugin-php"

Wed Sep  9 18:04:39 2020 rev:25 rq:833183 version:5.6.0

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2020-06-03 20:34:06.649471326 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.3399/kdevelop5-plugin-php.changes
  2020-09-09 18:10:08.343645950 +0200
@@ -1,0 +2,7 @@
+Tue Sep  8 11:36:18 UTC 2020 - wba...@tmo.at
+
+- Update to 5.6.0
+  * Update phpfunctions.php to phpdoc revision 350290
+  * Support PHP 7.1's syntax for catching multiple exceptions
+
+---

Old:

  kdev-php-5.5.2.tar.xz

New:

  kdev-php-5.6.0.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.ZQWsDa/_old  2020-09-09 18:10:10.311647743 +0200
+++ /var/tmp/diff_new_pack.ZQWsDa/_new  2020-09-09 18:10:10.315647747 +0200
@@ -18,7 +18,7 @@
 
 %define rname   kdev-php
 Name:   kdevelop5-plugin-php
-Version:5.5.2
+Version:5.6.0
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0-or-later

++ kdev-php-5.5.2.tar.xz -> kdev-php-5.6.0.tar.xz ++
 8873 lines of diff (skipped)




commit kdevelop5-plugin-php for openSUSE:Factory

2020-06-03 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2020-06-03 20:33:28

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.3606 (New)


Package is "kdevelop5-plugin-php"

Wed Jun  3 20:33:28 2020 rev:24 rq:810921 version:5.5.2

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2020-05-07 14:49:35.793849958 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.3606/kdevelop5-plugin-php.changes
  2020-06-03 20:34:06.649471326 +0200
@@ -1,0 +2,6 @@
+Tue Jun  2 14:13:31 UTC 2020 - wba...@tmo.at
+
+- Update to 5.5.2
+  * Check type before accessing it (kde#421509)
+
+---

Old:

  kdev-php-5.5.1.tar.xz

New:

  kdev-php-5.5.2.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.jebA5N/_old  2020-06-03 20:34:07.341473494 +0200
+++ /var/tmp/diff_new_pack.jebA5N/_new  2020-06-03 20:34:07.341473494 +0200
@@ -18,7 +18,7 @@
 
 %define rname   kdev-php
 Name:   kdevelop5-plugin-php
-Version:5.5.1
+Version:5.5.2
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0-or-later

++ kdev-php-5.5.1.tar.xz -> kdev-php-5.5.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.5.1/CMakeLists.txt 
new/kdev-php-5.5.2/CMakeLists.txt
--- old/kdev-php-5.5.1/CMakeLists.txt   2020-05-05 21:00:53.0 +0200
+++ new/kdev-php-5.5.2/CMakeLists.txt   2020-06-02 15:22:53.0 +0200
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.0)
 cmake_policy(SET CMP0048 NEW)
-project(kdev-php VERSION "5.5.1")
+project(kdev-php VERSION "5.5.2")
 
 find_package(Threads)
 find_package (ECM "5.28.0" REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdev-php-5.5.1/duchain/builders/declarationbuilder.cpp 
new/kdev-php-5.5.2/duchain/builders/declarationbuilder.cpp
--- old/kdev-php-5.5.1/duchain/builders/declarationbuilder.cpp  2020-05-05 
21:00:32.0 +0200
+++ new/kdev-php-5.5.2/duchain/builders/declarationbuilder.cpp  2020-06-02 
15:22:34.0 +0200
@@ -560,7 +560,7 @@
 Q_ASSERT(currentContext()->type() == DUContext::Class);
 foreach(Declaration * dec, 
currentContext()->findLocalDeclarations(name.first(), startPos(node)))
 {
-if (wasEncountered(dec) && !dec->isFunctionDeclaration() && 
!(dec->abstractType()->modifiers() & AbstractType::ConstModifier)) {
+if (wasEncountered(dec) && !dec->isFunctionDeclaration() && 
dec->abstractType() && !(dec->abstractType()->modifiers() & 
AbstractType::ConstModifier)) {
 reportRedeclarationError(dec, node);
 break;
 }
@@ -638,7 +638,7 @@
 // check for redeclarations
 foreach(Declaration * dec, 
currentContext()->findLocalDeclarations(identifierForNode(node->identifier).first(),
 startPos(node->identifier)))
 {
-if (wasEncountered(dec) && !dec->isFunctionDeclaration() && 
dec->abstractType()->modifiers() & AbstractType::ConstModifier) {
+if (wasEncountered(dec) && !dec->isFunctionDeclaration() && 
dec->abstractType() && dec->abstractType()->modifiers() & 
AbstractType::ConstModifier) {
 reportRedeclarationError(dec, node->identifier);
 break;
 }
@@ -678,7 +678,7 @@
 // check for redeclarations
 foreach(Declaration * dec, 
currentContext()->findLocalDeclarations(identifierForNode(node->identifier).first(),
 startPos(node->identifier)))
 {
-if (wasEncountered(dec) && !dec->isFunctionDeclaration() && 
dec->abstractType()->modifiers() & AbstractType::ConstModifier) {
+if (wasEncountered(dec) && !dec->isFunctionDeclaration() && 
dec->abstractType() && dec->abstractType()->modifiers() & 
AbstractType::ConstModifier) {
 reportRedeclarationError(dec, node->identifier);
 break;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.5.1/org.kde.kdev-php.metainfo.xml 
new/kdev-php-5.5.2/org.kde.kdev-php.metainfo.xml
--- old/kdev-php-5.5.1/org.kde.kdev-php.metainfo.xml2020-05-05 
21:00:32.0 +0200
+++ new/kdev-php-5.5.2/org.kde.kdev-php.metainfo.xml2020-06-02 
15:22:34.0 +0200
@@ -82,6 +82,7 @@
 IDE
   
   
+
 
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit kdevelop5-plugin-php for openSUSE:Factory

2020-05-07 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2020-05-07 14:49:29

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.2738 (New)


Package is "kdevelop5-plugin-php"

Thu May  7 14:49:29 2020 rev:23 rq:800537 version:5.5.1

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2020-02-04 19:52:34.257294222 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.2738/kdevelop5-plugin-php.changes
  2020-05-07 14:49:35.793849958 +0200
@@ -1,0 +2,7 @@
+Tue May  5 20:54:09 UTC 2020 - wba...@tmo.at
+
+- Update to 5.5.1
+  * Fix a crash when showing the documentation popup
+  * Update phpfunctions.php to phpdoc revision 349647
+
+---

Old:

  kdev-php-5.5.0.tar.xz

New:

  kdev-php-5.5.1.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.KyqcnW/_old  2020-05-07 14:49:37.285852992 +0200
+++ /var/tmp/diff_new_pack.KyqcnW/_new  2020-05-07 14:49:37.289853001 +0200
@@ -18,7 +18,7 @@
 
 %define rname   kdev-php
 Name:   kdevelop5-plugin-php
-Version:5.5.0
+Version:5.5.1
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0-or-later

++ kdev-php-5.5.0.tar.xz -> kdev-php-5.5.1.tar.xz ++
 5600 lines of diff (skipped)




commit kdevelop5-plugin-php for openSUSE:Factory

2020-02-04 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2020-02-04 19:52:14

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.26092 (New)


Package is "kdevelop5-plugin-php"

Tue Feb  4 19:52:14 2020 rev:22 rq:769478 version:5.5.0

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2020-01-07 23:57:00.280145028 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.26092/kdevelop5-plugin-php.changes
 2020-02-04 19:52:34.257294222 +0100
@@ -1,0 +2,13 @@
+Mon Feb  3 06:48:08 UTC 2020 - wba...@tmo.at
+
+- Update to 5.5.0
+  * Fix uses of function call parameters after closures
+  * Add support for PHP 7.4's typed properties
+  * Support importing functions and constants from other namespaces
+(kde#408609)
+  * Fix rename of a variable (kde#317879)
+  * Add support for "array of type"
+  * Add support for class constant visibility
+  * I18n: update message to new default
+
+---

Old:

  kdev-php-5.4.6.tar.xz

New:

  kdev-php-5.5.0.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.fNbtcG/_old  2020-02-04 19:52:35.153294745 +0100
+++ /var/tmp/diff_new_pack.fNbtcG/_new  2020-02-04 19:52:35.157294747 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdevelop5-plugin-php
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # 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 rname   kdev-php
 Name:   kdevelop5-plugin-php
-Version:5.4.6
+Version:5.5.0
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0-or-later

++ kdev-php-5.4.6.tar.xz -> kdev-php-5.5.0.tar.xz ++
 10967 lines of diff (skipped)




commit kdevelop5-plugin-php for openSUSE:Factory

2020-01-07 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2020-01-07 23:55:50

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.6675 (New)


Package is "kdevelop5-plugin-php"

Tue Jan  7 23:55:50 2020 rev:21 rq:761629 version:5.4.6

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2019-12-03 12:43:38.154111909 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.6675/kdevelop5-plugin-php.changes
  2020-01-07 23:57:00.280145028 +0100
@@ -1,0 +2,6 @@
+Tue Jan  7 13:56:03 UTC 2020 - wba...@tmo.at
+
+- Update to 5.4.6
+  * Update phpfunctions.php to phpdoc revision 348802
+
+---

Old:

  kdev-php-5.4.5.tar.xz

New:

  kdev-php-5.4.6.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.f8pNP9/_old  2020-01-07 23:57:01.644145736 +0100
+++ /var/tmp/diff_new_pack.f8pNP9/_new  2020-01-07 23:57:01.648145739 +0100
@@ -18,7 +18,7 @@
 
 %define rname   kdev-php
 Name:   kdevelop5-plugin-php
-Version:5.4.5
+Version:5.4.6
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0-or-later

++ kdev-php-5.4.5.tar.xz -> kdev-php-5.4.6.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.4.5/CMakeLists.txt 
new/kdev-php-5.4.6/CMakeLists.txt
--- old/kdev-php-5.4.5/CMakeLists.txt   2019-12-02 15:52:05.0 +0100
+++ new/kdev-php-5.4.6/CMakeLists.txt   2020-01-06 22:20:39.0 +0100
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.0)
 cmake_policy(SET CMP0048 NEW)
-project(kdev-php VERSION "5.4.5")
+project(kdev-php VERSION "5.4.6")
 
 find_package(Threads)
 find_package (ECM "5.28.0" REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.4.5/phpfunctions.php 
new/kdev-php-5.4.6/phpfunctions.php
--- old/kdev-php-5.4.5/phpfunctions.php 2019-12-02 15:51:44.0 +0100
+++ new/kdev-php-5.4.6/phpfunctions.php 2020-01-06 22:20:14.0 +0100
@@ -17910,7 +17910,6 @@
  * module to another within the same request.
  *
  * @param string $note_name The name of the note.
- * @param string $note_value The value of the note.
  * @return string If called with one argument, it returns the current
  *   value of note note_name. If called with two arguments, it sets the
  *   value of note note_name to note_value and returns the previous value
@@ -17918,7 +17917,7 @@
  *   returned.
  * @since PHP 4, PHP 5, PHP 7
  **/
-function apache_note($note_name, $note_value){}
+function apache_note($note_name){}
 
 /**
  * Fetch all HTTP request headers
@@ -19734,7 +19733,15 @@
  *   error_reporting during assertion expression evaluation
  *   ASSERT_CALLBACK assert.callback (NULL) Callback to call on failed
  *   assertions
- * @param mixed $value An optional new value for the option.
+ * @param mixed $value An optional new value for the option. The
+ *   callback function set via ASSERT_CALLBACK or assert.callback should
+ *   have the following signature: voidassert_callback string{@link file}
+ *   int{@link line} string{@link assertion} string{@link description}
+ *   {@link file} The file where {@link assert} has been called. {@link
+ *   line} The line where {@link assert} has been called. {@link
+ *   assertion} The assertion that has been passed to {@link assert},
+ *   converted to a string. {@link description} The description that has
+ *   been passed to {@link assert}.
  * @return mixed Returns the original setting of any option or FALSE on
  *   errors.
  * @since PHP 4, PHP 5, PHP 7
@@ -27288,18 +27295,18 @@
  *   Example: 654 Timezone --- --- e Timezone identifier (added in PHP
  *   5.1.0) Examples: UTC, GMT, Atlantic/Azores I (capital i) Whether or
  *   not the date is in daylight saving time 1 if Daylight Saving Time, 0
- *   otherwise. O Difference to Greenwich time (GMT) in hours Example:
- *   +0200 P Difference to Greenwich time (GMT) with colon between hours
- *   and minutes (added in PHP 5.1.3) Example: +02:00 T Timezone
- *   abbreviation Examples: EST, MDT ... Z Timezone offset in seconds.
- *   The offset for timezones west of UTC is always negative, and for
- *   those east of UTC is always positive. -43200 through 50400 Full
- *   Date/Time --- --- c ISO 8601 date (added in PHP 5)
- *   2004-02-12T15:19:21+00:00 r RFC 2822 formatted date Example: Thu, 21
- *   Dec 2000 16:01:07 +0200 U Seconds since the Unix Epoch (January 1
- *   

commit kdevelop5-plugin-php for openSUSE:Factory

2019-12-03 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2019-12-03 12:43:11

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.4691 (New)


Package is "kdevelop5-plugin-php"

Tue Dec  3 12:43:11 2019 rev:20 rq:753116 version:5.4.5

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2019-11-06 14:06:33.752814705 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.4691/kdevelop5-plugin-php.changes
  2019-12-03 12:43:38.154111909 +0100
@@ -1,0 +2,6 @@
+Mon Dec  2 17:33:24 UTC 2019 - wba...@tmo.at
+
+- Update to 5.4.5
+  * Update phpfunctions.php to phpdoc revision 34827
+
+---

Old:

  kdev-php-5.4.4.tar.xz

New:

  kdev-php-5.4.5.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.oSafXi/_old  2019-12-03 12:43:38.930111694 +0100
+++ /var/tmp/diff_new_pack.oSafXi/_new  2019-12-03 12:43:38.930111694 +0100
@@ -18,7 +18,7 @@
 
 %define rname   kdev-php
 Name:   kdevelop5-plugin-php
-Version:5.4.4
+Version:5.4.5
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0-or-later

++ kdev-php-5.4.4.tar.xz -> kdev-php-5.4.5.tar.xz ++
 2132 lines of diff (skipped)




commit kdevelop5-plugin-php for openSUSE:Factory

2019-11-06 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2019-11-06 14:06:31

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.2990 (New)


Package is "kdevelop5-plugin-php"

Wed Nov  6 14:06:31 2019 rev:19 rq:745437 version:5.4.4

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2019-10-23 15:50:59.218703468 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.2990/kdevelop5-plugin-php.changes
  2019-11-06 14:06:33.752814705 +0100
@@ -1,0 +2,6 @@
+Tue Nov  5 10:12:33 UTC 2019 - wba...@tmo.at
+
+- Update to 5.4.4
+  * no code changes
+
+---

Old:

  kdev-php-5.4.3.tar.xz

New:

  kdev-php-5.4.4.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.IvrmAl/_old  2019-11-06 14:06:34.376815359 +0100
+++ /var/tmp/diff_new_pack.IvrmAl/_new  2019-11-06 14:06:34.380815362 +0100
@@ -18,7 +18,7 @@
 
 %define rname   kdev-php
 Name:   kdevelop5-plugin-php
-Version:5.4.3
+Version:5.4.4
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0-or-later

++ kdev-php-5.4.3.tar.xz -> kdev-php-5.4.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.4.3/CMakeLists.txt 
new/kdev-php-5.4.4/CMakeLists.txt
--- old/kdev-php-5.4.3/CMakeLists.txt   2019-10-21 18:22:19.0 +0200
+++ new/kdev-php-5.4.4/CMakeLists.txt   2019-11-04 17:15:01.0 +0100
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.0)
 cmake_policy(SET CMP0048 NEW)
-project(kdev-php VERSION "5.4.3")
+project(kdev-php VERSION "5.4.4")
 
 find_package(Threads)
 find_package (ECM "5.28.0" REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdev-php-5.4.3/app_templates/simple_phpapp/simple_phpapp.kdevtemplate 
new/kdev-php-5.4.4/app_templates/simple_phpapp/simple_phpapp.kdevtemplate
--- old/kdev-php-5.4.3/app_templates/simple_phpapp/simple_phpapp.kdevtemplate   
2019-10-21 18:22:00.0 +0200
+++ new/kdev-php-5.4.4/app_templates/simple_phpapp/simple_phpapp.kdevtemplate   
2019-11-04 17:14:39.0 +0100
@@ -16,7 +16,7 @@
 Name[fi]=Yksinkertainen PHP-sovellus
 Name[fr]=Application simple PHP
 Name[ga]=Feidhmchlár Simplí PHP
-Name[gl]=Aplicativo simple en PHP
+Name[gl]=Aplicación simple en PHP
 Name[hu]=Egyszerű PHP alkalmazás
 Name[it]=Semplice applicazione in PHP
 Name[ja]=簡単な PHP アプリケーション
@@ -57,7 +57,7 @@
 Comment[fi]=Generoi PHP-sovelluksen käynnistämiseen tarvittavan 
tiedostorakenteen
 Comment[fr]=Générer une structure de fichiers pour lancer une application PHP
 Comment[ga]=Cruthaigh struchtúr comhad chun feidhmchlár PHP a thosú
-Comment[gl]=Xera a estrutura de ficheiros para comezar un aplicativo en PHP
+Comment[gl]=Xera a estrutura de ficheiros para comezar unha aplicación en PHP
 Comment[hu]=Fájlstruktúrát hoz létre egy PHP alkalmazás elkezdéséhez
 Comment[it]=Genera una struttura di file per inizializzare un'applicazione in 
PHP
 Comment[ja]=PHP アプリケーションを始めるためのファイル構造を生成
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.4.3/po/cs/kdevphp.po 
new/kdev-php-5.4.4/po/cs/kdevphp.po
--- old/kdev-php-5.4.3/po/cs/kdevphp.po 2019-10-21 18:22:09.0 +0200
+++ new/kdev-php-5.4.4/po/cs/kdevphp.po 2019-11-04 17:14:49.0 +0100
@@ -1,6 +1,6 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Vít Pelčák , 2010, 2011, 2012, 2014, 2016, 2017, 2018.
+# Vít Pelčák , 2010, 2011, 2012, 2014, 2016, 2017, 2018, 2019.
 #
 msgid ""
 msgstr ""
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 19.08.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.4.3/po/gl/kdevphp.po 
new/kdev-php-5.4.4/po/gl/kdevphp.po
--- old/kdev-php-5.4.3/po/gl/kdevphp.po 2019-10-21 18:22:11.0 +0200
+++ new/kdev-php-5.4.4/po/gl/kdevphp.po 2019-11-04 17:14:52.0 +0100
@@ -14,7 +14,7 @@
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-08-30 07:39+0200\n"
-"PO-Revision-Date: 2019-03-02 22:00+0100\n"
+"PO-Revision-Date: 

commit kdevelop5-plugin-php for openSUSE:Factory

2019-10-23 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2019-10-23 15:50:48

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.2352 (New)


Package is "kdevelop5-plugin-php"

Wed Oct 23 15:50:48 2019 rev:18 rq:741847 version:5.4.3

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2019-09-05 12:35:18.835561617 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.2352/kdevelop5-plugin-php.changes
  2019-10-23 15:50:59.218703468 +0200
@@ -1,0 +2,7 @@
+Tue Oct 22 10:55:15 UTC 2019 - wba...@tmo.at
+
+- Update to 5.4.3
+  * Fix expressions using array constants (kde#405719)
+  * Don't mark class constants as normal members
+
+---

Old:

  kdev-php-5.4.2.tar.xz

New:

  kdev-php-5.4.3.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.p9yn9g/_old  2019-10-23 15:51:00.206704536 +0200
+++ /var/tmp/diff_new_pack.p9yn9g/_new  2019-10-23 15:51:00.210704540 +0200
@@ -18,7 +18,7 @@
 
 %define rname   kdev-php
 Name:   kdevelop5-plugin-php
-Version:5.4.2
+Version:5.4.3
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0-or-later

++ kdev-php-5.4.2.tar.xz -> kdev-php-5.4.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.4.2/CMakeLists.txt 
new/kdev-php-5.4.3/CMakeLists.txt
--- old/kdev-php-5.4.2/CMakeLists.txt   2019-09-02 21:50:33.0 +0200
+++ new/kdev-php-5.4.3/CMakeLists.txt   2019-10-21 18:22:19.0 +0200
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.0)
 cmake_policy(SET CMP0048 NEW)
-project(kdev-php VERSION "5.4.2")
+project(kdev-php VERSION "5.4.3")
 
 find_package(Threads)
 find_package (ECM "5.28.0" REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.4.2/duchain/builders/typebuilder.cpp 
new/kdev-php-5.4.3/duchain/builders/typebuilder.cpp
--- old/kdev-php-5.4.2/duchain/builders/typebuilder.cpp 2019-09-02 
21:49:53.0 +0200
+++ new/kdev-php-5.4.3/duchain/builders/typebuilder.cpp 2019-10-21 
18:22:00.0 +0200
@@ -319,6 +319,9 @@
 }
 closeContextType();
 closeType();
+} else if (node->constsSequence) {
+//class constant
+TypeBuilderBase::visitClassStatement(node);
 } else {
 //member-variable
 parseDocComment(node, QStringLiteral("var"));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.4.2/duchain/tests/duchain.cpp 
new/kdev-php-5.4.3/duchain/tests/duchain.cpp
--- old/kdev-php-5.4.2/duchain/tests/duchain.cpp2019-09-02 
21:49:53.0 +0200
+++ new/kdev-php-5.4.3/duchain/tests/duchain.cpp2019-10-21 
18:22:00.0 +0200
@@ -1673,6 +1673,29 @@
 
QCOMPARE(top->findDeclarations(QualifiedIdentifier("a::C")).first()->context(), 
top->childContexts().last());
 }
 
+void TestDUChain::classConstWithTypeHint()
+{
+// 0 1 2 3 4 5 
6 7
+// 
01234567890123456789012345678901234567890123456789012345678901234567890123456789
+QByteArray method("childContexts().count(), 1);
+QCOMPARE(top->problems().count(), 0);
+
+QList< Declaration* > decs = 
top->findDeclarations(QualifiedIdentifier("a::C"));
+QCOMPARE(decs.count(), 1);
+QCOMPARE(decs.first()->context(), top->childContexts().last());
+
+IntegralType::Ptr type = decs.first()->abstractType().cast();
+QVERIFY(type);
+QCOMPARE(type->dataType(), IntegralType::TypeInt);
+QVERIFY(type->modifiers() & AbstractType::ConstModifier);
+}
+
 void TestDUChain::semiReservedClassConst()
 {
 // 0 1 2 3 4 5 
6 7
@@ -3978,6 +4001,29 @@
 {
 QFETCH(QString, code);
 
+TopDUContext* top = parse(code.toUtf8(), DumpNone);
+QVERIFY(top);
+DUChainReleaser releaseTop(top);
+DUChainWriteLocker lock(DUChain::lock());
+
+QVERIFY(top->problems().isEmpty());
+}
+
+void TestDUChain::simpleExpression_data()
+{
+QTest::addColumn("code");
+
+QTest::newRow("string concat") << QStringLiteral("Підтримка PHP KDevelop
   xxKDevelop PHP Supportxx
   KDevelop PHP 支持
+  KDevelop PHP 支援
   PHP language support for KDevelop
   Implementació del llenguatge PHP al KDevelop
   Implementació del llenguatge PHP al 
KDevelop
@@ 

commit kdevelop5-plugin-php for openSUSE:Factory

2019-09-05 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2019-09-05 12:35:16

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.7948 (New)


Package is "kdevelop5-plugin-php"

Thu Sep  5 12:35:16 2019 rev:17 rq:728066 version:5.4.2

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2019-08-13 13:27:58.965312308 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.7948/kdevelop5-plugin-php.changes
  2019-09-05 12:35:18.835561617 +0200
@@ -1,0 +2,6 @@
+Tue Sep  3 12:10:44 UTC 2019 - wba...@tmo.at
+
+- Update to 5.4.2
+  * no code changes  
+
+---

Old:

  kdev-php-5.4.1.tar.xz

New:

  kdev-php-5.4.2.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.vc0KyR/_old  2019-09-05 12:35:19.531561481 +0200
+++ /var/tmp/diff_new_pack.vc0KyR/_new  2019-09-05 12:35:19.535561480 +0200
@@ -18,7 +18,7 @@
 
 %define rname   kdev-php
 Name:   kdevelop5-plugin-php
-Version:5.4.1
+Version:5.4.2
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0-or-later

++ kdev-php-5.4.1.tar.xz -> kdev-php-5.4.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.4.1/CMakeLists.txt 
new/kdev-php-5.4.2/CMakeLists.txt
--- old/kdev-php-5.4.1/CMakeLists.txt   2019-08-12 22:51:31.0 +0200
+++ new/kdev-php-5.4.2/CMakeLists.txt   2019-09-02 21:50:33.0 +0200
@@ -1,16 +1,17 @@
 cmake_minimum_required(VERSION 3.0)
 cmake_policy(SET CMP0048 NEW)
-project(kdev-php VERSION "5.4.1")
+project(kdev-php VERSION "5.4.2")
 
 find_package(Threads)
 find_package (ECM "5.28.0" REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH})
 
+include(KDEInstallDirs)
+include(KDECMakeSettings)
 include(KDECompilerSettings NO_POLICY_SCOPE)
+
 include(ECMAddTests)
 include(ECMQtDeclareLoggingCategory)
-include(KDEInstallDirs)
-include(KDECMakeSettings)
 include(GenerateExportHeader)
 include(CMakePackageConfigHelpers)
 include(ECMSetupVersion)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.4.1/po/ast/kdevphp.po 
new/kdev-php-5.4.2/po/ast/kdevphp.po
--- old/kdev-php-5.4.1/po/ast/kdevphp.po2019-08-12 22:51:11.0 
+0200
+++ new/kdev-php-5.4.2/po/ast/kdevphp.po2019-09-02 21:50:08.0 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
-"POT-Creation-Date: 2019-05-20 07:35+0200\n"
+"POT-Creation-Date: 2019-08-30 07:39+0200\n"
 "PO-Revision-Date: 2015-04-06 02:27+0100\n"
 "Last-Translator: enolp \n"
 "Language-Team: Asturian \n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.4.1/po/bs/kdevphp.po 
new/kdev-php-5.4.2/po/bs/kdevphp.po
--- old/kdev-php-5.4.1/po/bs/kdevphp.po 2019-08-12 22:51:12.0 +0200
+++ new/kdev-php-5.4.2/po/bs/kdevphp.po 2019-09-02 21:50:10.0 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp.po\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
-"POT-Creation-Date: 2019-05-20 07:35+0200\n"
+"POT-Creation-Date: 2019-08-30 07:39+0200\n"
 "PO-Revision-Date: 2014-10-20 19:48+\n"
 "Last-Translator: Samir Ribić \n"
 "Language-Team: bs \n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.4.1/po/ca/kdevphp.po 
new/kdev-php-5.4.2/po/ca/kdevphp.po
--- old/kdev-php-5.4.1/po/ca/kdevphp.po 2019-08-12 22:51:12.0 +0200
+++ new/kdev-php-5.4.2/po/ca/kdevphp.po 2019-09-02 21:50:10.0 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
-"POT-Creation-Date: 2019-05-20 07:35+0200\n"
+"POT-Creation-Date: 2019-08-30 07:39+0200\n"
 "PO-Revision-Date: 2018-08-19 09:43+0100\n"
 "Last-Translator: Antoni Bella Pérez \n"
 "Language-Team: Catalan \n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.4.1/po/ca@valencia/kdevphp.po 
new/kdev-php-5.4.2/po/ca@valencia/kdevphp.po
--- old/kdev-php-5.4.1/po/ca@valencia/kdevphp.po2019-08-12 
22:51:12.0 +0200
+++ new/kdev-php-5.4.2/po/ca@valencia/kdevphp.po2019-09-02 
21:50:10.0 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
-"POT-Creation-Date: 2019-05-20 07:35+0200\n"

commit kdevelop5-plugin-php for openSUSE:Factory

2019-08-13 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2019-08-13 13:27:57

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.9556 (New)


Package is "kdevelop5-plugin-php"

Tue Aug 13 13:27:57 2019 rev:16 rq:723022 version:5.4.1

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2019-08-08 14:23:25.740348839 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.9556/kdevelop5-plugin-php.changes
  2019-08-13 13:27:58.965312308 +0200
@@ -1,0 +2,7 @@
+Tue Aug 13 08:12:48 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.4.1
+  * Update phpfunctions.php to phpdoc revision 347831
+  * Switch few http URLs to https.
+
+---

Old:

  kdev-php-5.4.0.tar.xz

New:

  kdev-php-5.4.1.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.5zPO14/_old  2019-08-13 13:27:59.737312104 +0200
+++ /var/tmp/diff_new_pack.5zPO14/_new  2019-08-13 13:27:59.741312103 +0200
@@ -17,9 +17,8 @@
 
 
 %define rname   kdev-php
-%define rversion 5.4
 Name:   kdevelop5-plugin-php
-Version:5.4.0
+Version:5.4.1
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0-or-later

++ kdev-php-5.4.0.tar.xz -> kdev-php-5.4.1.tar.xz ++
 4345 lines of diff (skipped)




commit kdevelop5-plugin-php for openSUSE:Factory

2019-08-08 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2019-08-08 14:23:23

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.9556 (New)


Package is "kdevelop5-plugin-php"

Thu Aug  8 14:23:23 2019 rev:15 rq:721506 version:5.4.0

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2019-07-26 17:35:05.864070230 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.9556/kdevelop5-plugin-php.changes
  2019-08-08 14:23:25.740348839 +0200
@@ -1,0 +2,9 @@
+Tue Aug  6 11:46:35 UTC 2019 - wba...@tmo.at
+
+- New upstream release 5.4.0
+  * Always set maximum file size for internal parse job
+  * Bypass the 5 MB maximum file size limit for the
+phpfunctions.php internal file
+  * Fix linking with ld.lld
+
+---

Old:

  kdev-php-5.3.3.tar.xz

New:

  kdev-php-5.4.0.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.8LhZVW/_old  2019-08-08 14:23:26.228348764 +0200
+++ /var/tmp/diff_new_pack.8LhZVW/_new  2019-08-08 14:23:26.232348764 +0200
@@ -16,18 +16,16 @@
 #
 
 
-# for compatibility with Leap 42.3 which doesn't have this macro yet
-%{!?_kf5_debugdir: %global _kf5_debugdir %{_kf5_configdir}}
 %define rname   kdev-php
-%define rversion 5.3
+%define rversion 5.4
 Name:   kdevelop5-plugin-php
-Version:5.3.3
+Version:5.4.0
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0-or-later
 Group:  Development/Tools/IDE
-URL:http://www.kdevelop.org
-Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/%{rname}-%{version}.tar.xz
+URL:https://www.kdevelop.org
+Source0:
https://download.kde.org/stable/kdevelop/%{version}/src/%{rname}-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules
 BuildRequires:  kcmutils-devel
 BuildRequires:  kdevelop5-pg-qt

++ kdev-php-5.3.3.tar.xz -> kdev-php-5.4.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.3.3/.gitignore 
new/kdev-php-5.4.0/.gitignore
--- old/kdev-php-5.3.3/.gitignore   2019-07-18 00:43:05.380434952 +0200
+++ new/kdev-php-5.4.0/.gitignore   2019-08-06 00:59:02.0 +0200
@@ -1,6 +1,7 @@
 apidocs
 .kdev4
 *~
+*.orig
 doxygen.log
 build
 .*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.3.3/CMakeLists.txt 
new/kdev-php-5.4.0/CMakeLists.txt
--- old/kdev-php-5.3.3/CMakeLists.txt   2019-07-18 00:43:26.428468987 +0200
+++ new/kdev-php-5.4.0/CMakeLists.txt   2019-08-06 00:59:27.0 +0200
@@ -1,12 +1,9 @@
 cmake_minimum_required(VERSION 3.0)
 cmake_policy(SET CMP0048 NEW)
+project(kdev-php VERSION "5.4.0")
 
-set(KDEVPHP_VERSION_MAJOR 5)
-set(KDEVPHP_VERSION_MINOR 3)
-set(KDEVPHP_VERSION_PATCH 3)
-project(kdev-php VERSION 
"${KDEVPHP_VERSION_MAJOR}.${KDEVPHP_VERSION_MINOR}.${KDEVPHP_VERSION_PATCH}")
-
-find_package (ECM "5.14.0" REQUIRED NO_MODULE)
+find_package(Threads)
+find_package (ECM "5.28.0" REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH})
 
 include(KDECompilerSettings NO_POLICY_SCOPE)
@@ -19,9 +16,9 @@
 include(ECMSetupVersion)
 include(FeatureSummary)
 
-set(QT_MIN_VERSION "5.5.0")
+set(QT_MIN_VERSION "5.7.0")
 find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED Core Widgets)
-set(KF5_DEP_VERSION "5.15.0")
+set(KF5_DEP_VERSION "5.28.0")
 find_package(KF5 ${KF5_DEP_VERSION} REQUIRED COMPONENTS
 ThreadWeaver
 TextEditor
@@ -32,7 +29,7 @@
   find_package(Qt5Test ${QT_MIN_VERSION} CONFIG REQUIRED)
 endif()
 # KDevplatform dependency version
-set(KDEVPLATFORM_VERSION "${KDEVPHP_VERSION_MAJOR}.${KDEVPHP_VERSION_MINOR}")
+set(KDEVPLATFORM_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}")
 find_package(KDevPlatform ${KDEVPLATFORM_VERSION} CONFIG REQUIRED)
 
 ecm_setup_version(
@@ -90,6 +87,8 @@
 
 KF5::I18n
 KF5::TextEditor
+
+Threads::Threads
 )
 
 # not writeable so that the refactoring actions get hidden
@@ -98,10 +97,17 @@
 install(FILES org.kde.kdev-php.metainfo.xml DESTINATION 
${KDE_INSTALL_METAINFODIR})
 
 # kdebugsettings file
+# kdebugsettings >= 18.12 supports/pushes for some newer, not 
backward-compatible format.
+# For ECM >= 5.59 we install categories files to new location, which is only 
supported by
+# newer kdebugsettings also supporting the new content format, so we use that 
as base.
 if (ECM_VERSION VERSION_GREATER "5.58.0")
-install(FILES 

commit kdevelop5-plugin-php for openSUSE:Factory

2019-07-26 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2019-07-26 17:35:05

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.4126 (New)


Package is "kdevelop5-plugin-php"

Fri Jul 26 17:35:05 2019 rev:14 rq:718895 version:5.3.3

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2019-03-10 09:39:23.000118654 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.4126/kdevelop5-plugin-php.changes
  2019-07-26 17:35:05.864070230 +0200
@@ -1,0 +2,22 @@
+Thu Jul 18 08:05:55 UTC 2019 - wba...@tmo.at
+
+- New upstream release 5.3.3
+  * Use KDE_INSTALL_LOGGINGCATEGORIESDIR for kdebugsettings
+.categories file
+  * Update phpfunctions.php to phpdoc revision 347011
+  * Parse more function aliases
+  * More special handling for mcrypt constants
+  * Parse more class constants
+  * Parse more constants
+  * Parse constants under para
+  * Parse more constants within tables
+  * Parse url stat constants
+  * Parse php token constants
+  * Parse file upload constants
+  * Parse constants under tables
+  * Parse constants under section and within tables
+  * Parse nl-langinfo constants
+  * Parse constants split over multiple lists within one file
+  * Fix function declarations with varargs
+
+---

Old:

  kdev-php-5.3.2.tar.xz

New:

  kdev-php-5.3.3.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.veQLMi/_old  2019-07-26 17:35:06.384070050 +0200
+++ /var/tmp/diff_new_pack.veQLMi/_new  2019-07-26 17:35:06.384070050 +0200
@@ -21,7 +21,7 @@
 %define rname   kdev-php
 %define rversion 5.3
 Name:   kdevelop5-plugin-php
-Version:5.3.2
+Version:5.3.3
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0-or-later

++ kdev-php-5.3.2.tar.xz -> kdev-php-5.3.3.tar.xz ++
 16142 lines of diff (skipped)




commit kdevelop5-plugin-php for openSUSE:Factory

2019-03-10 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2019-03-10 09:39:17

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.28833 (New)


Package is "kdevelop5-plugin-php"

Sun Mar 10 09:39:17 2019 rev:13 rq:682722 version:5.3.2

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2019-01-15 09:15:45.470269969 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.28833/kdevelop5-plugin-php.changes
 2019-03-10 09:39:23.000118654 +0100
@@ -1,0 +2,6 @@
+Thu Mar  7 11:42:16 UTC 2019 - wba...@tmo.at
+
+- New upstream release 5.3.2
+  * no code changes
+
+---

Old:

  kdev-php-5.3.1.tar.xz

New:

  kdev-php-5.3.2.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.dhItQ9/_old  2019-03-10 09:39:23.676118492 +0100
+++ /var/tmp/diff_new_pack.dhItQ9/_new  2019-03-10 09:39:23.680118491 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdevelop5-plugin-php
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -21,7 +21,7 @@
 %define rname   kdev-php
 %define rversion 5.3
 Name:   kdevelop5-plugin-php
-Version:5.3.1
+Version:5.3.2
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0-or-later

++ kdev-php-5.3.1.tar.xz -> kdev-php-5.3.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.3.1/CMakeLists.txt 
new/kdev-php-5.3.2/CMakeLists.txt
--- old/kdev-php-5.3.1/CMakeLists.txt   2018-12-06 10:53:12.0 +0100
+++ new/kdev-php-5.3.2/CMakeLists.txt   2019-03-07 08:07:33.0 +0100
@@ -3,7 +3,7 @@
 
 set(KDEVPHP_VERSION_MAJOR 5)
 set(KDEVPHP_VERSION_MINOR 3)
-set(KDEVPHP_VERSION_PATCH 1)
+set(KDEVPHP_VERSION_PATCH 2)
 project(kdev-php VERSION 
"${KDEVPHP_VERSION_MAJOR}.${KDEVPHP_VERSION_MINOR}.${KDEVPHP_VERSION_PATCH}")
 
 find_package (ECM "5.14.0" REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.3.1/kdevphpsupport.json 
new/kdev-php-5.3.2/kdevphpsupport.json
--- old/kdev-php-5.3.1/kdevphpsupport.json  2018-12-06 10:52:47.0 
+0100
+++ new/kdev-php-5.3.2/kdevphpsupport.json  2019-03-07 08:07:22.0 
+0100
@@ -24,7 +24,7 @@
 "Description[tr]": "PHP Dili Desteği",
 "Description[uk]": "Підтримка мови PHP",
 "Description[x-test]": "xxPHP Language Supportxx",
-"Description[zh_CN]": "PHP 语言支持",
+"Description[zh_CN]": "Php 语言支持",
 "Description[zh_TW]": "PHP 語言支援",
 "Icon": "application-x-php",
 "Id": "KDevPhpSupport",
@@ -51,7 +51,7 @@
 "Name[tr]": "PHP Dili Desteği",
 "Name[uk]": "Підтримка мови PHP",
 "Name[x-test]": "xxPHP Language Supportxx",
-"Name[zh_CN]": "Php 语言支持",
+"Name[zh_CN]": "PHP 语言支持",
 "Name[zh_TW]": "PHP 語言支援",
 "ServiceTypes": [
 "KDevelop/Plugin"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.3.1/po/gl/kdevphp.po 
new/kdev-php-5.3.2/po/gl/kdevphp.po
--- old/kdev-php-5.3.1/po/gl/kdevphp.po 2018-12-06 10:53:01.0 +0100
+++ new/kdev-php-5.3.2/po/gl/kdevphp.po 2019-03-07 08:07:29.0 +0100
@@ -8,20 +8,20 @@
 # Marce Villarino , 2009, 2013, 2014.
 # Xosé , 2012, 2013.
 # Adrián Chaves Fernández , 2015.
-# Adrian Chaves , 2018.
+# Adrian Chaves , 2018, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-08-26 06:19+0200\n"
-"PO-Revision-Date: 2018-10-21 16:34+0100\n"
+"PO-Revision-Date: 2019-03-02 22:00+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 18.12.2\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 

commit kdevelop5-plugin-php for openSUSE:Factory

2019-01-15 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2019-01-15 09:15:41

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.28833 (New)


Package is "kdevelop5-plugin-php"

Tue Jan 15 09:15:41 2019 rev:12 rq:660854 version:5.3.1

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2018-11-26 10:22:33.313574133 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.28833/kdevelop5-plugin-php.changes
 2019-01-15 09:15:45.470269969 +0100
@@ -1,0 +2,9 @@
+Sat Dec 22 19:18:24 UTC 2018 - wba...@tmo.at
+
+- New upstream release 5.3.1
+  * Fix handling of array indexes after ClassNameReferences
+(kde#401278)
+  * Fix syntax support for dynamic member access (kde#400294)
+- Run spec-cleaner
+
+---

Old:

  kdev-php-5.3.0.tar.xz

New:

  kdev-php-5.3.1.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.fgSDqd/_old  2019-01-15 09:15:46.374269129 +0100
+++ /var/tmp/diff_new_pack.fgSDqd/_new  2019-01-15 09:15:46.378269125 +0100
@@ -18,16 +18,15 @@
 
 # for compatibility with Leap 42.3 which doesn't have this macro yet
 %{!?_kf5_debugdir: %global _kf5_debugdir %{_kf5_configdir}}
-
 %define rname   kdev-php
 %define rversion 5.3
 Name:   kdevelop5-plugin-php
-Version:5.3.0
+Version:5.3.1
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  Development/Tools/IDE
-Url:http://www.kdevelop.org
+URL:http://www.kdevelop.org
 Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/%{rname}-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules
 BuildRequires:  kcmutils-devel
@@ -41,10 +40,9 @@
 BuildRequires:  pkgconfig(Qt5Core)
 BuildRequires:  pkgconfig(Qt5Test)
 BuildRequires:  pkgconfig(Qt5Widgets)
-Conflicts:  kdevelop4-plugin-php
 Requires:   kdevelop5
 Recommends: %{name}-lang
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Conflicts:  kdevelop4-plugin-php
 
 %description
 PHP plugin for Kdevelop Integrated Development Environment
@@ -72,12 +70,12 @@
 Summary:Translations for package %{name}
 Group:  System/Localization
 Requires:   %{name} = %{version}
-Provides:   %{name}-lang-all = %{version}
 Supplements:packageand(bundle-lang-other:%{name})
-BuildArch:  noarch
 # Language file conflicts
-Conflicts:  kdevelop4-plugins-php-doc
 Conflicts:  kdevelop4-plugins-php
+Conflicts:  kdevelop4-plugins-php-doc
+Provides:   %{name}-lang-all = %{version}
+BuildArch:  noarch
 
 %description lang
 Provides translations to the package %{name}
@@ -97,7 +95,6 @@
 %postun -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root)
 %license COPYING
 %doc AUTHORS HACKING TODO
 %{_kf5_appstreamdir}/org.kde.kdev-php.metainfo.xml
@@ -113,6 +110,5 @@
 %{_kf5_cmakedir}/KDevPHP/
 
 %files lang -f %{name}.lang
-%defattr(-,root,root)
 
 %changelog

++ kdev-php-5.3.0.tar.xz -> kdev-php-5.3.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.3.0/CMakeLists.txt 
new/kdev-php-5.3.1/CMakeLists.txt
--- old/kdev-php-5.3.0/CMakeLists.txt   2018-10-25 10:31:46.0 +0200
+++ new/kdev-php-5.3.1/CMakeLists.txt   2018-12-06 10:53:12.0 +0100
@@ -3,7 +3,7 @@
 
 set(KDEVPHP_VERSION_MAJOR 5)
 set(KDEVPHP_VERSION_MINOR 3)
-set(KDEVPHP_VERSION_PATCH 0)
+set(KDEVPHP_VERSION_PATCH 1)
 project(kdev-php VERSION 
"${KDEVPHP_VERSION_MAJOR}.${KDEVPHP_VERSION_MINOR}.${KDEVPHP_VERSION_PATCH}")
 
 find_package (ECM "5.14.0" REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.3.0/docs/kcm_kdevphpdocs.desktop.cmake 
new/kdev-php-5.3.1/docs/kcm_kdevphpdocs.desktop.cmake
--- old/kdev-php-5.3.0/docs/kcm_kdevphpdocs.desktop.cmake   2018-10-25 
10:31:25.0 +0200
+++ new/kdev-php-5.3.1/docs/kcm_kdevphpdocs.desktop.cmake   2018-12-06 
10:52:47.0 +0100
@@ -37,3 +37,4 @@
 Name[uk]=Документація з PHP
 Name[x-test]=xxPHP Documentationxx
 Name[zh_CN]=PHP 文档
+Name[zh_TW]=PHP 文件
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.3.0/docs/kdevphpdocs.json 
new/kdev-php-5.3.1/docs/kdevphpdocs.json
--- old/kdev-php-5.3.0/docs/kdevphpdocs.json2018-10-25 10:31:25.0 
+0200
+++ new/kdev-php-5.3.1/docs/kdevphpdocs.json2018-12-06 10:52:47.0 

commit kdevelop5-plugin-php for openSUSE:Factory

2018-11-26 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2018-11-26 10:21:24

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.19453 (New)


Package is "kdevelop5-plugin-php"

Mon Nov 26 10:21:24 2018 rev:11 rq:648964 version:5.3.0

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2018-08-22 14:21:14.914478933 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.19453/kdevelop5-plugin-php.changes
 2018-11-26 10:22:33.313574133 +0100
@@ -1,0 +2,21 @@
+Wed Nov 14 10:28:06 UTC 2018 - wba...@tmo.at
+
+- New upstream release 5.3.0
+  * Much improved support for PHP Namespaces
+  * Added support for Generators and Generator delegation
+  * Updated and expanded the integrated documentation of PHP
+internals
+  * Added support for PHP 7's context sensitive lexer
+  * Install the parser as a library so it can be used by other
+projects (currently, umbrello can use it)
+  * Improved type detection of object properties
+  * Added support for the object typehint
+  * Better support for ClassNameReferences (instanceof)
+  * Expression syntax support improvements, particularly around
+'print'
+  * Allow optional function parameters before non-optional ones
+  * Added support for magic constants __DIR__ and __TRAIT__
+- Add devel subpackage
+- Remove unnecessary build requirements
+
+---

Old:

  kdev-php-5.2.4.tar.xz

New:

  kdev-php-5.3.0.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.EG3svq/_old  2018-11-26 10:22:33.669573714 +0100
+++ /var/tmp/diff_new_pack.EG3svq/_new  2018-11-26 10:22:33.669573714 +0100
@@ -20,9 +20,9 @@
 %{!?_kf5_debugdir: %global _kf5_debugdir %{_kf5_configdir}}
 
 %define rname   kdev-php
-%define rversion 5.2
+%define rversion 5.3
 Name:   kdevelop5-plugin-php
-Version:5.2.4
+Version:5.3.0
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0+
@@ -30,28 +30,16 @@
 Url:http://www.kdevelop.org
 Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/%{rname}-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules
-BuildRequires:  grantlee5-devel
-BuildRequires:  karchive-devel
 BuildRequires:  kcmutils-devel
 BuildRequires:  kdevelop5-pg-qt
 BuildRequires:  kdevplatform-devel
 BuildRequires:  kf5-filesystem
-BuildRequires:  kguiaddons-devel
 BuildRequires:  ki18n-devel
-BuildRequires:  kiconthemes-devel
-BuildRequires:  kitemmodels-devel
-BuildRequires:  knewstuff-devel
-BuildRequires:  knotifications-devel
-BuildRequires:  knotifyconfig-devel
 BuildRequires:  ktexteditor-devel
-BuildRequires:  kwindowsystem-devel
 BuildRequires:  pkgconfig
 BuildRequires:  threadweaver-devel
-BuildRequires:  pkgconfig(Qt5Concurrent)
 BuildRequires:  pkgconfig(Qt5Core)
-BuildRequires:  pkgconfig(Qt5Quick)
 BuildRequires:  pkgconfig(Qt5Test)
-BuildRequires:  pkgconfig(Qt5WebKitWidgets)
 BuildRequires:  pkgconfig(Qt5Widgets)
 Conflicts:  kdevelop4-plugin-php
 Requires:   kdevelop5
@@ -71,6 +59,15 @@
   * hints in the argument list of function- and method class
   * sane code completion after keywords such as extends, implements, catch(), 
new, throw and some more
 
+%package devel
+Summary:Development package for kdevelop5-plugin-php
+Group:  Development/Tools/IDE
+Requires:   kdevelop5-plugin-php = %{version}
+
+%description devel
+This package contains the development files needed in order to use the
+kdevelop5-plugin-php API.
+
 %package lang
 Summary:Translations for package %{name}
 Group:  System/Localization
@@ -110,6 +107,11 @@
 %{_kf5_servicesdir}/
 %{_kf5_sharedir}/kdev*/
 
+%files devel
+%license COPYING
+%{_includedir}/kdev-php/
+%{_kf5_cmakedir}/KDevPHP/
+
 %files lang -f %{name}.lang
 %defattr(-,root,root)
 

++ kdev-php-5.2.4.tar.xz -> kdev-php-5.3.0.tar.xz ++
 225412 lines of diff (skipped)




commit kdevelop5-plugin-php for openSUSE:Factory

2018-08-22 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2018-08-22 14:21:09

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new (New)


Package is "kdevelop5-plugin-php"

Wed Aug 22 14:21:09 2018 rev:10 rq:630786 version:5.2.4

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2018-06-02 12:08:26.720138703 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new/kdevelop5-plugin-php.changes
   2018-08-22 14:21:14.914478933 +0200
@@ -1,0 +2,8 @@
+Tue Aug 21 10:56:11 UTC 2018 - wba...@tmo.at
+
+- New upstream release 5.2.4
+  * Determine correct type for relational and equality expressions
+(kde#305341)
+  * Fix a bug with rescheduling jobs
+
+---

Old:

  kdev-php-5.2.3.tar.xz

New:

  kdev-php-5.2.4.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.g1L4DK/_old  2018-08-22 14:21:15.286479814 +0200
+++ /var/tmp/diff_new_pack.g1L4DK/_new  2018-08-22 14:21:15.286479814 +0200
@@ -22,13 +22,13 @@
 %define rname   kdev-php
 %define rversion 5.2
 Name:   kdevelop5-plugin-php
-Version:5.2.3
+Version:5.2.4
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0+
 Group:  Development/Tools/IDE
 Url:http://www.kdevelop.org
-Source0:%{rname}-%{version}.tar.xz
+Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/%{rname}-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules
 BuildRequires:  grantlee5-devel
 BuildRequires:  karchive-devel

++ kdev-php-5.2.3.tar.xz -> kdev-php-5.2.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.2.3/CMakeLists.txt 
new/kdev-php-5.2.4/CMakeLists.txt
--- old/kdev-php-5.2.3/CMakeLists.txt   2018-05-17 20:39:35.0 +0200
+++ new/kdev-php-5.2.4/CMakeLists.txt   2018-08-19 17:00:52.0 +0200
@@ -3,7 +3,7 @@
 
 set(KDEVPHP_VERSION_MAJOR 5)
 set(KDEVPHP_VERSION_MINOR 2)
-set(KDEVPHP_VERSION_PATCH 3)
+set(KDEVPHP_VERSION_PATCH 4)
 # KDevplatform dependency version
 set( KDEVPLATFORM_VERSION 
"${KDEVPHP_VERSION_MAJOR}.${KDEVPHP_VERSION_MINOR}.${KDEVPHP_VERSION_PATCH}" )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.2.3/docs/kcm_kdevphpdocs.desktop.cmake 
new/kdev-php-5.2.4/docs/kcm_kdevphpdocs.desktop.cmake
--- old/kdev-php-5.2.3/docs/kcm_kdevphpdocs.desktop.cmake   2018-05-17 
20:39:19.0 +0200
+++ new/kdev-php-5.2.4/docs/kcm_kdevphpdocs.desktop.cmake   2018-08-19 
17:00:29.0 +0200
@@ -20,6 +20,7 @@
 Name[es]=Documentación de PHP
 Name[et]=PHP dokumentatsioon
 Name[fi]=PHP-dokumentaatio
+Name[fr]=Documentation PHP
 Name[gl]=Documentación de PHP
 Name[it]=Documentazione PHP
 Name[ko]=PHP 문서
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.2.3/duchain/expressionvisitor.cpp 
new/kdev-php-5.2.4/duchain/expressionvisitor.cpp
--- old/kdev-php-5.2.3/duchain/expressionvisitor.cpp2018-05-17 
20:39:19.0 +0200
+++ new/kdev-php-5.2.4/duchain/expressionvisitor.cpp2018-08-19 
17:00:29.0 +0200
@@ -743,7 +743,26 @@
 DeclarationPointer dec = findDeclarationImport(ClassDeclarationType, 
id);
 
usingDeclaration(node->instanceofType->identifier->namespaceNameSequence->back()->element,
 dec);
 buildNamespaceUses(node->instanceofType->identifier, id);
-m_result.setDeclaration(dec);
+
+m_result.setType(AbstractType::Ptr(new 
IntegralType(IntegralType::TypeBoolean)));
+}
+}
+
+void 
ExpressionVisitor::visitRelationalExpressionRest(RelationalExpressionRestAst 
*node)
+{
+DefaultVisitor::visitRelationalExpressionRest(node);
+
+m_result.setType(AbstractType::Ptr(new 
IntegralType(IntegralType::TypeBoolean)));
+}
+
+void ExpressionVisitor::visitEqualityExpressionRest(EqualityExpressionRestAst 
*node)
+{
+DefaultVisitor::visitEqualityExpressionRest(node);
+
+if (node->operation && node->operation == OperationSpaceship) {
+m_result.setType(AbstractType::Ptr(new 
IntegralType(IntegralType::TypeInt)));
+} else {
+m_result.setType(AbstractType::Ptr(new 
IntegralType(IntegralType::TypeBoolean)));
 }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.2.3/duchain/expressionvisitor.h 
new/kdev-php-5.2.4/duchain/expressionvisitor.h
--- 

commit kdevelop5-plugin-php for openSUSE:Factory

2018-06-02 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2018-06-02 12:08:20

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new (New)


Package is "kdevelop5-plugin-php"

Sat Jun  2 12:08:20 2018 rev:9 rq:612538 version:5.2.3

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2017-09-13 22:30:05.609649799 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new/kdevelop5-plugin-php.changes
   2018-06-02 12:08:26.720138703 +0200
@@ -1,0 +2,16 @@
+Fri May 25 13:24:35 UTC 2018 - wba...@tmo.at
+
+- New upstream release 5.2.3 (5.2.2 has been skipped)
+  * no code changes
+- New upstream release 5.2.1
+  * Fix a crash when showing navigation tooltip in PHP projects in
+some situations (kde#386969)
+- New upstream release 5.2.0
+  * For a list of changes, see:
+https://www.kdevelop.org/news/kdevelop-520-released
+  * Added support for new language features
+  * Work on the type system
+  * Bug fixes
+- Mark license file as %license instead of %doc
+
+---

Old:

  kdev-php-5.1.2.tar.xz

New:

  kdev-php-5.2.3.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.cwzxaf/_old  2018-06-02 12:08:27.904095279 +0200
+++ /var/tmp/diff_new_pack.cwzxaf/_new  2018-06-02 12:08:27.940093959 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdevelop5-plugin-php
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -16,10 +16,13 @@
 #
 
 
+# for compatibility with Leap 42.3 which doesn't have this macro yet
+%{!?_kf5_debugdir: %global _kf5_debugdir %{_kf5_configdir}}
+
 %define rname   kdev-php
-%define rversion 5.1
+%define rversion 5.2
 Name:   kdevelop5-plugin-php
-Version:5.1.2
+Version:5.2.3
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0+
@@ -30,8 +33,8 @@
 BuildRequires:  grantlee5-devel
 BuildRequires:  karchive-devel
 BuildRequires:  kcmutils-devel
-BuildRequires:  kdevelop5-pg-qt >= 2.0.0
-BuildRequires:  kdevplatform-devel >= 5.0.0
+BuildRequires:  kdevelop5-pg-qt
+BuildRequires:  kdevplatform-devel
 BuildRequires:  kf5-filesystem
 BuildRequires:  kguiaddons-devel
 BuildRequires:  ki18n-devel
@@ -44,12 +47,12 @@
 BuildRequires:  kwindowsystem-devel
 BuildRequires:  pkgconfig
 BuildRequires:  threadweaver-devel
-BuildRequires:  pkgconfig(Qt5Concurrent) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Core) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Quick) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Test) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5WebKitWidgets) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Widgets) >= 5.2.0
+BuildRequires:  pkgconfig(Qt5Concurrent)
+BuildRequires:  pkgconfig(Qt5Core)
+BuildRequires:  pkgconfig(Qt5Quick)
+BuildRequires:  pkgconfig(Qt5Test)
+BuildRequires:  pkgconfig(Qt5WebKitWidgets)
+BuildRequires:  pkgconfig(Qt5Widgets)
 Conflicts:  kdevelop4-plugin-php
 Requires:   kdevelop5
 Recommends: %{name}-lang
@@ -69,7 +72,7 @@
   * sane code completion after keywords such as extends, implements, catch(), 
new, throw and some more
 
 %package lang
-Summary:Languages for package %{name}
+Summary:Translations for package %{name}
 Group:  System/Localization
 Requires:   %{name} = %{version}
 Provides:   %{name}-lang-all = %{version}
@@ -98,7 +101,10 @@
 
 %files
 %defattr(-,root,root)
-%doc COPYING AUTHORS HACKING TODO
+%license COPYING
+%doc AUTHORS HACKING TODO
+%{_kf5_appstreamdir}/org.kde.kdev-php.metainfo.xml
+%{_kf5_debugdir}/kdevphpsupport.categories
 %{_kf5_libdir}/*.so*
 %{_kf5_plugindir}/
 %{_kf5_servicesdir}/

++ kdev-php-5.1.2.tar.xz -> kdev-php-5.2.3.tar.xz ++
 15582 lines of diff (skipped)




commit kdevelop5-plugin-php for openSUSE:Factory

2017-09-13 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2017-09-13 22:28:58

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new (New)


Package is "kdevelop5-plugin-php"

Wed Sep 13 22:28:58 2017 rev:8 rq:519558 version:5.1.2

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2017-06-02 10:33:46.804109240 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new/kdevelop5-plugin-php.changes
   2017-09-13 22:30:05.609649799 +0200
@@ -1,0 +2,6 @@
+Tue Aug 29 07:01:44 UTC 2017 - wba...@tmo.at
+
+- New upstream release 5.1.2
+  * Fix a possible crash while parsing PHP code (kde#381123)
+
+---

Old:

  kdev-php-5.1.1.tar.xz

New:

  kdev-php-5.1.2.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.DQD0M4/_old  2017-09-13 22:30:06.457530436 +0200
+++ /var/tmp/diff_new_pack.DQD0M4/_new  2017-09-13 22:30:06.461529873 +0200
@@ -19,7 +19,7 @@
 %define rname   kdev-php
 %define rversion 5.1
 Name:   kdevelop5-plugin-php
-Version:5.1.1
+Version:5.1.2
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0+

++ kdev-php-5.1.1.tar.xz -> kdev-php-5.1.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.1.1/CMakeLists.txt 
new/kdev-php-5.1.2/CMakeLists.txt
--- old/kdev-php-5.1.1/CMakeLists.txt   2017-05-13 12:11:45.0 +0200
+++ new/kdev-php-5.1.2/CMakeLists.txt   2017-08-15 11:28:49.0 +0200
@@ -4,7 +4,7 @@
 
 set(KDEVPHP_VERSION_MAJOR 5)
 set(KDEVPHP_VERSION_MINOR 1)
-set(KDEVPHP_VERSION_PATCH 1)
+set(KDEVPHP_VERSION_PATCH 2)
 # KDevplatform dependency version
 set( KDEVPLATFORM_VERSION 
"${KDEVPHP_VERSION_MAJOR}.${KDEVPHP_VERSION_MINOR}.${KDEVPHP_VERSION_PATCH}" )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.1.1/completion/CMakeLists.txt 
new/kdev-php-5.1.2/completion/CMakeLists.txt
--- old/kdev-php-5.1.1/completion/CMakeLists.txt2017-05-13 
12:11:29.0 +0200
+++ new/kdev-php-5.1.2/completion/CMakeLists.txt2017-08-15 
11:28:35.0 +0200
@@ -1,4 +1,6 @@
-add_subdirectory(tests)
+if(BUILD_TESTING)
+add_subdirectory(tests)
+endif()
 
 set(completion_SRCS
 worker.cpp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.1.1/docs/kcm_kdevphpdocs.desktop.cmake 
new/kdev-php-5.1.2/docs/kcm_kdevphpdocs.desktop.cmake
--- old/kdev-php-5.1.1/docs/kcm_kdevphpdocs.desktop.cmake   2017-05-13 
12:11:29.0 +0200
+++ new/kdev-php-5.1.2/docs/kcm_kdevphpdocs.desktop.cmake   2017-08-15 
11:28:35.0 +0200
@@ -32,6 +32,7 @@
 Name[sk]=Dokumentácia PHP
 Name[sl]=Dokumentacija za PHP
 Name[sv]=PHP-dokumentation
+Name[tr]=PHP Belgelendirmesi
 Name[uk]=Документація з PHP
 Name[x-test]=xxPHP Documentationxx
 Name[zh_CN]=PHP 文档
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.1.1/duchain/CMakeLists.txt 
new/kdev-php-5.1.2/duchain/CMakeLists.txt
--- old/kdev-php-5.1.1/duchain/CMakeLists.txt   2017-05-13 12:11:29.0 
+0200
+++ new/kdev-php-5.1.2/duchain/CMakeLists.txt   2017-08-15 11:28:35.0 
+0200
@@ -1,5 +1,8 @@
 include_directories(${CMAKE_CURRENT_BINARY_DIR})
-add_subdirectory(tests)
+
+if(BUILD_TESTING)
+add_subdirectory(tests)
+endif()
 
 set(duchain_SRCS
 types/integraltypeextended.cpp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.1.1/duchain/builders/typebuilder.cpp 
new/kdev-php-5.1.2/duchain/builders/typebuilder.cpp
--- old/kdev-php-5.1.1/duchain/builders/typebuilder.cpp 2017-05-13 
12:11:29.0 +0200
+++ new/kdev-php-5.1.2/duchain/builders/typebuilder.cpp 2017-08-15 
11:28:35.0 +0200
@@ -540,12 +540,15 @@
 if (classDec->isPublicBaseClass(iteratorDecl, 
currentContext()->topContext())) {
 /// Qualified identifier for 'current'
 static const QualifiedIdentifier 
currentQId(QStringLiteral("current"));
-foreach (Declaration *d, 
classDec->internalContext()->findDeclarations(currentQId)) {
-if (!dynamic_cast(d)) 
continue;
-Q_ASSERT(d->type());
-injectType(d->type()->returnType());
-foundType = true;
- 

commit kdevelop5-plugin-php for openSUSE:Factory

2017-06-02 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2017-06-02 10:33:04

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new (New)


Package is "kdevelop5-plugin-php"

Fri Jun  2 10:33:04 2017 rev:7 rq:498703 version:5.1.1

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2017-03-31 15:08:22.613805444 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new/kdevelop5-plugin-php.changes
   2017-06-02 10:33:46.804109240 +0200
@@ -1,0 +2,6 @@
+Sat May 27 14:06:21 UTC 2017 - wba...@tmo.at
+
+- New upstream release 5.1.1
+  * Fix duchain unit tests
+
+---

Old:

  kdev-php-5.1.0.tar.xz

New:

  kdev-php-5.1.1.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.jI2l4D/_old  2017-06-02 10:33:47.320036342 +0200
+++ /var/tmp/diff_new_pack.jI2l4D/_new  2017-06-02 10:33:47.324035777 +0200
@@ -19,7 +19,7 @@
 %define rname   kdev-php
 %define rversion 5.1
 Name:   kdevelop5-plugin-php
-Version:5.1.0
+Version:5.1.1
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0+

++ kdev-php-5.1.0.tar.xz -> kdev-php-5.1.1.tar.xz ++
 1966 lines of diff (skipped)




commit kdevelop5-plugin-php for openSUSE:Factory

2017-03-31 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2017-03-31 15:08:15

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new (New)


Package is "kdevelop5-plugin-php"

Fri Mar 31 15:08:15 2017 rev:6 rq:482360 version:5.1.0

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2017-03-12 20:02:06.649796134 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new/kdevelop5-plugin-php.changes
   2017-03-31 15:08:22.613805444 +0200
@@ -1,0 +2,7 @@
+Thu Mar 23 14:45:18 UTC 2017 - wba...@tmo.at
+
+- New upstream release 5.1.0
+  * For a list of changes, see:
+https://www.kdevelop.org/news/kdevelop-510-released
+
+---

Old:

  kdev-php-5.0.4.tar.xz

New:

  kdev-php-5.1.0.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.2hQ6yc/_old  2017-03-31 15:08:23.253714975 +0200
+++ /var/tmp/diff_new_pack.2hQ6yc/_new  2017-03-31 15:08:23.257714409 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdevelop5-plugin-php
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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,9 +17,9 @@
 
 
 %define rname   kdev-php
-%define rversion 5.0
+%define rversion 5.1
 Name:   kdevelop5-plugin-php
-Version:5.0.4
+Version:5.1.0
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0+

++ kdev-php-5.0.4.tar.xz -> kdev-php-5.1.0.tar.xz ++
 3583 lines of diff (skipped)




commit kdevelop5-plugin-php for openSUSE:Factory

2017-03-12 Thread root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2017-03-12 20:02:01

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new (New)


Package is "kdevelop5-plugin-php"

Sun Mar 12 20:02:01 2017 rev:5 rq:477270 version:5.0.4

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2016-12-10 18:27:34.535465768 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new/kdevelop5-plugin-php.changes
   2017-03-12 20:02:06.649796134 +0100
@@ -1,0 +2,7 @@
+Sun Mar  5 13:46:39 UTC 2017 - wba...@tmo.at
+
+- New upstream release 5.0.4
+  * Update version number to 5.0.4
+- Fix a typo in the package description
+
+---

Old:

  kdev-php-5.0.3.tar.xz

New:

  kdev-php-5.0.4.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.ha4A2c/_old  2017-03-12 20:02:07.161723696 +0100
+++ /var/tmp/diff_new_pack.ha4A2c/_new  2017-03-12 20:02:07.161723696 +0100
@@ -19,7 +19,7 @@
 %define rname   kdev-php
 %define rversion 5.0
 Name:   kdevelop5-plugin-php
-Version:5.0.3
+Version:5.0.4
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0+
@@ -59,7 +59,7 @@
 PHP plugin for Kdevelop Integrated Development Environment
 
 This plugin enables support for the following features for developing
-web applications in PHP using Kdevelope4.
+web applications in PHP using Kdevelop5.
 
   * PHP built-in functions, classes, constants, superglobals
   * user-defined functions, classes, constants, superglobals, variables, etc.

++ kdev-php-5.0.3.tar.xz -> kdev-php-5.0.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.0.3/CMakeLists.txt 
new/kdev-php-5.0.4/CMakeLists.txt
--- old/kdev-php-5.0.3/CMakeLists.txt   2016-11-20 18:44:20.0 +0100
+++ new/kdev-php-5.0.4/CMakeLists.txt   2017-01-18 18:00:54.0 +0100
@@ -2,7 +2,7 @@
 
 set(KDEVPHP_VERSION_MAJOR 5)
 set(KDEVPHP_VERSION_MINOR 0)
-set(KDEVPHP_VERSION_PATCH 3)
+set(KDEVPHP_VERSION_PATCH 4)
 # KDevplatform dependency version
 set( KDEVPLATFORM_VERSION 
"${KDEVPHP_VERSION_MAJOR}.${KDEVPHP_VERSION_MINOR}.${KDEVPHP_VERSION_PATCH}" )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.0.3/docs/kcm_kdevphpdocs.desktop.cmake 
new/kdev-php-5.0.4/docs/kcm_kdevphpdocs.desktop.cmake
--- old/kdev-php-5.0.3/docs/kcm_kdevphpdocs.desktop.cmake   2016-11-20 
18:43:54.0 +0100
+++ new/kdev-php-5.0.4/docs/kcm_kdevphpdocs.desktop.cmake   2017-01-18 
18:00:31.0 +0100
@@ -14,6 +14,7 @@
 Name=PHP Documentation
 Name[ca]=Documentació de PHP
 Name[ca@valencia]=Documentació de PHP
+Name[cs]=Dokumentace PHP
 Name[de]=PHP-Dokumentation
 Name[en_GB]=PHP Documentation
 Name[es]=Documentación de PHP
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.0.3/docs/kdevphpdocs.json 
new/kdev-php-5.0.4/docs/kdevphpdocs.json
--- old/kdev-php-5.0.3/docs/kdevphpdocs.json2016-11-20 18:43:54.0 
+0100
+++ new/kdev-php-5.0.4/docs/kdevphpdocs.json2017-01-18 18:00:31.0 
+0100
@@ -14,6 +14,7 @@
 "Description[es]": "Este complemento integra la documentación en línea 
de PHP.net.", 
 "Description[et]": "See plugin lõimib PHP veebidokumentatsiooni.", 
 "Description[fi]": "Tämä liitännäinen integroi 
PHP.net-dokumentaation.", 
+"Description[fr]": "Ce module intègre la documentation en ligne de 
PHP.net.", 
 "Description[gl]": "Esta extensión integra a documentación en liña de 
PHP.net.", 
 "Description[it]": "Questa estensione integra la documentazione online 
di PHP.net.", 
 "Description[nl]": "Deze plugin integreert PHP.net 
online-documentatie.", 
@@ -36,6 +37,7 @@
 "Name[es]": "Documentación de PHP", 
 "Name[et]": "PHP dokumentatsioon", 
 "Name[fi]": "PHP-dokumentaatio", 
+"Name[fr]": "Documentation PHP", 
 "Name[gl]": "Documentación de PHP", 
 "Name[it]": "Documentazione PHP", 
 "Name[nl]": "PHP-documentatie", 
@@ -61,4 +63,4 @@
 "org.kdevelop.IDocumentationProvider"
 ], 
 "X-KDevelop-Mode": "GUI"
-}
\ No newline at end of file
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.0.3/kdevphpsupport.json 
new/kdev-php-5.0.4/kdevphpsupport.json
--- old/kdev-php-5.0.3/kdevphpsupport.json  

commit kdevelop5-plugin-php for openSUSE:Factory

2016-11-17 Thread h_root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2016-11-17 12:43:54

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new (New)


Package is "kdevelop5-plugin-php"

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2016-10-06 12:45:38.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new/kdevelop5-plugin-php.changes
   2016-11-17 12:43:55.0 +0100
@@ -1,0 +2,6 @@
+Wed Nov 16 10:41:14 UTC 2016 - wba...@tmo.at
+
+- New upstream release 5.0.2
+  * no code changes
+
+---

Old:

  kdev-php-5.0.1.tar.xz

New:

  kdev-php-5.0.2.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.7Z6dlw/_old  2016-11-17 12:43:56.0 +0100
+++ /var/tmp/diff_new_pack.7Z6dlw/_new  2016-11-17 12:43:56.0 +0100
@@ -19,7 +19,7 @@
 %define rname   kdev-php
 %define rversion 5.0
 Name:   kdevelop5-plugin-php
-Version:5.0.1
+Version:5.0.2
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0+

++ kdev-php-5.0.1.tar.xz -> kdev-php-5.0.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.0.1/CMakeLists.txt 
new/kdev-php-5.0.2/CMakeLists.txt
--- old/kdev-php-5.0.1/CMakeLists.txt   2016-09-17 13:45:54.0 +0200
+++ new/kdev-php-5.0.2/CMakeLists.txt   2016-10-16 19:34:44.0 +0200
@@ -2,7 +2,7 @@
 
 set(KDEVPHP_VERSION_MAJOR 5)
 set(KDEVPHP_VERSION_MINOR 0)
-set(KDEVPHP_VERSION_PATCH 1)
+set(KDEVPHP_VERSION_PATCH 2)
 # KDevplatform dependency version
 set( KDEVPLATFORM_VERSION 
"${KDEVPHP_VERSION_MAJOR}.${KDEVPHP_VERSION_MINOR}.${KDEVPHP_VERSION_PATCH}" )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdev-php-5.0.1/app_templates/simple_phpapp/simple_phpapp.kdevtemplate 
new/kdev-php-5.0.2/app_templates/simple_phpapp/simple_phpapp.kdevtemplate
--- old/kdev-php-5.0.1/app_templates/simple_phpapp/simple_phpapp.kdevtemplate   
2016-09-17 13:45:23.0 +0200
+++ new/kdev-php-5.0.2/app_templates/simple_phpapp/simple_phpapp.kdevtemplate   
2016-10-16 19:34:19.0 +0200
@@ -57,7 +57,7 @@
 Comment[ga]=Cruthaigh struchtúr comhad chun feidhmchlár PHP a thosú
 Comment[gl]=Xera a estrutura de ficheiros para comezar un aplicativo en PHP
 Comment[hu]=Fájlstruktúrát hoz létre egy PHP alkalmazás elkezdéséhez
-Comment[it]=Genera una struttura file per avviare un'applicazione in PHP
+Comment[it]=Genera una struttura di file per inizializzare un'applicazione in 
PHP
 Comment[ja]=PHP アプリケーションを始めるためのファイル構造を生成
 Comment[kk]=PHP қолданбасын бастайтын файл құрылымын құру
 Comment[ko]=PHP 프로그램을 시작할 파일 구조 생성
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-5.0.1/docs/kdevphpdocs.json 
new/kdev-php-5.0.2/docs/kdevphpdocs.json
--- old/kdev-php-5.0.1/docs/kdevphpdocs.json2016-09-17 13:45:23.0 
+0200
+++ new/kdev-php-5.0.2/docs/kdevphpdocs.json2016-10-16 19:34:19.0 
+0200
@@ -2,7 +2,8 @@
 "KPlugin": {
 "Authors": [
 {
-"Name": "Milian Wolff"
+"Name": "Milian Wolff", 
+"Name[x-test]": "xxMilian Wolffxx"
 }
 ], 
 "Category": "Documentation", 
@@ -10,11 +11,11 @@
 "Description[ca@valencia]": "Este connector integra la documentació en 
línia de PHP.net.", 
 "Description[ca]": "Aquest connector integra la documentació en línia 
de PHP.net.", 
 "Description[de]": "Dieses Modul integriert die Online-Dokumentation 
von PHP.net.", 
-"Description[en_GB]": "This plugin integrates PHP.net online 
documentation.", 
 "Description[es]": "Este complemento integra la documentación en línea 
de PHP.net.", 
 "Description[et]": "See plugin lõimib PHP veebidokumentatsiooni.", 
 "Description[fi]": "Tämä liitännäinen integroi 
PHP.net-dokumentaation.", 
 "Description[gl]": "Esta extensión integra a documentación en liña de 
PHP.net.", 
+"Description[it]": "Questa estensione integra la documentazione online 
di PHP.net.", 
 "Description[nl]": "Deze plugin integreert PHP.net 
online-documentatie.", 
 "Description[pl]": "Wtyczka ta integruje dokumentację internetową 
PHP.net.", 
 "Description[pt]": "Este 'plugin' integra-se com a documentação 
'online' do PHP.net.", 
@@ -30,16 +31,18 @@
 "Name": "PHP 

commit kdevelop5-plugin-php for openSUSE:Factory

2016-10-06 Thread h_root
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2016-10-06 12:45:37

Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new (New)


Package is "kdevelop5-plugin-php"

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2016-09-30 15:32:26.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new/kdevelop5-plugin-php.changes
   2016-10-06 12:45:38.0 +0200
@@ -1,0 +2,17 @@
+Tue Oct  4 20:58:29 UTC 2016 - lbeltr...@kde.org
+
+- Remove translations that are no longer there 
+
+---
+Tue Oct  4 13:01:08 UTC 2016 - lbeltr...@kde.org
+
+- Add BuildRequires to QtConcurrent to fix build
+
+---
+Mon Oct  3 22:27:52 UTC 2016 - lbeltr...@kde.org
+
+- New upstream release 5.0.1
+  * Fix a crash in the PHP plugin when editing text in the line 
+after a "TODO".  
+
+---

Old:

  kdev-php-5.0.tar.xz

New:

  kdev-php-5.0.1.tar.xz



Other differences:
--
++ kdevelop5-plugin-php.spec ++
--- /var/tmp/diff_new_pack.MugArM/_old  2016-10-06 12:45:39.0 +0200
+++ /var/tmp/diff_new_pack.MugArM/_new  2016-10-06 12:45:39.0 +0200
@@ -19,25 +19,34 @@
 %define rname   kdev-php
 %define rversion 5.0
 Name:   kdevelop5-plugin-php
-Version:5.0.0
+Version:5.0.1
 Release:0
 Summary:PHP plugin for Kdevelop5 Integrated Development Environment
 License:GPL-2.0+
 Group:  Development/Tools/IDE
 Url:http://www.kdevelop.org
-Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/%{rname}-%{rversion}.tar.xz
+Source0:%{rname}-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules
+BuildRequires:  grantlee5-devel
 BuildRequires:  karchive-devel
 BuildRequires:  kcmutils-devel
 BuildRequires:  kdevelop5-pg-qt >= 2.0.0
 BuildRequires:  kdevplatform-devel >= 5.0.0
 BuildRequires:  kf5-filesystem
+BuildRequires:  kguiaddons-devel
 BuildRequires:  ki18n-devel
+BuildRequires:  kiconthemes-devel
 BuildRequires:  kitemmodels-devel
+BuildRequires:  knewstuff-devel
+BuildRequires:  knotifications-devel
+BuildRequires:  knotifyconfig-devel
 BuildRequires:  ktexteditor-devel
+BuildRequires:  kwindowsystem-devel
 BuildRequires:  pkgconfig
 BuildRequires:  threadweaver-devel
+BuildRequires:  pkgconfig(Qt5Concurrent) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5Core) >= 5.2.0
+BuildRequires:  pkgconfig(Qt5Quick) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5WebKitWidgets) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) >= 5.2.0
@@ -74,7 +83,7 @@
 Provides translations to the package %{name}
 
 %prep
-%setup -q -n %{rname}-%{rversion}
+%setup -q -n %{rname}-%{version}
 
 %build
   %cmake_kf5 -d build
@@ -83,7 +92,6 @@
 %install
   %kf5_makeinstall -C build
   %find_lang kdevphp %{name}.lang
-  %find_lang kdevphpdocs %{name}.lang
 
 %post -p /sbin/ldconfig
 %postun -p /sbin/ldconfig

++ kdev-php-5.0.tar.xz -> kdev-php-5.0.1.tar.xz ++
 6437 lines of diff (skipped)