Hello community,

here is the log from the commit of package libzypp-bindings for 
openSUSE:Factory checked in at 2013-01-29 10:48:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libzypp-bindings (Old)
 and      /work/SRC/openSUSE:Factory/.libzypp-bindings.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libzypp-bindings", Maintainer is "dmacvi...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libzypp-bindings/libzypp-bindings.changes        
2012-06-08 14:07:41.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.libzypp-bindings.new/libzypp-bindings.changes   
2013-01-29 10:48:27.000000000 +0100
@@ -1,0 +2,7 @@
+Mon Jan 28 14:02:12 CET 2013 - m...@suse.de
+
+- work around swig problem creating two different types for
+  intrusive_ptr
+- version 0.5.14
+
+-------------------------------------------------------------------

Old:
----
  libzypp-bindings-0.5.13.tar.bz2

New:
----
  libzypp-bindings-0.5.14.tar.bz2

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

Other differences:
------------------
++++++ libzypp-bindings.spec ++++++
--- /var/tmp/diff_new_pack.Cn3jRD/_old  2013-01-29 10:48:28.000000000 +0100
+++ /var/tmp/diff_new_pack.Cn3jRD/_new  2013-01-29 10:48:28.000000000 +0100
@@ -18,7 +18,7 @@
 # nodebuginfo
 
 Name:           libzypp-bindings
-Version:        0.5.13
+Version:        0.5.14
 Release:        0
 License:        GPL-2.0+
 Summary:        Bindings for libzypp

++++++ libzypp-bindings-0.5.13.tar.bz2 -> libzypp-bindings-0.5.14.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-bindings-0.5.13/VERSION.cmake 
new/libzypp-bindings-0.5.14/VERSION.cmake
--- old/libzypp-bindings-0.5.13/VERSION.cmake   2012-06-05 12:05:27.000000000 
+0200
+++ new/libzypp-bindings-0.5.14/VERSION.cmake   2013-01-28 14:07:40.000000000 
+0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "0")
 SET(VERSION_MINOR "5")
-SET(VERSION_PATCH "13")
+SET(VERSION_PATCH "14")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libzypp-bindings-0.5.13/package/libzypp-bindings.changes 
new/libzypp-bindings-0.5.14/package/libzypp-bindings.changes
--- old/libzypp-bindings-0.5.13/package/libzypp-bindings.changes        
2012-06-05 12:05:27.000000000 +0200
+++ new/libzypp-bindings-0.5.14/package/libzypp-bindings.changes        
2013-01-28 14:07:40.000000000 +0100
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Mon Jan 28 14:02:12 CET 2013 - m...@suse.de
+
+- work around swig problem creating two different types for
+  intrusive_ptr
+- version 0.5.14
+
+-------------------------------------------------------------------
 Tue Jun  5 09:27:07 UTC 2012 - jreidin...@suse.com
 
 - disable segfaulting python test
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-bindings-0.5.13/swig/KeyRing.i 
new/libzypp-bindings-0.5.14/swig/KeyRing.i
--- old/libzypp-bindings-0.5.13/swig/KeyRing.i  2012-06-05 12:05:27.000000000 
+0200
+++ new/libzypp-bindings-0.5.14/swig/KeyRing.i  2013-01-28 14:07:40.000000000 
+0100
@@ -20,8 +20,8 @@
 }
 namespace zypp
 {
-  typedef intrusive_ptr<KeyRing> KeyRing_Ptr;
-  %template(KeyRing_Ptr) intrusive_ptr<KeyRing>;
+  typedef ::zypp::intrusive_ptr<KeyRing> KeyRing_Ptr;
+  %template(KeyRing_Ptr) ::zypp::intrusive_ptr<KeyRing>;
 }
 
 %template(List_PublicKey) std::list<zypp::PublicKey>;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-bindings-0.5.13/swig/ResTraits.i 
new/libzypp-bindings-0.5.14/swig/ResTraits.i
--- old/libzypp-bindings-0.5.13/swig/ResTraits.i        2012-06-05 
12:05:27.000000000 +0200
+++ new/libzypp-bindings-0.5.14/swig/ResTraits.i        2013-01-28 
14:07:40.000000000 +0100
@@ -15,10 +15,10 @@
       typedef zypp::intrusive_ptr<const _Res> constPtrType;
   };
 
