Hello community,

here is the log from the commit of package qt4-qtscript for openSUSE:Factory 
checked in at 2012-01-30 12:28:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qt4-qtscript (Old)
 and      /work/SRC/openSUSE:Factory/.qt4-qtscript.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qt4-qtscript", Maintainer is "[email protected]"

Changes:
--------
New Changes file:

--- /dev/null   2010-08-26 16:28:41.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.qt4-qtscript.new/qt4-qtscript.changes   
2012-01-30 12:28:31.000000000 +0100
@@ -0,0 +1,34 @@
+-------------------------------------------------------------------
+Thu Jan 26 12:55:40 UTC 2012 - [email protected]
+
+- Fix license to be SUSE-LGPL-2.1-with-nokia-exception-1.1
+
+-------------------------------------------------------------------
+Thu Jan 26 11:01:39 UTC 2012 - [email protected]
+
+- Update to version 0.2
+  * Compatibility fixes with Qt 4.8 
+
+-------------------------------------------------------------------
+Wed Oct 12 12:31:16 UTC 2011 - [email protected]
+
+- license update: GPL-2
+  qt4-qtscript is GPL-2 only
+
+-------------------------------------------------------------------
+Tue Sep 27 07:38:59 UTC 2011 - [email protected]
+
+- Add qtscript-separate-webkit.patch to fix compilation with
+  new QtWebKit 2.2
+
+-------------------------------------------------------------------
+Sat May 23 00:12:52 CEST 2009 - [email protected]
+
+- fix build with gcc 4.4
+
+-------------------------------------------------------------------
+Sun Mar 25 22:50:52 CEST 2009 - [email protected]
+
+- Rename to qt4-qtscript to match openSUSE naming sheme.
+  Package is based on qtscript-qt written by Rex Dieter
+  and Ian Monroe.

New:
----
  gcc-44.diff
  qt4-qtscript.changes
  qt4-qtscript.spec
  qtscript-qt-no_phonon.diff
  qtscript-separate-webkit.patch
  qtscriptgenerator-src-0.2.0.tar.gz

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

Other differences:
------------------
++++++ qt4-qtscript.spec ++++++
#
# spec file for package qt4-qtscript
#
# 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/
#

%define date 20111225


Name:           qt4-qtscript
Version:        0.2.0
Release:        1
License:        SUSE-LGPL-2.1-with-nokia-exception-1.1
Summary:        Qt bindings generator for Qt Script
Url:            http://code.google.com/p/qtscriptgenerator/
Group:          Development/Libraries/KDE
Source0:        qtscriptgenerator-src-%{version}.tar.gz
Patch0:         qtscript-qt-no_phonon.diff
Patch1:         gcc-44.diff
Patch2:         qtscript-separate-webkit.patch
BuildRequires:  libQtWebKit-devel
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
%requires_eq    libqt4

%description
Qt Script Generator is a tool that generates Qt bindings for Qt Script.
With the generated bindings you get access to substantial portions of
the Qt API from within Qt Script.

%package doc
License:        SUSE-LGPL-2.1-with-nokia-exception-1.1
Summary:        Qt bindings generator for Qt Script
Group:          Development/Libraries/KDE
Requires:       %{name} = %{version}

%description doc
Qt Script Generator is a tool that generates Qt bindings for Qt Script.
With the generated bindings you get access to substantial portions of
the Qt API from within Qt Script.

%prep
%setup -q -n qtscriptgenerator-src-%{version}
%patch0
%patch1
%patch2

%build
export QTDIR=/usr
cd generator
qmake
make
./generator
cd ../qtbindings
qmake
make -j3
cd ..

%install
# copying generated library files
# install doesn't do symlinks
mkdir -p %{buildroot}%{_libdir}/qt4/plugins/script/
cp -a plugins/script/libqtscript* %{buildroot}%{_libdir}/qt4/plugins/script/
mkdir -p %{buildroot}%{_defaultdocdir}/%{name}
install -c -m 644 README       %{buildroot}%{_defaultdocdir}/%{name}/README
install -c -m 644 LICENSE.LGPL  
%{buildroot}%{_defaultdocdir}/%{name}/LICENSE.LGPL
# Copy generated docs in doc/ to doc directory
mkdir -p %{buildroot}%{_defaultdocdir}/%{name}/doc-html
cp -a doc/* %{buildroot}%{_defaultdocdir}/%{name}/doc-html/

%clean
rm -rf %{buildroot}

%files
%defattr(-,root,root,-)
%dir %{_docdir}/%{name}
%doc %{_docdir}/%{name}/README
%doc %{_docdir}/%{name}/LICENSE.LGPL
%{_libdir}/qt4/plugins/script/libqtscript*

%files doc
%defattr(-,root,root,-)
%dir %{_docdir}/%{name}
%doc %{_docdir}/%{name}/doc-html

%changelog
++++++ gcc-44.diff ++++++
--- generator/parser/rpp/pp.h
+++ generator/parser/rpp/pp.h
@@ -28,6 +28,8 @@
 #include <iostream>
 #include <cassert>
 #include <cctype>
+#include <cstring>
+#include <cstdio>
 
 #include <fcntl.h>
 
++++++ qtscript-qt-no_phonon.diff ++++++
--- qtbindings/qtbindings.pro   2009-02-20 17:12:24.000000000 +0530
+++ qtbindings/qtbindings.pro   2009-03-25 03:42:03.000000000 +0530
@@ -6,7 +6,7 @@
          qtscript_sql \
          qtscript_svg \
          qtscript_xml \
-         qtscript_phonon \
+#        qtscript_phonon \
          qtscript_webkit \
          qtscript_xmlpatterns \
          qtscript_uitools \
++++++ qtscript-separate-webkit.patch ++++++
--- generator/qtscript_masterinclude.h  2009-02-20 12:42:24.000000000 +0100
+++ generator/qtscript_masterinclude.h  2011-09-27 09:38:10.798171231 +0200
@@ -35,9 +35,7 @@
 #  include <QtXmlPatterns/QtXmlPatterns>
 #endif
 
-#ifndef QT_NO_WEBKIT
 #  include <QtWebKit/QtWebKit>
-#endif
 
 #ifndef QT_NO_PHONON
 #  include <phonon/phonon>
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to