commit mono-qt4 for openSUSE:Factory

2014-11-19 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2014-11-19 20:25:19

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2014-10-16 
18:16:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2014-11-19 
20:28:19.0 +0100
@@ -1,0 +2,7 @@
+Sun Nov  9 20:29:38 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.14.3
+   * KDE 4.14.3 SC Bugfix Release
+   * See http://www.kde.org/announcements/announce-4.14.3.php
+
+---

Old:

  qyoto-4.14.2.tar.xz

New:

  qyoto-4.14.3.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.cymPZn/_old  2014-11-19 20:28:22.0 +0100
+++ /var/tmp/diff_new_pack.cymPZn/_new  2014-11-19 20:28:22.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.14.2
+Version:4.14.3
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.14.2.tar.xz -> qyoto-4.14.3.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2014-10-16 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2014-10-16 18:14:35

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2014-09-18 
07:58:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2014-10-16 
18:16:32.0 +0200
@@ -1,0 +2,15 @@
+Thu Oct 16 13:07:44 UTC 2014 - dims...@opensuse.org
+
+- Add qyoto-qdbus-non-generic.patch: The DllImport attribute cannot
+  be applied to a method that is generic or contained in a generic
+  type. Move the DllImport to a new, non-generic class
+  (kde#339977).
+
+---
+Sun Oct 12 12:01:55 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.14.2
+   * KDE 4.14.2 SC Bugfix Release
+   * See http://www.kde.org/announcements/announce-4.14.2.php
+
+---

Old:

  qyoto-4.14.1.tar.xz

New:

  qyoto-4.14.2.tar.xz
  qyoto-qdbus-non-generic.patch



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.tX01mx/_old  2014-10-16 18:16:33.0 +0200
+++ /var/tmp/diff_new_pack.tX01mx/_new  2014-10-16 18:16:33.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.14.1
+Version:4.14.2
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+
@@ -25,6 +25,8 @@
 Url:https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto
 Source0:qyoto-%{version}.tar.xz
 Patch1: qyoto-remove-examples.patch
+# PATCH-FIX-UPSTREAM qyoto-qdbus-non-generic.patch kde#339977 
dims...@opensuse.org -- The DllImport attribute cannot be applied to a method 
that is generic or contained in a generic type.
+Patch2: qyoto-qdbus-non-generic.patch
 BuildRequires:  cmake
 BuildRequires:  kde4-filesystem
 BuildRequires:  libQtWebKit-devel
@@ -50,6 +52,7 @@
 %prep
 %setup -q -n qyoto-%{version}
 %patch1 -p1
+%patch2 -p1
 
 %build
 %cmake_kde4 -d build

++ qyoto-4.14.1.tar.xz -> qyoto-4.14.2.tar.xz ++

++ qyoto-qdbus-non-generic.patch ++
Index: qyoto-4.14.2/qdbus/QDBusReply.cs
===
--- qyoto-4.14.2.orig/qdbus/QDBusReply.cs
+++ qyoto-4.14.2/qdbus/QDBusReply.cs
@@ -4,9 +4,12 @@ namespace Qyoto {
using System.Runtime.InteropServices;
using System.Collections.Generic; 
 
-   public class QDBusReply {
+   class QDBusReplyFill {
[DllImport("qyoto", CharSet=CharSet.Ansi)]
-   private static extern void qyoto_qdbus_reply_fill(IntPtr msg, 
IntPtr error, IntPtr variant);
+   public static extern void qyoto_qdbus_reply_fill(IntPtr msg, 
IntPtr error, IntPtr variant);
+   }
+
+   public class QDBusReply {

public QDBusReply(QDBusMessage reply) {
m_error = new QDBusError(reply);
@@ -18,7 +21,7 @@ namespace Qyoto {
variant = QVariant.FromValue(default(T));
}
 
-   qyoto_qdbus_reply_fill((IntPtr) GCHandle.Alloc(reply), 
(IntPtr) GCHandle.Alloc(m_error),
+   QDBusReplyFill.qyoto_qdbus_reply_fill((IntPtr) 
GCHandle.Alloc(reply), (IntPtr) GCHandle.Alloc(m_error),
(IntPtr) GCHandle.Alloc(variant));
 
if (!m_error.IsValid()) {
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2014-09-18 07:57:32

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2014-08-25 
10:58:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2014-09-18 
07:58:12.0 +0200
@@ -1,0 +2,7 @@
+Sat Sep 13 16:24:22 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.14.1
+   * KDE 4.14.1 SC Bugfix Release
+   * See http://www.kde.org/announcements/announce-4.14.1.php
+
+---
@@ -6 +13 @@
-   * See http://www.kde.org/announcements/4.13/
+   * See http://www.kde.org/announcements/4.14/

Old:

  qyoto-4.14.0.tar.xz

New:

  qyoto-4.14.1.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.r3l41t/_old  2014-09-18 07:58:13.0 +0200
+++ /var/tmp/diff_new_pack.r3l41t/_new  2014-09-18 07:58:13.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.14.0
+Version:4.14.1
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.14.0.tar.xz -> qyoto-4.14.1.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2014-08-25 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2014-08-25 10:58:39

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2014-07-16 
16:20:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2014-08-25 
10:58:48.0 +0200
@@ -1,0 +2,14 @@
+Fri Aug 15 08:26:56 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.14.0
+   * KDE 4.14.0 SC Final Release
+   * See http://www.kde.org/announcements/4.13/
+
+---
+Thu Jul 17 16:48:02 UTC 2014 - cgiboude...@gmx.com
+
+- Update to 4.13.90
+   * KDE 4.14 Beta 2 release
+   * See http://www.kde.org/announcements/announce-4.14-beta2.php
+
+---

Old:

  qyoto-4.13.80.tar.xz

New:

  qyoto-4.14.0.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.DFYNNl/_old  2014-08-25 10:58:49.0 +0200
+++ /var/tmp/diff_new_pack.DFYNNl/_new  2014-08-25 10:58:49.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.13.80
+Version:4.14.0
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.13.80.tar.xz -> qyoto-4.14.0.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2014-07-16 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2014-07-16 16:19:17

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2014-06-19 
13:15:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2014-07-16 
16:20:19.0 +0200
@@ -1,0 +2,7 @@
+Thu Jul 10 22:20:58 UTC 2014 - cgiboude...@gmx.com
+
+- Update to 4.13.80
+   * KDE 4.14 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.14-beta1.php
+
+---

Old:

  qyoto-4.13.2.tar.xz

New:

  qyoto-4.13.80.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.Zl7IRQ/_old  2014-07-16 16:20:20.0 +0200
+++ /var/tmp/diff_new_pack.Zl7IRQ/_new  2014-07-16 16:20:20.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.13.2
+Version:4.13.80
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.13.2.tar.xz -> qyoto-4.13.80.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2014-06-19 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2014-06-19 13:15:24

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2014-05-22 
06:49:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2014-06-19 
13:15:39.0 +0200
@@ -1,0 +2,7 @@
+Sun Jun  8 18:31:20 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.2
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/announce-4.13.2.php
+
+---

Old:

  qyoto-4.13.1.tar.xz

New:

  qyoto-4.13.2.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.3tfqNZ/_old  2014-06-19 13:15:40.0 +0200
+++ /var/tmp/diff_new_pack.3tfqNZ/_new  2014-06-19 13:15:40.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.13.1
+Version:4.13.2
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.13.1.tar.xz -> qyoto-4.13.2.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2014-05-21 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2014-05-22 06:49:38

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2014-04-18 
12:36:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2014-05-22 
06:49:48.0 +0200
@@ -1,0 +2,7 @@
+Fri May  9 16:43:13 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.1
+   * KDE 4.13.1  bug fix release
+   * See http://www.kde.org/announcements/announce-4.13.1.php
+
+---

Old:

  qyoto-4.13.0.tar.xz

New:

  qyoto-4.13.1.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.ACGtfD/_old  2014-05-22 06:49:50.0 +0200
+++ /var/tmp/diff_new_pack.ACGtfD/_new  2014-05-22 06:49:50.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.13.0
+Version:4.13.1
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.13.0.tar.xz -> qyoto-4.13.1.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2014-04-18 11:34:50

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2014-03-30 
09:25:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2014-04-18 
12:36:50.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:46:29 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  qyoto-4.12.97.tar.xz

New:

  qyoto-4.13.0.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.5InbVv/_old  2014-04-18 12:36:52.0 +0200
+++ /var/tmp/diff_new_pack.5InbVv/_new  2014-04-18 12:36:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.12.97.tar.xz -> qyoto-4.13.0.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2014-03-30 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2014-03-30 07:51:20

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2014-03-18 
16:02:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2014-03-30 
09:25:34.0 +0200
@@ -1,0 +2,14 @@
+Thu Mar 27 17:40:32 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.97
+   * KDE 4.13 RC  release
+   * See http://www.kde.org/announcements/announce-4.13-rc.php
+
+---
+Thu Mar 20 18:06:33 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.95
+   * KDE 4.13 Beta 3  release
+   * See http://www.kde.org/announcements/announce-4.13-beta3.php
+
+---

Old:

  qyoto-4.12.90.tar.xz

New:

  qyoto-4.12.97.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.YhwehV/_old  2014-03-30 09:28:44.0 +0200
+++ /var/tmp/diff_new_pack.YhwehV/_new  2014-03-30 09:28:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.12.90
+Version:4.12.97
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.12.90.tar.xz -> qyoto-4.12.97.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2014-03-18 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2014-03-18 16:02:21

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2014-02-20 
07:55:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2014-03-18 
16:02:35.0 +0100
@@ -1,0 +2,14 @@
+Thu Mar 13 20:11:22 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.90
+   * KDE 4.13 Beta 2  release
+   * See http://www.kde.org/announcements/announce-4.13-beta2.php
+
+---
+Fri Mar  7 10:00:57 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.80
+   * KDE 4.13 Beta 1  release
+   * See http://www.kde.org/announcements/announce-4.13-beta1.php
+
+---

Old:

  qyoto-4.12.2.tar.xz

New:

  qyoto-4.12.90.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.aqVBOg/_old  2014-03-18 16:02:36.0 +0100
+++ /var/tmp/diff_new_pack.aqVBOg/_new  2014-03-18 16:02:36.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.12.2
+Version:4.12.90
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.12.2.tar.xz -> qyoto-4.12.90.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2014-02-19 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2014-02-20 07:55:09

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2014-01-27 
11:14:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2014-02-20 
07:55:24.0 +0100
@@ -1,0 +2,7 @@
+Sat Feb  1 10:10:37 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.2
+   * KDE 4.12.2  release
+   * See http://www.kde.org/announcements/announce-4.12.2.php
+
+---

Old:

  qyoto-4.12.1.tar.xz

New:

  qyoto-4.12.2.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.QxfAlj/_old  2014-02-20 07:55:24.0 +0100
+++ /var/tmp/diff_new_pack.QxfAlj/_new  2014-02-20 07:55:24.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.12.1
+Version:4.12.2
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.12.1.tar.xz -> qyoto-4.12.2.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2014-01-27 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2014-01-27 11:14:52

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-12-19 
13:15:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2014-01-27 
11:14:53.0 +0100
@@ -1,0 +2,7 @@
+Sat Jan 11 15:35:56 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.1
+   * KDE 4.12.1  release
+   * See http://www.kde.org/announcements/announce-4.12.1.php
+
+---

Old:

  qyoto-4.12.0.tar.xz

New:

  qyoto-4.12.1.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.bXrKQ5/_old  2014-01-27 11:14:54.0 +0100
+++ /var/tmp/diff_new_pack.bXrKQ5/_new  2014-01-27 11:14:54.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mono-qt4
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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:   mono-qt4
-Version:4.12.0
+Version:4.12.1
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.12.0.tar.xz -> qyoto-4.12.1.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-12-19 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-12-19 13:15:47

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-12-11 
14:33:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-12-19 
13:15:48.0 +0100
@@ -1,0 +2,7 @@
+Sat Dec 14 18:03:25 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.12.0
+   * KDE 4.12.0  release
+   * See http://www.kde.org/announcements/4.12.php
+
+---

Old:

  qyoto-4.11.97.tar.xz

New:

  qyoto-4.12.0.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.WcqavG/_old  2013-12-19 13:15:49.0 +0100
+++ /var/tmp/diff_new_pack.WcqavG/_new  2013-12-19 13:15:49.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.11.97
+Version:4.12.0
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.11.97.tar.xz -> qyoto-4.12.0.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-12-11 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-12-11 14:33:13

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-12-02 
12:31:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-12-11 
14:33:14.0 +0100
@@ -1,0 +2,14 @@
+Fri Nov 29 07:04:17 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.97
+   * KDE 4.12 RC 1 release
+   * See http://www.kde.org/announcements/announce-4.12-rc.php
+
+---
+Sat Nov 23 22:18:55 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.95
+   * KDE 4.12 Beta 3 release
+   * See http://www.kde.org/announcements/announce-4.12-beta3.php
+
+---

Old:

  qyoto-4.11.90.tar.xz

New:

  qyoto-4.11.97.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.MpsvZD/_old  2013-12-11 14:33:15.0 +0100
+++ /var/tmp/diff_new_pack.MpsvZD/_new  2013-12-11 14:33:15.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.11.90
+Version:4.11.97
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.11.90.tar.xz -> qyoto-4.11.97.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-12-02 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-12-02 12:31:38

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-10-03 
16:05:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-12-02 
12:31:39.0 +0100
@@ -1,0 +2,21 @@
+Sat Nov 16 17:51:44 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.90
+   * KDE 4.12 Beta 2 release
+   * See http://www.kde.org/announcements/announce-4.12-beta2.php
+
+---
+Sat Nov  9 22:52:59 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.80
+   * KDE 4.12 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.12-beta1.php
+
+---
+Sat Nov  2 15:06:38 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.3
+   * KDE 4.11.3 bugfix release
+   * See http://www.kde.org/announcements/announce-4.11.3.php
+
+---

Old:

  qyoto-4.11.2.tar.xz

New:

  qyoto-4.11.90.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.UNutVW/_old  2013-12-02 12:31:39.0 +0100
+++ /var/tmp/diff_new_pack.UNutVW/_new  2013-12-02 12:31:39.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.11.2
+Version:4.11.90
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.11.2.tar.xz -> qyoto-4.11.90.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-10-03 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-10-03 16:05:44

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-09-09 
11:07:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-10-03 
16:05:45.0 +0200
@@ -1,0 +2,7 @@
+Sat Sep 28 15:08:32 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.2
+   * KDE 4.11.2 bugfix release
+   * See http://www.kde.org/announcements/announce-4.11.2.php
+
+---

Old:

  qyoto-4.11.1.tar.xz

New:

  qyoto-4.11.2.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.mQQu1D/_old  2013-10-03 16:05:47.0 +0200
+++ /var/tmp/diff_new_pack.mQQu1D/_new  2013-10-03 16:05:47.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.11.1
+Version:4.11.2
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.11.1.tar.xz -> qyoto-4.11.2.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-09-09 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-09-09 11:07:01

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-08-16 
13:39:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-09-09 
11:07:02.0 +0200
@@ -1,0 +2,7 @@
+Sun Sep  1 09:59:29 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.1
+   * KDE 4.11.1 bugfix release
+   * See http://www.kde.org/announcements/announce-4.11.1.php
+
+---

Old:

  qyoto-4.11.0.tar.xz

New:

  qyoto-4.11.1.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.3kUgo4/_old  2013-09-09 11:07:03.0 +0200
+++ /var/tmp/diff_new_pack.3kUgo4/_new  2013-09-09 11:07:03.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.11.0
+Version:4.11.1
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.11.0.tar.xz -> qyoto-4.11.1.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-08-16 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-08-16 13:39:50

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-07-30 
16:07:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-08-16 
13:39:51.0 +0200
@@ -1,0 +2,7 @@
+Thu Aug  8 15:01:36 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.0
+   * KDE 4.11 Final release
+   * See http://www.kde.org/announcements/4.11/
+
+---

Old:

  qyoto-4.10.97.tar.xz

New:

  qyoto-4.11.0.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.EguDLk/_old  2013-08-16 13:39:52.0 +0200
+++ /var/tmp/diff_new_pack.EguDLk/_new  2013-08-16 13:39:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.10.97
+Version:4.11.0
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.10.97.tar.xz -> qyoto-4.11.0.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-07-30 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-07-30 16:07:10

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-07-22 
17:20:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-07-30 
16:07:11.0 +0200
@@ -1,0 +2,7 @@
+Thu Jul 25 23:47:02 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Update to 4.10.97
+  * KDE 4.11 RC 2 release
+  * See http://www.kde.org/announcements/announce-4.11-rc2.php
+
+---

Old:

  qyoto-4.10.95.tar.xz

New:

  qyoto-4.10.97.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.wAud6L/_old  2013-07-30 16:07:12.0 +0200
+++ /var/tmp/diff_new_pack.wAud6L/_new  2013-07-30 16:07:12.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.10.95
+Version:4.10.97
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.10.95.tar.xz -> qyoto-4.10.97.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-07-22 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-07-22 17:20:14

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-07-08 
07:33:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-07-22 
17:20:15.0 +0200
@@ -1,0 +2,7 @@
+Mon Jul 15 08:14:17 UTC 2013 - cgiboude...@gmx.com
+
+- Update to 4.10.95
+ * KDE 4.11 RC 1 release
+ * See http://www.kde.org/announcements/announce-4.11-rc1.php
+
+---

Old:

  qyoto-4.10.90.tar.xz

New:

  qyoto-4.10.95.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.NLHHTd/_old  2013-07-22 17:20:15.0 +0200
+++ /var/tmp/diff_new_pack.NLHHTd/_new  2013-07-22 17:20:15.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.10.90
+Version:4.10.95
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.10.90.tar.xz -> qyoto-4.10.95.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-07-07 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-07-08 07:33:42

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-06-11 
09:34:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-07-08 
07:33:44.0 +0200
@@ -1,0 +2,14 @@
+Thu Jun 27 18:12:35 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.90
+   * KDE 4.11 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.11-beta2.php
+
+---
+Thu Jun 13 19:16:09 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.80
+   * KDE 4.11 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.11-beta1.php
+
+---

Old:

  qyoto-4.10.4.tar.xz

New:

  qyoto-4.10.90.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.aX9Krw/_old  2013-07-08 07:33:44.0 +0200
+++ /var/tmp/diff_new_pack.aX9Krw/_new  2013-07-08 07:33:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.10.4
+Version:4.10.90
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.10.4.tar.xz -> qyoto-4.10.90.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qyoto-4.10.4/CMakeLists.txt 
new/qyoto-4.10.90/CMakeLists.txt
--- old/qyoto-4.10.4/CMakeLists.txt 2013-05-28 20:42:52.0 +0200
+++ new/qyoto-4.10.90/CMakeLists.txt2013-06-10 20:51:41.0 +0200
@@ -4,7 +4,7 @@
 
 find_package(Qt4 REQUIRED)
 find_package(Smoke COMPONENTS QtCore QtGui QtXml QtOpenGl QtSql QtNetwork 
QtDbus QtSvg QtScript QtTest QtUiTools QtWebKit QSci QImageBlitz Phonon)
-include_directories(${SMOKE_INCLUDE_DIR} ${QT_INCLUDES} 
${CMAKE_CURRENT_SOURCE_DIR}/src)
+include_directories(${SMOKE_INCLUDE_DIR} ${SMOKE_QTCORE_INCLUDE_DIR} 
${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR}/src)
 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake 
${CMAKE_CURRENT_BUILD_DIR}/cmake ${SMOKE_CMAKE_MODULE_DIR})
 include(MacroOptionalFindPackage)
 include(MacroOptionalAddBindings)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-06-11 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-06-11 06:09:00

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-05-16 
18:11:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-06-11 
09:34:31.0 +0200
@@ -1,0 +2,8 @@
+Sat Jun  1 09:32:53 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.4
+   * Bugfix release
+   * See http://www.kde.org/announcements/announce-4.10.4.php
+   * resolves bnc#8122760
+
+---

Old:

  qyoto-4.10.3.tar.xz

New:

  qyoto-4.10.4.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.HcTA8e/_old  2013-06-11 09:34:32.0 +0200
+++ /var/tmp/diff_new_pack.HcTA8e/_new  2013-06-11 09:34:32.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.10.3
+Version:4.10.4
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.10.3.tar.xz -> qyoto-4.10.4.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-05-16 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-05-16 18:11:14

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-04-10 
20:26:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-05-16 
18:11:16.0 +0200
@@ -1,0 +2,8 @@
+Sat May  4 16:54:58 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.3
+   * Bugfix release
+   * See http://www.kde.org/announcements/announce-4.10.3.php
+   * resolves bnc#818500
+
+---

Old:

  qyoto-4.10.2.tar.xz

New:

  qyoto-4.10.3.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.SHVApC/_old  2013-05-16 18:11:16.0 +0200
+++ /var/tmp/diff_new_pack.SHVApC/_new  2013-05-16 18:11:16.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.10.2
+Version:4.10.3
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.10.2.tar.xz -> qyoto-4.10.3.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-04-10 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-04-10 20:26:14

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-03-14 
15:36:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-04-10 
20:26:45.0 +0200
@@ -1,0 +2,5 @@
+Mon Apr  1 19:13:38 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.2 \n  * Bugfixes
+
+---

Old:

  qyoto-4.10.1.tar.xz

New:

  qyoto-4.10.2.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.QVaYKI/_old  2013-04-10 20:26:46.0 +0200
+++ /var/tmp/diff_new_pack.QVaYKI/_new  2013-04-10 20:26:46.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.10.1
+Version:4.10.2
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.10.1.tar.xz -> qyoto-4.10.2.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-03-14 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-03-14 14:58:45

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-02-04 
19:05:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-03-14 
14:58:46.0 +0100
@@ -1,0 +2,7 @@
+Sat Mar  2 15:36:20 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.1
+ * Contains bug fixes. See http://www.kde.org/announcements/ 
+   for more information 
+
+---

Old:

  qyoto-4.10.0.tar.xz

New:

  qyoto-4.10.1.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.oqBrIk/_old  2013-03-14 14:58:47.0 +0100
+++ /var/tmp/diff_new_pack.oqBrIk/_new  2013-03-14 14:58:47.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.10.0
+Version:4.10.1
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.10.0.tar.xz -> qyoto-4.10.1.tar.xz ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-02-04 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-02-04 19:05:46

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-01-19 
16:39:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-02-04 
19:05:51.0 +0100
@@ -1,0 +2,6 @@
+Thu Jan 31 17:47:06 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.0
+ * This is the final release for 4.10. Contains bugfixes 
+
+---

Old:

  qyoto-4.9.98.tar.xz

New:

  qyoto-4.10.0.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.s9URxx/_old  2013-02-04 19:05:54.0 +0100
+++ /var/tmp/diff_new_pack.s9URxx/_new  2013-02-04 19:05:54.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.9.98
+Version:4.10.0
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-01-19 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-01-19 16:38:56

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2013-01-07 
11:06:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-01-19 
16:39:00.0 +0100
@@ -1,0 +2,6 @@
+Thu Jan 17 08:04:47 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.9.98
+ * This is the third RC release for 4.10. Contains bugfixes 
+
+---

Old:

  qyoto-4.9.97.tar.xz

New:

  qyoto-4.9.98.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.KncP5v/_old  2013-01-19 16:39:01.0 +0100
+++ /var/tmp/diff_new_pack.KncP5v/_new  2013-01-19 16:39:01.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.9.97
+Version:4.9.98
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2013-01-07 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2013-01-07 11:06:44

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2012-12-21 
09:16:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2013-01-07 
11:06:47.0 +0100
@@ -1,0 +2,6 @@
+Thu Jan  3 21:09:35 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.9.97
+ * This is the second RC release for 4.10. Contains bugfixes 
+
+---

Old:

  qyoto-4.9.95.tar.xz

New:

  qyoto-4.9.97.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.oTGA5o/_old  2013-01-07 11:06:48.0 +0100
+++ /var/tmp/diff_new_pack.oTGA5o/_new  2013-01-07 11:06:48.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mono-qt4
 #
-# 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:   mono-qt4
-Version:4.9.95
+Version:4.9.97
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2012-12-21 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2012-12-21 09:16:39

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2012-12-07 
14:42:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2012-12-21 
09:16:43.0 +0100
@@ -1,0 +2,6 @@
+Wed Dec 19 18:36:55 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.95
+ * This is the first RC release for 4.10. Contains bugfixes 
+
+---

Old:

  qyoto-4.9.90.tar.xz

New:

  qyoto-4.9.95.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.8RqHfa/_old  2012-12-21 09:16:44.0 +0100
+++ /var/tmp/diff_new_pack.8RqHfa/_new  2012-12-21 09:16:44.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.9.90
+Version:4.9.95
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2012-12-07 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2012-12-07 14:42:44

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2012-11-08 
07:47:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2012-12-07 
14:42:50.0 +0100
@@ -1,0 +2,12 @@
+Sat Dec  1 20:03:07 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.90
+ * This is the second Beta release for 4.10. Contains bugfixes 
+
+---
+Sat Nov 24 12:51:18 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.80
+  * See http://www.kde.org/announcements/announce-4.10-beta1.php
+
+---
@@ -5 +17 @@
-  * see http://kde.org/announcements/4.9.3/ for details
+  * see http://kde.org/announcements/announce-4.9.3.php for details
@@ -11 +23 @@
-  * see http://kde.org/announcements/4.9.2/ for details
+  * see http://kde.org/announcements/announce-4.9.2.php for details

Old:

  qyoto-4.9.3.tar.xz

New:

  qyoto-4.9.90.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.WvQMPq/_old  2012-12-07 14:42:51.0 +0100
+++ /var/tmp/diff_new_pack.WvQMPq/_new  2012-12-07 14:42:51.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.9.3
+Version:4.9.90
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2012-11-07 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2012-11-08 07:47:00

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2012-10-07 
08:28:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2012-11-08 
07:47:03.0 +0100
@@ -1,0 +2,6 @@
+Fri Nov  2 16:49:55 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.3
+  * see http://kde.org/announcements/4.9.3/ for details
+
+---

Old:

  qyoto-4.9.2.tar.xz

New:

  qyoto-4.9.3.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.MnQDpS/_old  2012-11-08 07:47:04.0 +0100
+++ /var/tmp/diff_new_pack.MnQDpS/_new  2012-11-08 07:47:04.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.9.2
+Version:4.9.3
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2012-10-07 08:28:28

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2012-09-11 
07:59:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2012-10-07 
08:28:30.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 29 09:56:47 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.2
+  * see http://kde.org/announcements/4.9.2/ for details
+
+---

Old:

  qyoto-4.9.1.tar.xz

New:

  qyoto-4.9.2.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.krffam/_old  2012-10-07 08:28:31.0 +0200
+++ /var/tmp/diff_new_pack.krffam/_new  2012-10-07 08:28:31.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.9.1
+Version:4.9.2
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2012-09-10 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2012-09-11 07:59:04

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2012-08-07 
21:33:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2012-09-11 
07:59:17.0 +0200
@@ -1,0 +2,7 @@
+Wed Sep  5 12:16:22 UTC 2012 - dmuel...@suse.com
+
+- update to 4.9.1
+  * see http://kde.org/announcements/4.9.1/ for details
+  
+
+---

Old:

  qyoto-4.8.5.tar.xz

New:

  qyoto-4.9.1.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.b36VrO/_old  2012-09-11 07:59:23.0 +0200
+++ /var/tmp/diff_new_pack.b36VrO/_new  2012-09-11 07:59:23.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.8.5
+Version:4.9.1
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2012-08-07 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2012-08-07 21:33:16

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2012-06-12 
21:45:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2012-08-07 
21:33:19.0 +0200
@@ -1,0 +2,6 @@
+Mon Jul 30 17:01:27 UTC 2012 - dmuel...@suse.com
+
+- update to 4.8.5
+  * see http://kde.org/announcements/changelogs/changelog4_8_4to4_8_5.php for 
details
+
+---

Old:

  qyoto-4.8.4.tar.xz

New:

  qyoto-4.8.5.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.JHJqPm/_old  2012-08-07 21:33:20.0 +0200
+++ /var/tmp/diff_new_pack.JHJqPm/_new  2012-08-07 21:33:20.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.8.4
+Version:4.8.5
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2012-06-12 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2012-06-12 21:45:17

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2012-05-09 
18:32:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2012-06-12 
21:45:19.0 +0200
@@ -1,0 +2,6 @@
+Fri Jun  1 14:03:00 UTC 2012 - dmuel...@suse.com
+
+- update to 4.8.4
+  * see http://kde.org/announcements/changelogs/changelog4_8_3to4_8_4.php for 
details
+
+---

Old:

  qyoto-4.8.3.tar.xz

New:

  qyoto-4.8.4.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.RyPwW0/_old  2012-06-12 21:45:20.0 +0200
+++ /var/tmp/diff_new_pack.RyPwW0/_new  2012-06-12 21:45:20.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.8.3
+Version:4.8.4
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2012-05-09 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2012-05-09 18:18:39

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2012-04-12 
09:41:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2012-05-09 
18:32:17.0 +0200
@@ -1,0 +2,6 @@
+Sun Apr 29 20:54:06 UTC 2012 - dmuel...@suse.com
+
+- update to 4.8.3
+  * see http://kde.org/announcements/changelogs/changelog4_8_2to4_8_3.php for 
details
+
+---

Old:

  qyoto-4.8.2.tar.xz

New:

  qyoto-4.8.3.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.3DJFGY/_old  2012-05-09 18:32:18.0 +0200
+++ /var/tmp/diff_new_pack.3DJFGY/_new  2012-05-09 18:32:18.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mono-qt4
-Version:4.8.2
+Version:4.8.3
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2012-04-12 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2012-04-12 09:41:50

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2012-03-13 
09:36:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2012-04-12 
09:41:56.0 +0200
@@ -1,0 +2,6 @@
+Fri Mar 30 01:23:54 CEST 2012 - dmuel...@suse.de
+
+- update to 4.8.2
+  * see http://kde.org/announcements/changelogs/changelog4_8_1to4_8_2.php for 
details
+
+---

Old:

  qyoto-4.8.1.tar.bz2

New:

  qyoto-4.8.2.tar.xz



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.fcZXyE/_old  2012-04-12 09:41:58.0 +0200
+++ /var/tmp/diff_new_pack.fcZXyE/_new  2012-04-12 09:41:58.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   mono-qt4
-Version:4.8.1
+Version:4.8.2
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+
 Group:  Development/Languages/Mono
 Url:https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto
-Source0:qyoto-%{version}.tar.bz2
+Source0:qyoto-%{version}.tar.xz
 Patch1: qyoto-remove-examples.patch
 BuildRequires:  cmake
 BuildRequires:  kde4-filesystem
@@ -38,6 +38,7 @@
 BuildRequires:  phonon-devel
 BuildRequires:  qwt-devel
 BuildRequires:  sqlite-devel
+BuildRequires:  xz
 Requires:   libqyoto2 = %{version}
 Provides:   mono-qt = 4.7.0
 Obsoletes:  mono-qt < 4.7.0

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2012-03-13 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2012-03-13 09:36:50

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2012-01-27 
15:22:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2012-03-13 
09:36:51.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:27:19 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  qyoto-4.8.0.tar.bz2

New:

  qyoto-4.8.1.tar.bz2



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.jPk3nv/_old  2012-03-13 09:36:52.0 +0100
+++ /var/tmp/diff_new_pack.jPk3nv/_new  2012-03-13 09:36:52.0 +0100
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   mono-qt4
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Mono Qt4 kdebindings library
 License:GPL-2.0+

++ qyoto-4.8.0.tar.bz2 -> qyoto-4.8.1.tar.bz2 ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2012-01-27 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2012-01-27 15:22:19

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2011-12-08 
11:29:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2012-01-27 
15:22:21.0 +0100
@@ -1,0 +2,16 @@
+Wed Jan 18 21:01:04 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.0
+  * first stable release of KDE 4.8 (only critical fixes over 4.7.98)
+  * see http://kde.org/announcements/4.8/ for details
+  
+
+---
+Tue Jan 10 16:35:08 CET 2012 - dmuel...@suse.de
+
+- update to 4.7.98
+  * RC2+ milestone release of KDE 4.8
+  *  see http://kde.org/announcements/4.8/ for details
+  
+
+---

Old:

  qyoto-4.7.4.tar.bz2

New:

  qyoto-4.8.0.tar.bz2



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.5OOswA/_old  2012-01-27 15:22:22.0 +0100
+++ /var/tmp/diff_new_pack.5OOswA/_new  2012-01-27 15:22:22.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mono-qt4
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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
@@ -15,15 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   mono-qt4
-Version:4.7.4
-Release:1
-License:GPL-2.0+
+Version:4.8.0
+Release:0
 Summary:Mono Qt4 kdebindings library
-Url:https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto
+License:GPL-2.0+
 Group:  Development/Languages/Mono
+Url:https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto
 Source0:qyoto-%{version}.tar.bz2
 Patch1: qyoto-remove-examples.patch
 BuildRequires:  cmake
@@ -49,7 +47,7 @@
 
 %prep
 %setup -q -n qyoto-%{version}
-%patch1
+%patch1 -p1
 
 %build
 %cmake_kde4 -d build
@@ -60,7 +58,6 @@
 %make_install
 
 %package -n libqyoto2
-License:GPL-2.0+
 Summary:Mono bindings for Qt4 libraries
 Group:  Development/Languages/Mono
 
@@ -68,7 +65,6 @@
 Shared library for the .NET/Mono bindings for the Qt4 libraries.
 
 %package devel
-License:GPL-2.0+
 Summary:Development libraries for Mono-Qt4
 Group:  Development/Languages/Mono
 Requires:   %{name} = %{version}

++ qyoto-4.7.4.tar.bz2 -> qyoto-4.8.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qyoto-4.7.4/CMakeLists.txt 
new/qyoto-4.8.0/CMakeLists.txt
--- old/qyoto-4.7.4/CMakeLists.txt  2011-06-22 18:33:32.0 +0200
+++ new/qyoto-4.8.0/CMakeLists.txt  2011-12-20 20:11:07.0 +0100
@@ -3,14 +3,17 @@
 cmake_minimum_required(VERSION 2.6)
 
 find_package(Qt4 REQUIRED)
-find_package(Smoke COMPONENTS QtCore QtGui QtXml QtOpenGl QtSql QtNetwork 
QtDbus QtSvg QSci QImageBlitz Phonon)
+find_package(Smoke COMPONENTS QtCore QtGui QtXml QtOpenGl QtSql QtNetwork 
QtDbus QtSvg QtScript QtTest QtUiTools QtWebKit QSci QImageBlitz Phonon)
 include_directories(${SMOKE_INCLUDE_DIR} ${QT_INCLUDES} 
${CMAKE_CURRENT_SOURCE_DIR}/src)
 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake 
${CMAKE_CURRENT_BUILD_DIR}/cmake ${SMOKE_CMAKE_MODULE_DIR})
 include(MacroOptionalFindPackage)
 include(MacroOptionalAddBindings)
 include(MacroLogFeature)
 enable_language(CSharp OPTIONAL)
-set(LIB_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/)
+
+if (NOT LIB_INSTALL_DIR)
+set (LIB_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX})
+endif (NOT LIB_INSTALL_DIR)
 
 set(KEYFILE ${CMAKE_CURRENT_SOURCE_DIR}/key.snk)
 install(FILES ${KEYFILE} DESTINATION share/qyoto )
@@ -26,7 +29,6 @@
 src/methodcall.cpp
 src/methodreturnvalue.cpp
 src/modelfunctions.cpp
-src/qdbus_interop.cpp
 src/qmetatype_interop.cpp
 src/qobject_interop.cpp
 src/qvariant_interop.cpp
@@ -38,8 +40,12 @@
 src/virtualmethodcall.cpp
 src/virtualmethodreturnvalue.cpp
 )
+if (SMOKE_QTDBUS_LIBRARY)
+SET(SRC_QYOTO ${SRC_QYOTO} src/qdbus_interop.cpp)
+add_definitions(-DUSING_QTDBUS)
+endif (SMOKE_QTDBUS_LIBRARY)
 
-SET(SRC_CS_QYOTO src/SmokeInvocation.cs
+SET(SRC_CS_QYOTO_IN src/SmokeInvocation.cs
 src/SmokeMarshallers.cs
 src/Qyot

commit mono-qt4 for openSUSE:Factory

2011-12-08 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2011-12-08 11:29:52

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2011-11-16 
17:19:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2011-12-08 
11:29:55.0 +0100
@@ -1,0 +2,11 @@
+Fri Dec  2 13:07:54 UTC 2011 - idoen...@suse.de
+
+- Fix duplicate files between mono-qt4 and mono-qt4-devel 
+
+---
+Fri Dec  2 02:03:03 CET 2011 - dmuel...@suse.de
+
+- update to 4.7.4
+  * see http://kde.org/announcements/changelogs/changelog4_7_3to4_7_4.php for 
details
+
+---

Old:

  qyoto-4.7.3.tar.bz2

New:

  qyoto-4.7.4.tar.bz2



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.Yf7b00/_old  2011-12-08 11:29:57.0 +0100
+++ /var/tmp/diff_new_pack.Yf7b00/_new  2011-12-08 11:29:57.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   mono-qt4
-Version:4.7.3
+Version:4.7.4
 Release:1
 License:GPL-2.0+
 Summary:Mono Qt4 kdebindings library
@@ -96,6 +96,7 @@
 %{_prefix}/lib/mono/gac/phonon/
 %{_prefix}/lib/mono/gac/qscintilla/
 %{_datadir}/qyoto/
+%exclude %{_datadir}/qyoto/cmake
 
 %files devel
 %defattr(-,root,root)

++ qyoto-4.7.3.tar.bz2 -> qyoto-4.7.4.tar.bz2 ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2011-11-16 Thread h_root
Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory 
checked in at 2011-11-16 17:19:30

Comparing /work/SRC/openSUSE:Factory/mono-qt4 (Old)
 and  /work/SRC/openSUSE:Factory/.mono-qt4.new (New)


Package is "mono-qt4", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mono-qt4/mono-qt4.changes2011-10-06 
16:44:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-qt4.new/mono-qt4.changes   2011-11-16 
17:19:55.0 +0100
@@ -1,0 +2,6 @@
+Wed Nov  2 20:35:51 CET 2011 - dmuel...@suse.de
+
+- update to 4.7.3
+  * see http://kde.org/announcements/changelogs/changelog4_7_2to4_7_3.php for 
details
+
+---

Old:

  qyoto-4.7.2.tar.bz2

New:

  qyoto-4.7.3.tar.bz2



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.mIFXOv/_old  2011-11-16 17:19:57.0 +0100
+++ /var/tmp/diff_new_pack.mIFXOv/_new  2011-11-16 17:19:57.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   mono-qt4
-Version:4.7.2
+Version:4.7.3
 Release:1
 License:GPL-2.0+
 Summary:Mono Qt4 kdebindings library

++ qyoto-4.7.2.tar.bz2 -> qyoto-4.7.3.tar.bz2 ++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2011-10-06 Thread h_root

Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory
checked in at Thu Oct 6 16:44:14 CEST 2011.




--- openSUSE:Factory/mono-qt4/mono-qt4.changes  2011-09-23 02:13:10.0 
+0200
+++ /mounts/work_src_done/STABLE/mono-qt4/mono-qt4.changes  2011-10-02 
17:41:41.0 +0200
@@ -1,0 +2,6 @@
+Sun Oct  2 17:41:02 CEST 2011 - dmuel...@suse.de
+
+- update to 4.7.2
+  * see http://kde.org/announcements/changelogs/changelog4_7_1to4_7_2.php for 
details
+
+---

calling whatdependson for head-i586


Old:

  _service:format_spec_file:mono-qt4.spec
  qyoto-4.7.1.tar.bz2

New:

  qyoto-4.7.2.tar.bz2



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.X6DF7i/_old  2011-10-06 16:44:03.0 +0200
+++ /var/tmp/diff_new_pack.X6DF7i/_new  2011-10-06 16:44:03.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   mono-qt4
-Version:4.7.1
+Version:4.7.2
 Release:1
 License:GPL-2.0+
 Summary:Mono Qt4 kdebindings library

++ qyoto-4.7.1.tar.bz2 -> qyoto-4.7.2.tar.bz2 ++

continue with "q"...



Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2011-09-19 Thread h_root

Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory
checked in at Mon Sep 19 17:55:24 CEST 2011.




--- mono-qt4/mono-qt4.changes   2011-09-01 23:32:12.0 +0200
+++ mono-qt4/mono-qt4.changes   2011-09-07 14:50:57.0 +0200
@@ -4,0 +5,2 @@
+  * Bugfixes over KDE 4.7.0
+  *  see http://kde.org/announcements/changelogs/changelog4_7_0to4_7_1.php for 
details

calling whatdependson for head-i586




Other differences:
--
mono-qt4.spec: same change





Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2011-09-11 Thread h_root

Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory
checked in at Sun Sep 11 19:41:15 CEST 2011.




--- mono-qt4/mono-qt4.changes   2011-08-24 13:16:23.0 +0200
+++ /mounts/work_src_done/STABLE/mono-qt4/mono-qt4.changes  2011-09-01 
23:32:12.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep  1 23:32:10 CEST 2011 - dmuel...@suse.de
+
+- update to 4.7.1
+
+---

calling whatdependson for head-i586


Old:

  qyoto-4.7.0.tar.bz2

New:

  _service:format_spec_file:mono-qt4.spec
  qyoto-4.7.1.tar.bz2



Other differences:
--
++ _service:format_spec_file:mono-qt4.spec ++
#
# spec file for package mono-qt4
#
# Copyright (c) 2011 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# 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/
#



Name:   mono-qt4
Version:4.7.1
Release:1
License:GPL-2.0+
Summary:Mono Qt4 kdebindings library
Url:https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto
Group:  Development/Languages/Mono
Source0:qyoto-%{version}.tar.bz2
Patch1: qyoto-remove-examples.patch
BuildRequires:  cmake
BuildRequires:  kde4-filesystem
BuildRequires:  libQtWebKit-devel
BuildRequires:  libmono-2_0-devel
BuildRequires:  libqimageblitz-devel
BuildRequires:  libqscintilla-devel
BuildRequires:  libsmokegen-devel
BuildRequires:  libsmokeqt-devel
BuildRequires:  mono
BuildRequires:  mono-devel
BuildRequires:  phonon-devel
BuildRequires:  qwt-devel
BuildRequires:  sqlite-devel
Requires:   libqyoto2 = %{version}
Provides:   mono-qt = 4.7.0
Obsoletes:  mono-qt < 4.7.0
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
.NET/Mono bindings for the Qt4 libraries from the kdebindings Qyoto project.

%prep
%setup -q -n qyoto-%{version}
%patch1

%build
%cmake_kde4 -d build
%make_jobs

%install
cd build
%make_install

%package -n libqyoto2
License:GPL-2.0+
Summary:Mono bindings for Qt4 libraries
Group:  Development/Languages/Mono

%description -n libqyoto2
Shared library for the .NET/Mono bindings for the Qt4 libraries.

%package devel
License:GPL-2.0+
Summary:Development libraries for Mono-Qt4
Group:  Development/Languages/Mono
Requires:   %{name} = %{version}

%description devel
This package contains development files for the .NET/Mono bindings for the Qt4 
libraries.

%post -n libqyoto2 -p /sbin/ldconfig

%postun -n libqyoto2 -p /sbin/ldconfig

%files -n libqyoto2
%defattr(-,root,root)
%{_kde4_libdir}/libqyoto.so.*

%files
%defattr(-,root,root)
%dir %{_prefix}/lib/mono
%{_prefix}/lib/mono/qyoto/
%{_prefix}/lib/mono/gac/qt-dotnet/
%{_prefix}/lib/mono/gac/qtscript/
%{_prefix}/lib/mono/gac/qttest/
%{_prefix}/lib/mono/gac/qtuitools/
%{_prefix}/lib/mono/gac/qtwebkit/
%{_prefix}/lib/mono/gac/phonon/
%{_prefix}/lib/mono/gac/qscintilla/
%{_datadir}/qyoto/

%files devel
%defattr(-,root,root)
%{_kde4_bindir}/csrcc
%{_kde4_bindir}/uics
%{_includedir}/qyoto
%{_kde4_libdir}/pkgconfig/qyoto.pc
%{_kde4_libdir}/pkgconfig/qtwebkit-sharp.pc
%{_kde4_libdir}/pkgconfig/qttest-sharp.pc
%{_kde4_libdir}/pkgconfig/qtuitools-sharp.pc
%{_kde4_libdir}/pkgconfig/qtscript-sharp.pc
%{_kde4_libdir}/libqtscript-sharp.so
%{_kde4_libdir}/libphonon-sharp.so
%{_kde4_libdir}/libqyoto.so
%{_kde4_libdir}/libqttest-sharp.so
%{_kde4_libdir}/libqtuitools-sharp.so
%{_kde4_libdir}/libqtwebkit-sharp.so
%{_kde4_libdir}/libqscintilla-sharp.so
%{_datadir}/qyoto/cmake

%changelog
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.gI34uu/_old  2011-09-11 19:41:10.0 +0200
+++ /var/tmp/diff_new_pack.gI34uu/_new  2011-09-11 19:41:10.0 +0200
@@ -18,8 +18,8 @@
 
 
 Name:   mono-qt4
-Version:4.7.0
-Release:5
+Version:4.7.1
+Release:1
 License:GPL-2.0+
 Summary:Mono Qt4 kdebindings library
 Url:https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto

++ qyoto-4.7.0.tar.bz2 -> qyoto-4.7.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qyoto-4.7.0/src/delegateinvocation.h 
new/qyoto-4.7.1/src/delegateinvocation.h
--- old/qyoto-4.7.0/src/delegateinvocation.h2011-05-20 22:33:36.0 
+020

commit mono-qt4 for openSUSE:Factory

2011-08-29 Thread h_root

Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory
checked in at Mon Aug 29 17:10:13 CEST 2011.




--- mono-qt4/mono-qt4.changes   2011-07-28 17:49:51.0 +0200
+++ /mounts/work_src_done/STABLE/mono-qt4/mono-qt4.changes  2011-08-24 
13:16:23.0 +0200
@@ -1,0 +2,14 @@
+Wed Aug 24 11:08:39 UTC 2011 - idon...@novell.com
+
+- Change license to GPLv2+ per discussion in bnc #713721 
+
+---
+Thu Aug  4 08:33:11 UTC 2011 - toddrme2...@gmail.com
+   
+- Added qwt buildrequires
+- Changed buildrequires to support new libsmokegen-devel
+- Removed self-obsoletes (fix for RPMLINT warning)
+- Moved devel files to devel package (fix for RPMLINT warning)
+- Cleaned up spec file formatting.
+
+---

calling whatdependson for head-i586


New:

  qyoto-remove-examples.patch



Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.dpWeAr/_old  2011-08-29 17:09:25.0 +0200
+++ /var/tmp/diff_new_pack.dpWeAr/_new  2011-08-29 17:09:25.0 +0200
@@ -15,61 +15,63 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   mono-qt4
-BuildRequires:  kde4-filesystem
+Version:4.7.0
+Release:5
+License:GPL-2.0+
+Summary:Mono Qt4 kdebindings library
+Url:https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto
+Group:  Development/Languages/Mono
+Source0:qyoto-%{version}.tar.bz2
+Patch1: qyoto-remove-examples.patch
 BuildRequires:  cmake
-BuildRequires:  sqlite-devel
-BuildRequires:  libqimageblitz-devel
+BuildRequires:  kde4-filesystem
 BuildRequires:  libQtWebKit-devel
+BuildRequires:  libmono-2_0-devel
+BuildRequires:  libqimageblitz-devel
+BuildRequires:  libqscintilla-devel
+BuildRequires:  libsmokegen-devel
 BuildRequires:  libsmokeqt-devel
-BuildRequires:  mono-devel
 BuildRequires:  mono
-BuildRequires:  libmono-2_0-devel
+BuildRequires:  mono-devel
 BuildRequires:  phonon-devel
-BuildRequires:  kdebindings-smokegen
-BuildRequires:  libqscintilla-devel
-License:LGPL v2.1 or later
-Group:  Development/Languages/Mono
-Summary:Mono Qt4 kdebindings library
-Url:https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto
-Version:4.7.0
-Release:3
-Source0:qyoto-%version.tar.bz2
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  qwt-devel
+BuildRequires:  sqlite-devel
+Requires:   libqyoto2 = %{version}
 Provides:   mono-qt = 4.7.0
-Obsoletes:  mono-qt <= 4.7.0
-Requires:   libqyoto2 = %version
+Obsoletes:  mono-qt < 4.7.0
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 .NET/Mono bindings for the Qt4 libraries from the kdebindings Qyoto project.
 
 %prep
-%setup -q -n qyoto-%version
+%setup -q -n qyoto-%{version}
+%patch1
 
 %build
-  %cmake_kde4 -d build 
-  %make_jobs
+%cmake_kde4 -d build
+%make_jobs
 
 %install
-  cd build
-  %makeinstall
+cd build
+%make_install
 
 %package -n libqyoto2
-License:LGPLv2.1+
-Group:  Development/Languages/Mono
+License:GPL-2.0+
 Summary:Mono bindings for Qt4 libraries
+Group:  Development/Languages/Mono
 
 %description -n libqyoto2
 Shared library for the .NET/Mono bindings for the Qt4 libraries.
  
 %package devel
-License:LGPLv2.1+
-Group:  Development/Languages/Mono
+License:GPL-2.0+
 Summary:Development libraries for Mono-Qt4
-Requires:   %{name} = %version
+Group:  Development/Languages/Mono
+Requires:   %{name} = %{version}
 
 %description devel
 This package contains development files for the .NET/Mono bindings for the Qt4 
libraries.
@@ -80,40 +82,38 @@
 
 %files -n libqyoto2
 %defattr(-,root,root)
-%_kde4_libdir/libqyoto.so.*
+%{_kde4_libdir}/libqyoto.so.*
 
 %files 
 %defattr(-,root,root)
-%dir %_prefix/lib/mono
-%dir %_prefix/lib/mono/qyoto
-%_prefix/lib/mono/gac/qt-dotnet
-%_prefix/lib/mono/gac/qtscript
-%_prefix/lib/mono/gac/qttest
-%_prefix/lib/mono/gac/qtuitools
-%_prefix/lib/mono/gac/qtwebkit
-%_prefix/lib/mono/gac/phonon
-%_prefix/lib/mono/qyoto/q*.dll
-%_prefix/lib/mono/qyoto/phonon.dll
-%_kde4_libdir/libqtscript-sharp.so
-%_kde4_libdir/libphonon-sharp.so
-%_kde4_libdir/libqyoto.so
-%_kde4_libdir/libqttest-sharp.so
-%_kde4_libdir/libqtuitools-sharp.so
-%_kde4_libdir/libqtwebkit-sharp.so   
-%_kde4_libdir/libqscintilla-sharp.so
-/usr/lib/mono/gac/qscintilla/
-%_datadir/qyoto/
+%dir %{_prefix}/lib/mono
+%{_prefix}/lib/mono/qyoto/
+%{_prefix}/lib/mono/gac/qt-dotnet/
+%{_prefix}/lib/mono/gac/qtscript/
+%{_prefix}/lib/mono/gac/qttest/
+%{_prefix}/lib/mono/gac/qtuitools/
+%{_prefix}/lib/mono/gac/qtwebkit/
+%{_prefix}/lib/mono/gac/phonon

commit mono-qt4 for openSUSE:Factory

2011-07-29 Thread h_root

Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory
checked in at Fri Jul 29 09:56:39 CEST 2011.




--- mono-qt4/mono-qt4.changes   2011-07-22 20:31:04.0 +0200
+++ /mounts/work_src_done/STABLE/mono-qt4/mono-qt4.changes  2011-07-28 
17:49:51.0 +0200
@@ -1,0 +2,5 @@
+Thu Jul 28 17:49:39 CEST 2011 - dmuel...@suse.de
+
+- add provides/obsoletes on mono-qt
+
+---

calling whatdependson for head-i586




Other differences:
--
++ mono-qt4.spec ++
--- /var/tmp/diff_new_pack.duUll2/_old  2011-07-29 09:55:55.0 +0200
+++ /var/tmp/diff_new_pack.duUll2/_new  2011-07-29 09:55:55.0 +0200
@@ -36,9 +36,11 @@
 Summary:Mono Qt4 kdebindings library
 Url:https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto
 Version:4.7.0
-Release:1
+Release:3
 Source0:qyoto-%version.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Provides:   mono-qt = 4.7.0
+Obsoletes:  mono-qt <= 4.7.0
 Requires:   libqyoto2 = %version
 
 %description






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mono-qt4 for openSUSE:Factory

2011-07-27 Thread h_root

Hello community,

here is the log from the commit of package mono-qt4 for openSUSE:Factory
checked in at Wed Jul 27 18:23:48 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/mono-qt4/mono-qt4.changes  2011-07-22 
20:31:04.0 +0200
@@ -0,0 +1,1050 @@
+---
+Fri Jul 22 20:31:02 CEST 2011 - dmuel...@suse.de
+
+- update to 4.7.0
+  * Small fixes over KDE 4.7 RC2
+  *  see http://kde.org/announcements/4.7 for details
+  
+
+---
+Thu Jul 21 13:56:03 UTC 2011 - toddrme2...@gmail.com
+
+- Add QScintilla bindings
+
+---
+Thu Jul 21 10:39:34 UTC 2011 - toddrme2...@gmail.com
+
+- Rework summary (fix for RPMLINT warnings)
+- Rework description (fix for RPMLINT warnings)
+- change group (fix for RPMLINT warnings)
+- Add URL (fix for RPMLINT warning)
+
+---
+Sat Jul  9 10:04:22 CEST 2011 - dmuel...@suse.de
+
+- update to 4.6.95
+
+---
+Tue Jun 28 14:23:42 CEST 2011 - dmuel...@suse.de
+
+- update to 4.6.90
+
+---
+Sat May 21 00:59:59 CEST 2011 - dmuel...@suse.de
+
+- update to 4.6.80
+
+---
+Sun May  8 05:58:23 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110508
+
+---
+Mon May  2 16:10:31 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110502
+
+---
+Sat Apr 23 07:46:17 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110423
+
+---
+Wed Apr 20 16:10:38 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110420
+
+---
+Mon Apr 18 19:33:47 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110418
+
+---
+Sun Apr 10 14:55:23 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110410
+
+---
+Sun Apr  3 07:19:29 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110403
+
+---
+Fri Apr  1 14:18:58 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110401
+
+---
+Thu Mar 31 17:42:02 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110331
+
+---
+Wed Mar 30 17:31:53 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110330
+
+---
+Tue Mar 29 16:32:00 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110329
+
+---
+Mon Mar 28 14:14:57 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110328
+
+---
+Mon Mar 28 14:10:45 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110328
+
+---
+Thu Mar 24 18:59:22 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110324
+
+---
+Wed Mar 23 17:53:57 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110323
+
+---
+Mon Mar 21 19:04:02 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110321
+
+---
+Mon Mar 21 07:08:04 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110321
+
+---
+Sat Mar 19 16:06:38 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110319
+
+---
+Fri Mar 18 18:06:11 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110318
+
+---
+Thu Mar 17 17:36:04 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110317
+
+---
+Wed Mar 16 17:57:53 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110316
+
+---
+Tue Mar 15 12:01:29 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110315
+
+---
+Tue Mar 15 07:15:21 UTC 2011 - tittiat