commit perl-qt4 for openSUSE:Factory

2016-06-19 Thread h_root
Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory 
checked in at 2016-06-19 12:52:46

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


Package is "perl-qt4"

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2014-11-19 
20:27:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2016-06-19 
12:52:48.0 +0200
@@ -1,0 +2,5 @@
+Thu Jun 16 14:28:44 UTC 2016 - wba...@tmo.at
+
+- Added gcc6-fix.patch to fix build with gcc6 (boo#985188, kde#360844)
+
+---

New:

  gcc6-fix.patch



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.uOh6fS/_old  2016-06-19 12:52:49.0 +0200
+++ /var/tmp/diff_new_pack.uOh6fS/_new  2016-06-19 12:52:49.0 +0200
@@ -24,6 +24,8 @@
 Group:  Development/Languages/Perl
 Url:https://projects.kde.org/projects/kde/kdebindings/perl/perlqt
 Source0:perlqt-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM gcc6-fix.patch boo#985188, kde#360844 -- fix build with 
gcc6
+Patch:  gcc6-fix.patch
 BuildRequires:  cmake
 BuildRequires:  kde4-filesystem
 BuildRequires:  kdebindings-smokegen
@@ -53,6 +55,7 @@
 
 %prep
 %setup -q -n perlqt-%{version}
+%patch -p1
 
 %build
   EXTRA_FLAGS="-DCUSTOM_PERL_SITE_ARCH_DIR=`perl -MConfig -e 'print 
$Config{vendorarch}'`"

++ gcc6-fix.patch ++
>From 70100c1865985e0cabbba5716cb9a6df8099b377 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Tue, 22 Mar 2016 11:27:24 +0100
Subject: [PATCH] Initialize smokeperl_object properly
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

This patch fixes this build failure with GCC 6:

/builddir/build/BUILD/Qt-0.96.0/qtcore/src/util.cpp:2248:59: error: cannot 
convert 'bool' to 'void*' in initialization
 static smokeperl_object nothis = { 0, 0, 0, false };
   ^
CPAN RT#111630

Signed-off-by: Petr Písař 
---
 qtcore/src/util.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qtcore/src/util.cpp b/qtcore/src/util.cpp
index b913af3..4c94e2c 100644
--- a/qtcore/src/util.cpp
+++ b/qtcore/src/util.cpp
@@ -2251,7 +2251,7 @@ XS(XS_AUTOLOAD) {
 methcache.insert(mcid, new Smoke::ModuleIndex(mi));
 }
 
-static smokeperl_object nothis = { 0, 0, 0, false };
+static smokeperl_object nothis = { 0, 0, 0, NULL };
 smokeperl_object* call_this = 0;
 if ( SvOK(sv_this) ) {
 call_this = sv_obj_info( sv_this );
-- 
2.5.5




commit perl-qt4 for openSUSE:Factory

2014-11-19 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2014-10-16 
18:11:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2014-11-19 
20:27:59.0 +0100
@@ -1,0 +2,7 @@
+Sun Nov  9 20:28:44 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:

  perlqt-4.14.2.tar.xz

New:

  perlqt-4.14.3.tar.xz



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

++ perlqt-4.14.2.tar.xz - perlqt-4.14.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perlqt-4.14.2/qtcore/src/util.cpp 
new/perlqt-4.14.3/qtcore/src/util.cpp
--- old/perlqt-4.14.2/qtcore/src/util.cpp   2013-11-02 19:10:01.0 
+0100
+++ new/perlqt-4.14.3/qtcore/src/util.cpp   2014-11-04 23:59:39.0 
+0100
@@ -2047,7 +2047,7 @@
 PERL_SET_CONTEXT(PL_curinterp);
 // Figure out which package and method is being called, based on the
 // autoload variable
-SV* autoload = get_sv( Qt::AutoLoad::AUTOLOAD, TRUE );
+SV* autoload = sv_mortalcopy( get_sv( Qt::AutoLoad::AUTOLOAD, TRUE ) );
 char* package = SvPV_nolen( autoload );
 char* methodname = 0;
 // Splits off the method name from the package
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perlqt-4.14.2/qtgui/lib/QtGui4.pm 
new/perlqt-4.14.3/qtgui/lib/QtGui4.pm
--- old/perlqt-4.14.2/qtgui/lib/QtGui4.pm   2013-11-02 19:10:01.0 
+0100
+++ new/perlqt-4.14.3/qtgui/lib/QtGui4.pm   2014-11-04 23:59:39.0 
+0100
@@ -22,7 +22,6 @@
 
 use QtCore4;
 use base qw(Qt::_internal);
-use Devel::Peek qw( SvREFCNT_inc );
 
 sub init {
 @Qt::_internal::vectorTypes{qw(Qt::Polygon Qt::PolygonF Qt::ItemSelection)}
@@ -76,7 +75,7 @@
 }
 
 sub Qt::UndoCommand::ON_DESTROY {
-Devel::Peek::SvREFCNT_inc( Qt::this() );
+QtGui4::_internal-SvREFCNT_inc( Qt::this() );
 # XXX is there a better solution here?
 return 1;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perlqt-4.14.2/qtgui/src/QtGui4.xs 
new/perlqt-4.14.3/qtgui/src/QtGui4.xs
--- old/perlqt-4.14.2/qtgui/src/QtGui4.xs   2013-11-02 19:10:01.0 
+0100
+++ new/perlqt-4.14.3/qtgui/src/QtGui4.xs   2014-11-04 23:59:39.0 
+0100
@@ -102,6 +102,13 @@
 #define boot_QtGui4 boot_PerlQtGui4
 #endif
 
+SV*
+SvREFCNT_inc(sv)
+SV* sv
+PPCODE:
+RETVAL = SvREFCNT_inc(sv);
+PUSHs(RETVAL);
+
 MODULE = QtGui4PACKAGE = QtGui4
 
 PROTOTYPES: ENABLE

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



commit perl-qt4 for openSUSE:Factory

2014-10-16 Thread h_root
Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory 
checked in at 2014-10-16 18:11:39

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2014-09-18 
07:58:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2014-10-16 
18:11:55.0 +0200
@@ -1,0 +2,7 @@
+Sun Oct 12 12:01:21 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:

  perlqt-4.14.1.tar.xz

New:

  perlqt-4.14.2.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.hn4Y3c/_old  2014-10-16 18:11:57.0 +0200
+++ /var/tmp/diff_new_pack.hn4Y3c/_new  2014-10-16 18:11:57.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.14.1
+Version:4.14.2
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.14.1.tar.xz - perlqt-4.14.2.tar.xz ++

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



commit perl-qt4 for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2014-08-25 
10:58:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2014-09-18 
07:58:03.0 +0200
@@ -1,0 +2,7 @@
+Sat Sep 13 16:23:38 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:

  perlqt-4.14.0.tar.xz

New:

  perlqt-4.14.1.tar.xz



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

++ perlqt-4.14.0.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2014-08-25 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2014-07-16 
16:20:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2014-08-25 
10:58:41.0 +0200
@@ -1,0 +2,20 @@
+Fri Aug 15 08:26:18 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/
+
+---
+Tue Aug 12 21:17:12 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Move away from kde4-macros in filelist: perl-qt4 doesn't
+  use kdelibs4 buildsystem
+
+---
+Thu Jul 17 16:47:56 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:

  perlqt-4.13.80.tar.xz

New:

  perlqt-4.14.0.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.VVx2wF/_old  2014-08-25 10:58:42.0 +0200
+++ /var/tmp/diff_new_pack.VVx2wF/_new  2014-08-25 10:58:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.13.80
+Version:4.14.0
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+
@@ -68,9 +68,9 @@
 %defattr(-,root,root)
 %dir %{_datadir}/perlqt
 %{_datadir}/perlqt/doxsubpp.pl
-%{_kde4_bindir}/prcc4_bin
-%{_kde4_bindir}/puic4
-%{_kde4_bindir}/qdbusxml2perl
+%{_bindir}/prcc4_bin
+%{_bindir}/puic4
+%{_bindir}/qdbusxml2perl
 %{perl_vendorarch}/*.pm
 %{perl_vendorarch}/auto/*
 %{perl_vendorarch}/QtCore4/
@@ -78,6 +78,6 @@
 %files devel
 %defattr(-,root,root)
 %{_datadir}/perlqt/cmake/
-%{_kde4_includedir}/perlqt/
+%{_includedir}/perlqt/
 
 %changelog

++ perlqt-4.13.80.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2014-07-16 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2014-06-19 
13:15:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2014-07-16 
16:20:22.0 +0200
@@ -1,0 +2,7 @@
+Thu Jul 10 22:20:52 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:

  perlqt-4.13.2.tar.xz

New:

  perlqt-4.13.80.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.EDcCmc/_old  2014-07-16 16:20:23.0 +0200
+++ /var/tmp/diff_new_pack.EDcCmc/_new  2014-07-16 16:20:23.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.13.2
+Version:4.13.80
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.13.2.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2014-06-19 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2014-05-22 
06:49:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2014-06-19 
13:15:33.0 +0200
@@ -1,0 +2,7 @@
+Sun Jun  8 18:30:44 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:

  perlqt-4.13.1.tar.xz

New:

  perlqt-4.13.2.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.EIRWJq/_old  2014-06-19 13:15:35.0 +0200
+++ /var/tmp/diff_new_pack.EIRWJq/_new  2014-06-19 13:15:35.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.13.1
+Version:4.13.2
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.13.1.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2014-05-21 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2014-04-18 
12:37:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2014-05-22 
06:49:39.0 +0200
@@ -1,0 +2,7 @@
+Fri May  9 16:42:34 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:

  perlqt-4.13.0.tar.xz

New:

  perlqt-4.13.1.tar.xz



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

++ perlqt-4.13.0.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2014-03-30 
09:03:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2014-04-18 
12:37:00.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:45:55 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  perlqt-4.12.97.tar.xz

New:

  perlqt-4.13.0.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.fHAF5F/_old  2014-04-18 12:37:02.0 +0200
+++ /var/tmp/diff_new_pack.fHAF5F/_new  2014-04-18 12:37:02.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.12.97.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2014-03-30 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2014-03-18 
16:02:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2014-03-30 
09:03:38.0 +0200
@@ -1,0 +2,14 @@
+Thu Mar 27 17:39:48 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:05:52 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:

  perlqt-4.12.90.tar.xz

New:

  perlqt-4.12.97.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.XMad4m/_old  2014-03-30 09:09:03.0 +0200
+++ /var/tmp/diff_new_pack.XMad4m/_new  2014-03-30 09:09:03.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.12.90
+Version:4.12.97
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.12.90.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2014-03-18 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2014-02-20 
07:55:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2014-03-18 
16:02:29.0 +0100
@@ -1,0 +2,14 @@
+Thu Mar 13 20:10:33 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:19 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:

  perlqt-4.12.2.tar.xz

New:

  perlqt-4.12.90.tar.xz



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

++ perlqt-4.12.2.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2014-02-19 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2014-01-27 
11:14:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2014-02-20 
07:55:18.0 +0100
@@ -1,0 +2,7 @@
+Sat Feb  1 10:10:04 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:

  perlqt-4.12.1.tar.xz

New:

  perlqt-4.12.2.tar.xz



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

++ perlqt-4.12.1.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2014-01-27 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2013-12-19 
13:15:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2014-01-27 
11:14:43.0 +0100
@@ -1,0 +2,7 @@
+Sat Jan 11 15:35:19 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:

  perlqt-4.12.0.tar.xz

New:

  perlqt-4.12.1.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.oW6gmU/_old  2014-01-27 11:14:44.0 +0100
+++ /var/tmp/diff_new_pack.oW6gmU/_new  2014-01-27 11:14:44.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-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:   perl-qt4
-Version:4.12.0
+Version:4.12.1
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.12.0.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2013-12-19 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2013-12-11 
14:33:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2013-12-19 
13:15:38.0 +0100
@@ -1,0 +2,7 @@
+Sat Dec 14 18:02:49 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:

  perlqt-4.11.97.tar.xz

New:

  perlqt-4.12.0.tar.xz



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

++ perlqt-4.11.97.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2013-12-11 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2013-12-02 
12:31:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2013-12-11 
14:33:05.0 +0100
@@ -1,0 +2,14 @@
+Fri Nov 29 07:03:28 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:12 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:

  perlqt-4.11.90.tar.xz

New:

  perlqt-4.11.97.tar.xz



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

++ perlqt-4.11.90.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2013-12-02 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2013-10-03 
16:06:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2013-12-02 
12:31:28.0 +0100
@@ -1,0 +2,21 @@
+Sat Nov 16 17:51:06 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:08 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:05:49 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:

  perlqt-4.11.2.tar.xz

New:

  perlqt-4.11.90.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.p31TWl/_old  2013-12-02 12:31:29.0 +0100
+++ /var/tmp/diff_new_pack.p31TWl/_new  2013-12-02 12:31:29.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.11.2
+Version:4.11.90
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.11.2.tar.xz - perlqt-4.11.90.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perlqt-4.11.2/cmake/MacroProve.cmake 
new/perlqt-4.11.90/cmake/MacroProve.cmake
--- old/perlqt-4.11.2/cmake/MacroProve.cmake2013-06-28 19:16:25.0 
+0200
+++ new/perlqt-4.11.90/cmake/MacroProve.cmake   2013-11-02 19:10:01.0 
+0100
@@ -1,5 +1,5 @@
 
-MACRO( MACRO_PROVE _testname _path)
+FUNCTION( MACRO_PROVE _testname _path)
 
 if(WIN32)
 set(prove_cmd prove.bat)
@@ -20,4 +20,4 @@
 endif(_workingdir)
 
 add_test(${_testname} ${prove_cmd} ${prove_args} ${escaped_path})
-ENDMACRO( MACRO_PROVE _testname _path )
+ENDFUNCTION( MACRO_PROVE _testname _path )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perlqt-4.11.2/qtcore/lib/QtCore4.pm 
new/perlqt-4.11.90/qtcore/lib/QtCore4.pm
--- old/perlqt-4.11.2/qtcore/lib/QtCore4.pm 2013-06-28 19:16:25.0 
+0200
+++ new/perlqt-4.11.90/qtcore/lib/QtCore4.pm2013-11-02 19:10:01.0 
+0100
@@ -1301,12 +1301,15 @@
 
 foreach my $sp ('', ' ') {
 my $where = $sp . $perlClassName;
-installautoload($where);
-# Putting this in one package gives XS_AUTOLOAD one spot to look for
-# the autoload variable
-package Qt::AutoLoad;
-my $autosub = \{$where . '::_UTOLOAD'};
-Qt::_internal::installSub( $where.'::AUTOLOAD', sub{$autosub} );
+
+if (!exists {$where . '::AUTOLOAD'}) {
+installautoload($where);
+# Putting this in one package gives XS_AUTOLOAD one spot to look 
for
+# the autoload variable
+package Qt::AutoLoad;
+my $autosub = \{$where . '::_UTOLOAD'};
+Qt::_internal::installSub( $where.'::AUTOLOAD', sub{$autosub} );
+}
 }
 
 installSub($perlClassName\::NEW, sub {
@@ -1417,9 +1420,9 @@
 my $signals = $meta-{signals};
 my $slots = $meta-{slots};
 
-@{$classinfos} = () if !defined @{$classinfos};
-@{$signals} = () if !defined @{$signals};
-@{$slots} = () if !defined @{$slots};
+@{$classinfos} = () if !defined $classinfos;
+@{$signals} = () if !defined $signals;
+@{$slots} = () if !defined $slots;
 
 # Each entry in 'stringdata' corresponds to a string in the
 # qt_meta_stringdata_classname structure.
@@ -1646,6 +1649,8 @@
 use strict;
 use warnings;
 
+use Scalar::Util;
+
 # Called in the DESTROY method for all QObjects to see if they still have a
 # parent, and avoid deleting them if they do.
 sub Qt::Object::ON_DESTROY {
@@ -1805,67 +1810,91 @@
 });
 
 sub String {
-if ( @_ ) {
+if ( scalar @_ ) {
+if ( Scalar::Util::readonly( $_[0] ) ) {
+my $val = shift;
+return bless \$val, 'Qt::String';
+}
 return bless \shift, 'Qt::String';
-} else {
-return bless '', 'Qt::String';
 }
+return bless '', 'Qt::String';
 }
 
 sub CString {
-if ( @_ ) {
+if ( scalar @_ ) {
+if 

commit perl-qt4 for openSUSE:Factory

2013-10-03 Thread h_root
Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory 
checked in at 2013-10-03 16:06:36

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2013-09-09 
11:06:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2013-10-03 
16:06:37.0 +0200
@@ -1,0 +2,7 @@
+Sat Sep 28 15:07:56 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:

  perlqt-4.11.1.tar.xz

New:

  perlqt-4.11.2.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.8DGrSV/_old  2013-10-03 16:06:39.0 +0200
+++ /var/tmp/diff_new_pack.8DGrSV/_new  2013-10-03 16:06:39.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.11.1
+Version:4.11.2
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.11.1.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2013-09-09 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2013-08-16 
13:39:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2013-09-09 
11:06:52.0 +0200
@@ -1,0 +2,7 @@
+Sun Sep  1 09:58:51 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:

  perlqt-4.11.0.tar.xz

New:

  perlqt-4.11.1.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.BqlPGg/_old  2013-09-09 11:06:53.0 +0200
+++ /var/tmp/diff_new_pack.BqlPGg/_new  2013-09-09 11:06:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.11.0
+Version:4.11.1
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.11.0.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2013-08-16 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

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

Old:

  perlqt-4.10.97.tar.xz

New:

  perlqt-4.11.0.tar.xz



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

++ perlqt-4.10.97.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2013-07-30 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2013-07-22 
17:20:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2013-07-30 
16:08:08.0 +0200
@@ -1,0 +2,7 @@
+Thu Jul 25 23:38:16 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:

  perlqt-4.10.95.tar.xz

New:

  perlqt-4.10.97.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.9if0sA/_old  2013-07-30 16:08:09.0 +0200
+++ /var/tmp/diff_new_pack.9if0sA/_new  2013-07-30 16:08:09.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.10.95
+Version:4.10.97
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.10.95.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2013-07-22 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2013-07-08 
07:33:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2013-07-22 
17:20:53.0 +0200
@@ -1,0 +2,7 @@
+Mon Jul 15 08:14:24 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:

  perlqt-4.10.90.tar.xz

New:

  perlqt-4.10.95.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.GNH0h7/_old  2013-07-22 17:20:54.0 +0200
+++ /var/tmp/diff_new_pack.GNH0h7/_new  2013-07-22 17:20:54.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.10.90
+Version:4.10.95
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.10.90.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2013-07-07 Thread h_root
Hello community,

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

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2013-06-11 
09:36:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2013-07-08 
07:33:54.0 +0200
@@ -1,0 +2,14 @@
+Thu Jun 27 18:11:42 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:15:15 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:

  perlqt-4.10.4.tar.xz

New:

  perlqt-4.10.90.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.HdsSpj/_old  2013-07-08 07:33:55.0 +0200
+++ /var/tmp/diff_new_pack.HdsSpj/_new  2013-07-08 07:33:55.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.10.4
+Version:4.10.90
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.10.4.tar.xz - perlqt-4.10.90.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perlqt-4.10.4/CMakeLists.txt 
new/perlqt-4.10.90/CMakeLists.txt
--- old/perlqt-4.10.4/CMakeLists.txt2013-05-28 20:43:58.0 +0200
+++ new/perlqt-4.10.90/CMakeLists.txt   2013-06-10 20:51:56.0 +0200
@@ -14,7 +14,7 @@
   QtOpenGl QtScript QtSql QtSvg QtTest QtUiTools 
QtWebKit QtXml QtXmlPatterns
   Phonon Qwt QSci QImageBlitz)
   
-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 
${SMOKE_CMAKE_MODULE_DIR})
 include(MacroOptionalFindPackage)
 include(MacroOptionalAddBindings)
@@ -36,7 +36,11 @@
 add_definitions(-DDEBUG)
 
 include (FindPerlMore)
-set(CUSTOM_PERL_SITE_ARCH_DIR ${PERL_SITE_ARCH_DIR} CACHE DIR Custom 
installation directory for perl binary extension)
+string(LENGTH ${PERL_INSTALL_PREFIX} PERL_INSTALL_PREFIX_LEN)
+math(EXPR PERL_INSTALL_PREFIX_LEN ${PERL_INSTALL_PREFIX_LEN}+1)
+string(SUBSTRING ${PERL_SITE_ARCH_DIR} ${PERL_INSTALL_PREFIX_LEN} -1 
CUSTOM_PERL_SITE_ARCH_DIR)
+file(TO_NATIVE_PATH ${CMAKE_INSTALL_PREFIX}/${CUSTOM_PERL_SITE_ARCH_DIR} 
CUSTOM_PERL_SITE_ARCH_DIR)
+set(CUSTOM_PERL_SITE_ARCH_DIR ${CUSTOM_PERL_SITE_ARCH_DIR} CACHE DIR Custom 
installation directory for perl binary extension)
 
 # the RPATH to be used when installing, but only if it's not a system directory
 GET_FILENAME_COMPONENT(SMOKE_LIB_DIR ${SMOKE_BASE_LIBRARY} PATH)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perlqt-4.10.4/cmake/FindPerlMore.cmake 
new/perlqt-4.10.90/cmake/FindPerlMore.cmake
--- old/perlqt-4.10.4/cmake/FindPerlMore.cmake  2013-05-28 20:43:58.0 
+0200
+++ new/perlqt-4.10.90/cmake/FindPerlMore.cmake 2013-06-10 20:51:56.0 
+0200
@@ -41,6 +41,9 @@
EXECUTE_PROCESS(COMMAND ${PERL_EXECUTABLE} -MConfig -e print 
\$Config{perllibs}
OUTPUT_VARIABLE PERL_LIBS)
 
+   EXECUTE_PROCESS(COMMAND ${PERL_EXECUTABLE} -MConfig -e print 
\$Config{prefix}
+   OUTPUT_VARIABLE PERL_INSTALL_PREFIX)
+
FIND_PATH(PERL_INCLUDE_PATH 
NAMES perl.h
PATHS ${PERL_ARCH_LIB_DIR}/CORE

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



commit perl-qt4 for openSUSE:Factory

2013-06-11 Thread h_root
Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory 
checked in at 2013-06-11 06:08:37

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2013-05-16 
18:13:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2013-06-11 
09:36:14.0 +0200
@@ -1,0 +2,8 @@
+Sat Jun  1 09:30:39 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:

  perlqt-4.10.3.tar.xz

New:

  perlqt-4.10.4.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.MSyGUB/_old  2013-06-11 09:36:15.0 +0200
+++ /var/tmp/diff_new_pack.MSyGUB/_new  2013-06-11 09:36:15.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.10.3
+Version:4.10.4
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.10.3.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2013-05-16 Thread h_root
Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory 
checked in at 2013-05-16 18:13:42

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


Package is perl-qt4

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2013-04-10 
20:26:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2013-05-16 
18:13:44.0 +0200
@@ -1,0 +2,8 @@
+Sat May  4 16:54:15 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:

  perlqt-4.10.2.tar.xz

New:

  perlqt-4.10.3.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.wx7uRm/_old  2013-05-16 18:13:44.0 +0200
+++ /var/tmp/diff_new_pack.wx7uRm/_new  2013-05-16 18:13:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.10.2
+Version:4.10.3
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.10.2.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2013-04-10 Thread h_root
Hello community,

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

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


Package is perl-qt4, Maintainer is 

Changes:

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

Old:

  perlqt-4.10.1.tar.xz

New:

  perlqt-4.10.2.tar.xz



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

++ perlqt-4.10.1.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2013-03-14 Thread h_root
Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory 
checked in at 2013-03-14 15:00:05

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


Package is perl-qt4, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2013-02-04 
21:00:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2013-03-14 
15:00:07.0 +0100
@@ -1,0 +2,7 @@
+Sat Mar  2 15:35:42 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.1
+ * Contains bug fixes. See http://www.kde.org/announcements/ 
+   for more information 
+
+---

Old:

  perlqt-4.10.0.tar.xz

New:

  perlqt-4.10.1.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.UNSzfq/_old  2013-03-14 15:00:08.0 +0100
+++ /var/tmp/diff_new_pack.UNSzfq/_new  2013-03-14 15:00:08.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.10.0
+Version:4.10.1
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+

++ perlqt-4.10.0.tar.xz - perlqt-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 perl-qt4 for openSUSE:Factory

2013-01-19 Thread h_root
Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory 
checked in at 2013-01-19 16:39:06

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


Package is perl-qt4, Maintainer is 

Changes:

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

Old:

  perlqt-4.9.97.tar.xz

New:

  perlqt-4.9.98.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.df6o2S/_old  2013-01-19 16:39:10.0 +0100
+++ /var/tmp/diff_new_pack.df6o2S/_new  2013-01-19 16:39:10.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.9.97
+Version:4.9.98
 Release:0
 Summary:PerlQt 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 perl-qt4 for openSUSE:Factory

2013-01-07 Thread h_root
Hello community,

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

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


Package is perl-qt4, Maintainer is 

Changes:

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

Old:

  perlqt-4.9.95.tar.xz

New:

  perlqt-4.9.97.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.fnTuEZ/_old  2013-01-07 11:07:21.0 +0100
+++ /var/tmp/diff_new_pack.fnTuEZ/_new  2013-01-07 11:07:21.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-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:   perl-qt4
-Version:4.9.95
+Version:4.9.97
 Release:0
 Summary:PerlQt 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 perl-qt4 for openSUSE:Factory

2012-12-21 Thread h_root
Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory 
checked in at 2012-12-21 09:19:06

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


Package is perl-qt4, Maintainer is 

Changes:

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

Old:

  perlqt-4.9.90.tar.xz

New:

  perlqt-4.9.95.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.012wCx/_old  2012-12-21 09:19:10.0 +0100
+++ /var/tmp/diff_new_pack.012wCx/_new  2012-12-21 09:19:10.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.9.90
+Version:4.9.95
 Release:0
 Summary:PerlQt 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 perl-qt4 for openSUSE:Factory

2012-12-07 Thread h_root
Hello community,

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

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


Package is perl-qt4, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2012-11-08 
07:47:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2012-12-07 
14:44:55.0 +0100
@@ -1,0 +2,18 @@
+Sat Dec  1 20:02:30 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.90
+ * This is the second Beta release for 4.10. Contains bugfixes 
+
+---
+Sun Nov 25 22:38:58 UTC 2012 - nico.kru...@gmail.com
+
+- Fix the SLES build (%make_install is not expanded on SLES)
+- Fix auto directory is included 
+
+---
+Sat Nov 24 12:50:38 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.80
+  * See http://www.kde.org/announcements/announce-4.10-beta1.php
+
+---
@@ -5 +23 @@
-  * see http://kde.org/announcements/4.9.3/ for details
+  * see http://kde.org/announcements/announce-4.9.3.php for details
@@ -11 +29 @@
-  * see http://kde.org/announcements/4.9.2/ for details
+  * see http://kde.org/announcements/announce-4.9.2.php for details

Old:

  perlqt-4.9.3.tar.xz

New:

  perlqt-4.9.90.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.S8bJo0/_old  2012-12-07 14:44:56.0 +0100
+++ /var/tmp/diff_new_pack.S8bJo0/_new  2012-12-07 14:44:56.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.9.3
+Version:4.9.90
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+
@@ -61,8 +61,8 @@
 
 %install
   cd build
-%make_install
-%perl_process_packlist
+  make DESTDIR=%{buildroot} install
+  %perl_process_packlist
 
 %files
 %defattr(-,root,root)
@@ -72,7 +72,7 @@
 %{_kde4_bindir}/puic4
 %{_kde4_bindir}/qdbusxml2perl
 %{perl_vendorarch}/*.pm
-%{perl_vendorarch}/auto/
+%{perl_vendorarch}/auto/*
 %{perl_vendorarch}/QtCore4/
 
 %files devel

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



commit perl-qt4 for openSUSE:Factory

2012-11-07 Thread h_root
Hello community,

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

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


Package is perl-qt4, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2012-10-07 
19:54:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2012-11-08 
07:47:34.0 +0100
@@ -1,0 +2,6 @@
+Fri Nov  2 16:48:50 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.3
+  * see http://kde.org/announcements/4.9.3/ for details
+
+---

Old:

  perlqt-4.9.2.tar.xz

New:

  perlqt-4.9.3.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.r2THXY/_old  2012-11-08 07:47:35.0 +0100
+++ /var/tmp/diff_new_pack.r2THXY/_new  2012-11-08 07:47:35.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.9.2
+Version:4.9.3
 Release:0
 Summary:PerlQt 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 perl-qt4 for openSUSE:Factory

2012-10-07 Thread h_root
Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory 
checked in at 2012-10-07 19:54:53

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


Package is perl-qt4, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2012-09-11 
07:59:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2012-10-07 
19:54:55.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 29 09:56:12 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.2
+  * see http://kde.org/announcements/4.9.2/ for details
+
+---

Old:

  perlqt-4.9.1.tar.xz

New:

  perlqt-4.9.2.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.i9bbJq/_old  2012-10-07 19:54:56.0 +0200
+++ /var/tmp/diff_new_pack.i9bbJq/_new  2012-10-07 19:54:56.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.9.1
+Version:4.9.2
 Release:0
 Summary:PerlQt 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 perl-qt4 for openSUSE:Factory

2012-09-11 Thread h_root
Hello community,

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

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


Package is perl-qt4, Maintainer is 

Changes:

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

Old:

  perlqt-4.8.5.tar.xz

New:

  perlqt-4.9.1.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.uZzLp3/_old  2012-09-11 07:59:57.0 +0200
+++ /var/tmp/diff_new_pack.uZzLp3/_new  2012-09-11 07:59:57.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.8.5
+Version:4.9.1
 Release:0
 Summary:PerlQt 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 perl-qt4 for openSUSE:Factory

2012-08-07 Thread h_root
Hello community,

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

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


Package is perl-qt4, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2012-06-12 
21:45:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2012-08-07 
21:34:01.0 +0200
@@ -1,0 +2,6 @@
+Mon Jul 30 17:01:05 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:

  perlqt-4.8.4.tar.xz

New:

  perlqt-4.8.5.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.Cg1xVy/_old  2012-08-07 21:34:03.0 +0200
+++ /var/tmp/diff_new_pack.Cg1xVy/_new  2012-08-07 21:34:03.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.8.4
+Version:4.8.5
 Release:0
 Summary:PerlQt 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 perl-qt4 for openSUSE:Factory

2012-06-12 Thread h_root
Hello community,

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

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


Package is perl-qt4, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2012-05-09 
18:32:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2012-06-12 
21:45:58.0 +0200
@@ -1,0 +2,6 @@
+Fri Jun  1 14:02:14 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:

  perlqt-4.8.3.tar.xz

New:

  perlqt-4.8.4.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.bslgxW/_old  2012-06-12 21:45:59.0 +0200
+++ /var/tmp/diff_new_pack.bslgxW/_new  2012-06-12 21:45:59.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.8.3
+Version:4.8.4
 Release:0
 Summary:PerlQt 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 perl-qt4 for openSUSE:Factory

2012-05-09 Thread h_root
Hello community,

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

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


Package is perl-qt4, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2012-04-12 
09:45:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2012-05-09 
18:32:50.0 +0200
@@ -1,0 +2,6 @@
+Sun Apr 29 20:53:50 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:

  perlqt-4.8.2.tar.xz

New:

  perlqt-4.8.3.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.7DtKQE/_old  2012-05-09 18:32:51.0 +0200
+++ /var/tmp/diff_new_pack.7DtKQE/_new  2012-05-09 18:32:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-qt4
-Version:4.8.2
+Version:4.8.3
 Release:0
 Summary:PerlQt 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 perl-qt4 for openSUSE:Factory

2012-04-12 Thread h_root
Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory 
checked in at 2012-04-12 09:45:26

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


Package is perl-qt4, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2012-03-13 
09:38:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2012-04-12 
09:45:30.0 +0200
@@ -1,0 +2,6 @@
+Fri Mar 30 01:23:38 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:

  perlqt-4.8.1.tar.bz2

New:

  perlqt-4.8.2.tar.xz



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.TNA2Kg/_old  2012-04-12 09:45:31.0 +0200
+++ /var/tmp/diff_new_pack.TNA2Kg/_new  2012-04-12 09:45:31.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   perl-qt4
-Version:4.8.1
+Version:4.8.2
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+
 Group:  Development/Languages/Perl
 Url:https://projects.kde.org/projects/kde/kdebindings/perl/perlqt
-Source0:perlqt-%{version}.tar.bz2
+Source0:perlqt-%{version}.tar.xz
 BuildRequires:  cmake
 BuildRequires:  kde4-filesystem
 BuildRequires:  kdebindings-smokegen
@@ -36,6 +36,7 @@
 BuildRequires:  phonon-devel
 BuildRequires:  qwt-devel
 BuildRequires:  sqlite-devel
+BuildRequires:  xz
 Requires:   perl = %{perl_version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

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



commit perl-qt4 for openSUSE:Factory

2012-03-13 Thread h_root
Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory 
checked in at 2012-03-13 09:38:21

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


Package is perl-qt4, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2012-01-31 
10:21:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2012-03-13 
09:38:28.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:26:45 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:

  perlqt-4.8.0-fix_qwt_cmake.patch
  perlqt-4.8.0.tar.bz2

New:

  perlqt-4.8.1.tar.bz2



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.yA5jPo/_old  2012-03-13 09:38:29.0 +0100
+++ /var/tmp/diff_new_pack.yA5jPo/_new  2012-03-13 09:38:29.0 +0100
@@ -15,15 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   perl-qt4
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:PerlQt kdebindings library
 License:GPL-2.0+
 Group:  Development/Languages/Perl
 Url:https://projects.kde.org/projects/kde/kdebindings/perl/perlqt
 Source0:perlqt-%{version}.tar.bz2
-Patch0: perlqt-4.8.0-fix_qwt_cmake.patch
 BuildRequires:  cmake
 BuildRequires:  kde4-filesystem
 BuildRequires:  kdebindings-smokegen
@@ -52,7 +52,6 @@
 
 %prep
 %setup -q -n perlqt-%{version}
-%patch0
 
 %build
   EXTRA_FLAGS=-DCUSTOM_PERL_SITE_ARCH_DIR=`perl -MConfig -e 'print 
$Config{vendorarch}'`

++ perlqt-4.8.0.tar.bz2 - perlqt-4.8.1.tar.bz2 ++
 2879 lines of diff (skipped)

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



commit perl-qt4 for openSUSE:Factory

2012-01-27 Thread h_root
Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory 
checked in at 2012-01-27 15:23:10

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


Package is perl-qt4, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2011-12-08 
11:30:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2012-01-27 
15:23:11.0 +0100
@@ -1,0 +2,16 @@
+Wed Jan 18 21:00:53 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:34:56 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:

  perlqt-4.7.4.tar.bz2

New:

  perlqt-4.8.0.tar.bz2



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.TBVcv2/_old  2012-01-27 15:23:12.0 +0100
+++ /var/tmp/diff_new_pack.TBVcv2/_new  2012-01-27 15:23:12.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-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
@@ -16,14 +16,13 @@
 #
 
 
-
 Name:   perl-qt4
-Version:4.7.4
-Release:1
-License:GPL-2.0+
+Version:4.8.0
+Release:0
 Summary:PerlQt kdebindings library
-Url:https://projects.kde.org/projects/kde/kdebindings/perl/perlqt
+License:GPL-2.0+
 Group:  Development/Languages/Perl
+Url:https://projects.kde.org/projects/kde/kdebindings/perl/perlqt
 Source0:perlqt-%{version}.tar.bz2
 BuildRequires:  cmake
 BuildRequires:  kde4-filesystem
@@ -44,7 +43,6 @@
 Perl bindings for the Qt4 libraries from the kdebindings project.
 
 %package devel
-License:GPL-2.0+
 Summary:Development libraries for Perl-Qt4
 Group:  Development/Languages/Perl
 Requires:   %{name} = %{version}

++ perlqt-4.7.4.tar.bz2 - perlqt-4.8.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perlqt-4.7.4/INSTALL new/perlqt-4.8.0/INSTALL
--- old/perlqt-4.7.4/INSTALL2011-06-22 18:34:24.0 +0200
+++ new/perlqt-4.8.0/INSTALL2011-07-27 20:37:34.0 +0200
@@ -1,9 +1,9 @@
 PerlQt version 0.96
 ===
 
-For simple install instructions, see the README file.
+For simple installation instructions, see the README file.
 
-This module uses cmake for it's build system.  If you don't have it, you can
+This module uses cmake for its build system.  If you don't have it, you can
 download the most recent version at
 http://www.cmake.org/cmake/resources/software.html
 
@@ -16,14 +16,16 @@
 source tree if you use an out-of-source build, as described below.
 
 === CMake ===
-First, I recommend building the module in it's own directory.  Type:
+First, I recommend building the module in its own directory.  Type:
 mkdir build
 cd build
 
 cmake provides a nice 'GUI'ish interface to view compile time options.  To view
-this, type:
+this, type either:
+cmake-gui ..
+
+Or if it's not available:
 ccmake ..
-c
 
 Once that finishes, exit with 'q', and type:
 cmake ..
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/perlqt-4.7.4/qtcore/tools/puic/perl/plwritedeclaration.cpp 
new/perlqt-4.8.0/qtcore/tools/puic/perl/plwritedeclaration.cpp
--- old/perlqt-4.7.4/qtcore/tools/puic/perl/plwritedeclaration.cpp  
2011-06-22 18:34:24.0 +0200
+++ new/perlqt-4.8.0/qtcore/tools/puic/perl/plwritedeclaration.cpp  
2011-07-27 20:37:34.0 +0200
@@ -102,64 +102,23 @@
 m_output  m_option.indent  @  connection  Connection = 
Qt::SqlDatabase.new\n;
 }
 
-TreeWalker::acceptWidget(node-elementWidget());
-
-m_output  \n;
-
-WriteInitialization(m_uic).acceptUI(node);
-
-/*
 if (node-elementImages()) {
 WriteIconDeclaration(m_uic).acceptUI(node);
 
-m_output  m_option.indent  m_option.indent  unknown_ID = 
- node-elementImages()-elementImage().size()  \n
- m_option.indent  \n;
-
-WriteIconInitialization(m_uic).acceptUI(node);
+m_output  use constant unknown_ID = 
+ 

commit perl-qt4 for openSUSE:Factory

2011-12-08 Thread h_root
Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory 
checked in at 2011-12-08 11:30:50

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


Package is perl-qt4, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2011-11-16 
17:22:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2011-12-08 
11:30:51.0 +0100
@@ -1,0 +2,6 @@
+Fri Dec  2 02:02:50 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:

  perlqt-4.7.3.tar.bz2

New:

  perlqt-4.7.4.tar.bz2



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.0CyFX5/_old  2011-12-08 11:30:54.0 +0100
+++ /var/tmp/diff_new_pack.0CyFX5/_new  2011-12-08 11:30:54.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   perl-qt4
-Version:4.7.3
+Version:4.7.4
 Release:1
 License:GPL-2.0+
 Summary:PerlQt kdebindings library

++ perlqt-4.7.3.tar.bz2 - perlqt-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 perl-qt4 for openSUSE:Factory

2011-11-16 Thread h_root
Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory 
checked in at 2011-11-16 17:20:40

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


Package is perl-qt4, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes2011-10-11 
17:04:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes   2011-11-16 
17:22:00.0 +0100
@@ -1,0 +2,6 @@
+Wed Nov  2 20:35:33 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:

  perlqt-4.7.2.tar.bz2

New:

  perlqt-4.7.3.tar.bz2



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.0LupeV/_old  2011-11-16 17:22:03.0 +0100
+++ /var/tmp/diff_new_pack.0LupeV/_new  2011-11-16 17:22:03.0 +0100
@@ -15,8 +15,10 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+
 Name:   perl-qt4
-Version:4.7.2
+Version:4.7.3
 Release:1
 License:GPL-2.0+
 Summary:PerlQt kdebindings library

++ perlqt-4.7.2.tar.bz2 - perlqt-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 perl-qt4 for openSUSE:Factory

2011-10-11 Thread h_root

Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory
checked in at Tue Oct 11 17:04:51 CEST 2011.




--- openSUSE:Factory/perl-qt4/perl-qt4.changes  2011-10-06 16:45:19.0 
+0200
+++ /mounts/work_src_done/STABLE/perl-qt4/perl-qt4.changes  2011-10-08 
17:52:12.0 +0200
@@ -1,0 +2,7 @@
+Sat Oct  8 17:51:12 UTC 2011 - toddrme2...@gmail.com
+
+- Cleaned up spec file formatting
+- Added recommended %perl_process_packlist macro
+- Added qwt buildrequires for qwt bindings
+
+---

calling whatdependson for head-i586




Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.Ik9Kna/_old  2011-10-11 17:04:45.0 +0200
+++ /var/tmp/diff_new_pack.Ik9Kna/_new  2011-10-11 17:04:45.0 +0200
@@ -15,8 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   perl-qt4
 Version:4.7.2
 Release:1
@@ -35,6 +33,7 @@
 BuildRequires:  libsmokeqt-devel
 BuildRequires:  perl
 BuildRequires:  phonon-devel
+BuildRequires:  qwt-devel
 BuildRequires:  sqlite-devel
 Requires:   perl = %{perl_version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -42,6 +41,15 @@
 %description
 Perl bindings for the Qt4 libraries from the kdebindings project.
 
+%package devel
+License:GPL-2.0+
+Summary:Development libraries for Perl-Qt4
+Group:  Development/Languages/Perl
+Requires:   %{name} = %{version}
+
+%description devel
+This package contains development files for the Perl bindings for the Qt4 
libraries.
+
 %prep
 %setup -q -n perlqt-%{version}
 
@@ -53,30 +61,22 @@
 %install
   cd build
 %make_install
+%perl_process_packlist
 
 %files
 %defattr(-,root,root)
 %dir %{_datadir}/perlqt
-%_kde4_bindir/prcc4_bin
-%_kde4_bindir/puic4
-%_kde4_bindir/qdbusxml2perl
 %{_datadir}/perlqt/doxsubpp.pl
-%{_prefix}/lib/perl5/vendor_perl/*/*/*.pm
-%{_prefix}/lib/perl5/vendor_perl/*/*/auto/
-%{_prefix}/lib/perl5/vendor_perl/*/*/QtCore4/
-
-%package devel
-License:GPL-2.0+
-Summary:Development libraries for Perl-Qt4
-Group:  Development/Languages/Perl
-Requires:   %{name} = %{version}
-
-%description devel
-This package contains development files for the Perl bindings for the Qt4 
libraries.
+%{_kde4_bindir}/prcc4_bin
+%{_kde4_bindir}/puic4
+%{_kde4_bindir}/qdbusxml2perl
+%{perl_vendorarch}/*.pm
+%{perl_vendorarch}/auto/
+%{perl_vendorarch}/QtCore4/
 
 %files devel
 %defattr(-,root,root)
-%{_includedir}/perlqt/
 %{_datadir}/perlqt/cmake/
+%{_kde4_includedir}/perlqt/
 
 %changelog

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 perl-qt4 for openSUSE:Factory

2011-10-06 Thread h_root

Hello community,

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




--- openSUSE:Factory/perl-qt4/perl-qt4.changes  2011-09-23 12:39:38.0 
+0200
+++ /mounts/work_src_done/STABLE/perl-qt4/perl-qt4.changes  2011-10-02 
17:35:07.0 +0200
@@ -1,0 +2,6 @@
+Sun Oct  2 17:32:39 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:

  perlqt-4.7.1.tar.bz2

New:

  perlqt-4.7.2.tar.bz2



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

++ perlqt-4.7.1.tar.bz2 - perlqt-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 perl-qt4 for openSUSE:Factory

2011-09-07 Thread h_root

Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory
checked in at Wed Sep 7 17:57:39 CEST 2011.




--- perl-qt4/perl-qt4.changes   2011-08-24 13:22:56.0 +0200
+++ /mounts/work_src_done/STABLE/perl-qt4/perl-qt4.changes  2011-09-07 
14:51:53.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep  1 23:31:23 CEST 2011 - dmuel...@suse.de
+
+- update to 4.7.1
+  * 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


Old:

  perlqt-4.7.0.tar.bz2

New:

  perlqt-4.7.1.tar.bz2



Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.f8AwI0/_old  2011-09-07 17:57:34.0 +0200
+++ /var/tmp/diff_new_pack.f8AwI0/_new  2011-09-07 17:57:34.0 +0200
@@ -18,8 +18,8 @@
 
 
 Name:   perl-qt4
-Version:4.7.0
-Release:3
+Version:4.7.1
+Release:1
 License:GPL-2.0+
 Summary:PerlQt kdebindings library
 Url:https://projects.kde.org/projects/kde/kdebindings/perl/perlqt

++ perlqt-4.7.0.tar.bz2 - perlqt-4.7.1.tar.bz2 ++






Remember to have fun...

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



commit perl-qt4 for openSUSE:Factory

2011-08-25 Thread h_root

Hello community,

here is the log from the commit of package perl-qt4 for openSUSE:Factory
checked in at Thu Aug 25 10:32:20 CEST 2011.




--- perl-qt4/perl-qt4.changes   2011-07-22 20:30:23.0 +0200
+++ /mounts/work_src_done/STABLE/perl-qt4/perl-qt4.changes  2011-08-24 
13:22:56.0 +0200
@@ -1,0 +2,10 @@
+Wed Aug 24 11:21:31 UTC 2011 - idon...@novell.com
+
+- Set package license to GPLv2+ per discussion in bnc #713969 
+
+---
+Sun Aug 21 12:59:19 UTC 2011 - idon...@novell.com
+
+- Depend on libsmokegen-devel 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ perl-qt4.spec ++
--- /var/tmp/diff_new_pack.AKAsZA/_old  2011-08-25 10:27:44.0 +0200
+++ /var/tmp/diff_new_pack.AKAsZA/_new  2011-08-25 10:27:44.0 +0200
@@ -15,35 +15,35 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   perl-qt4
-BuildRequires:  kde4-filesystem
+Version:4.7.0
+Release:3
+License:GPL-2.0+
+Summary:PerlQt kdebindings library
+Url:https://projects.kde.org/projects/kde/kdebindings/perl/perlqt
+Group:  Development/Languages/Perl
+Source0:perlqt-%{version}.tar.bz2
 BuildRequires:  cmake
-BuildRequires:  sqlite-devel
-BuildRequires:  libqimageblitz-devel
+BuildRequires:  kde4-filesystem
+BuildRequires:  kdebindings-smokegen
 BuildRequires:  libQtWebKit-devel
+BuildRequires:  libqimageblitz-devel
+BuildRequires:  libqscintilla-devel
+BuildRequires:  libsmokegen-devel
 BuildRequires:  libsmokeqt-devel
-BuildRequires:  phonon-devel
-BuildRequires:  kdebindings-smokegen
 BuildRequires:  perl
-BuildRequires:  libqscintilla-devel
+BuildRequires:  phonon-devel
+BuildRequires:  sqlite-devel
 Requires:   perl = %{perl_version}
-License:LGPL v2.1 or later
-Group:  Development/Languages/Perl
-Summary:PerlQt kdebindings library
-Url:https://projects.kde.org/projects/kde/kdebindings/perl/perlqt
-Version:4.7.0
-Release:1
-Source0:perlqt-%version.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Perl bindings for the Qt4 libraries from the kdebindings project.
 
 %prep
-%setup -q -n perlqt-%version
+%setup -q -n perlqt-%{version}
 
 %build
   EXTRA_FLAGS=-DCUSTOM_PERL_SITE_ARCH_DIR=`perl -MConfig -e 'print 
$Config{vendorarch}'`
@@ -52,23 +52,23 @@
 
 %install
   cd build
-  %makeinstall
+%make_install
 
 %files 
 %defattr(-,root,root)
-%dir %_datadir/perlqt
+%dir %{_datadir}/perlqt
 %_kde4_bindir/prcc4_bin
 %_kde4_bindir/puic4
 %_kde4_bindir/qdbusxml2perl
-%_datadir/perlqt/doxsubpp.pl
-%_prefix/lib/perl5/vendor_perl/*/*/*.pm
-%_prefix/lib/perl5/vendor_perl/*/*/auto/
-%_prefix/lib/perl5/vendor_perl/*/*/QtCore4/
+%{_datadir}/perlqt/doxsubpp.pl
+%{_prefix}/lib/perl5/vendor_perl/*/*/*.pm
+%{_prefix}/lib/perl5/vendor_perl/*/*/auto/
+%{_prefix}/lib/perl5/vendor_perl/*/*/QtCore4/
 
 %package devel
-License:LGPL v2.1 or later
-Group:  Development/Languages/Perl
+License:GPL-2.0+
 Summary:Development libraries for Perl-Qt4
+Group:  Development/Languages/Perl
 Requires:   %{name} = %{version}
 
 %description devel
@@ -76,7 +76,7 @@
  
 %files devel
 %defattr(-,root,root)
-/usr/include/perlqt/
-%_datadir/perlqt/cmake/
+%{_includedir}/perlqt/
+%{_datadir}/perlqt/cmake/
 
 %changelog






Remember to have fun...

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



commit perl-qt4 for openSUSE:Factory

2011-07-27 Thread h_root

Hello community,

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




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/perl-qt4/perl-qt4.changes  2011-07-22 
20:30:23.0 +0200
@@ -0,0 +1,1041 @@
+---
+Fri Jul 22 20:30:21 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)
+- Add Perl dependency (fix for RPMLINT warning)
+
+---
+Sat Jul  9 10:03:42 CEST 2011 - dmuel...@suse.de
+
+- update to 4.6.95
+
+---
+Tue Jun 28 14:23:03 CEST 2011 - dmuel...@suse.de
+
+- update to 4.6.90
+
+---
+Sat May 21 00:59:16 CEST 2011 - dmuel...@suse.de
+
+- update to 4.6.80
+
+---
+Sun May  8 05:57:57 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110508
+
+---
+Mon May  2 16:09:58 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110502
+
+---
+Sat Apr 23 07:45:52 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110423
+
+---
+Wed Apr 20 16:10:06 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110420
+
+---
+Mon Apr 18 19:33:19 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110418
+
+---
+Sun Apr 10 14:54:46 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110410
+
+---
+Sun Apr  3 07:19:08 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110403
+
+---
+Fri Apr  1 14:18:29 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110401
+
+---
+Thu Mar 31 17:41:35 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110331
+
+---
+Wed Mar 30 17:30:33 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110330
+
+---
+Tue Mar 29 16:31:30 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110329
+
+---
+Mon Mar 28 13:59:54 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110328
+
+---
+Thu Mar 24 18:58:52 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110324
+
+---
+Wed Mar 23 17:53:28 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110323
+
+---
+Mon Mar 21 19:02:52 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110321
+
+---
+Mon Mar 21 07:07:38 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110321
+
+---
+Sat Mar 19 16:06:10 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110319
+
+---
+Fri Mar 18 18:04:38 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110318
+
+---
+Thu Mar 17 17:34:33 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110317
+
+---
+Wed Mar 16 17:57:12 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110316
+
+---
+Tue Mar 15 12:00:58 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110315
+
+---
+Tue Mar 15 07:14:42 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 4.6.41_20110315
+