-   typedef intrusive_ptr<const ResObject> ResObject_constPtr;
-   typedef intrusive_ptr<ResObject>       ResObject_Ptr;
-   %template(ResObject_constPtr)          intrusive_ptr<const zypp::ResObject>;
-   %template(ResObject_Ptr)               intrusive_ptr<zypp::ResObject>;
+   typedef ::zypp::intrusive_ptr<const ResObject> ResObject_constPtr;
+   typedef ::zypp::intrusive_ptr<ResObject>       ResObject_Ptr;
+   %template(ResObject_constPtr)          ::zypp::intrusive_ptr<const 
zypp::ResObject>;
+   %template(ResObject_Ptr)               
::zypp::intrusive_ptr<zypp::ResObject>;
 
 }
 
@@ -34,10 +34,10 @@
 %define %STUFF(X)
 namespace zypp
 {
-  typedef intrusive_ptr<const X> X##_constPtr;
-  typedef intrusive_ptr<X>       X##_Ptr;
-  %template(X##_constPtr)        intrusive_ptr<const X>;
-  %template(X##_Ptr)             intrusive_ptr<X>;
+  typedef ::zypp::intrusive_ptr<const X> X##_constPtr;
+  typedef ::zypp::intrusive_ptr<X>       X##_Ptr;
+  %template(X##_constPtr)        ::zypp::intrusive_ptr<const X>;
+  %template(X##_Ptr)             ::zypp::intrusive_ptr<X>;
 
   bool isKind##X( const zypp::Resolvable::constPtr & p );
   bool isKind##X( const zypp::PoolItem & p );
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-bindings-0.5.13/swig/Resolver.i 
new/libzypp-bindings-0.5.14/swig/Resolver.i
--- old/libzypp-bindings-0.5.13/swig/Resolver.i 2012-06-05 12:05:27.000000000 
+0200
+++ new/libzypp-bindings-0.5.14/swig/Resolver.i 2013-01-28 14:07:40.000000000 
+0100
@@ -9,8 +9,8 @@
 
 namespace zypp
 {
-  typedef intrusive_ptr< Resolver > Resolver_Ptr;
-  %template(Resolver_Ptr) intrusive_ptr<Resolver>;
+  typedef ::zypp::intrusive_ptr< Resolver > Resolver_Ptr;
+  %template(Resolver_Ptr) ::zypp::intrusive_ptr<Resolver>;
 
 #ifndef SWIGRUBY
   /* swig generates wrong code (>> instead of > > for template type)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-bindings-0.5.13/swig/Target.i 
new/libzypp-bindings-0.5.14/swig/Target.i
--- old/libzypp-bindings-0.5.13/swig/Target.i   2012-06-05 12:05:27.000000000 
+0200
+++ new/libzypp-bindings-0.5.14/swig/Target.i   2013-01-28 14:07:40.000000000 
+0100
@@ -7,8 +7,8 @@
 %include <zypp/Target.h>
 namespace zypp
 {
-typedef intrusive_ptr<Target> Target_Ptr;
-%template(Target_Ptr) intrusive_ptr<Target>;
+typedef ::zypp::intrusive_ptr<Target> Target_Ptr;
+%template(Target_Ptr) ::zypp::intrusive_ptr<Target>;
 }
 %{
   namespace zypp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-bindings-0.5.13/swig/ZYppFactory.i 
new/libzypp-bindings-0.5.14/swig/ZYppFactory.i
--- old/libzypp-bindings-0.5.13/swig/ZYppFactory.i      2012-06-05 
12:05:27.000000000 +0200
+++ new/libzypp-bindings-0.5.14/swig/ZYppFactory.i      2013-01-28 
14:07:40.000000000 +0100
@@ -3,7 +3,7 @@
 
 namespace zypp
 {
-typedef intrusive_ptr<ZYpp> ZYpp_Ptr;
-%template(ZYpp_Ptr) intrusive_ptr<ZYpp>;
+typedef ::zypp::intrusive_ptr<ZYpp> ZYpp_Ptr;
+%template(ZYpp_Ptr) ::zypp::intrusive_ptr<ZYpp>;
 }
 

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

Reply via email to