Hello community,

here is the log from the commit of package nemiver for openSUSE:Factory checked 
in at 2016-04-12 19:34:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nemiver (Old)
 and      /work/SRC/openSUSE:Factory/.nemiver.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "nemiver"

Changes:
--------
--- /work/SRC/openSUSE:Factory/nemiver/nemiver.changes  2015-11-10 
10:03:13.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.nemiver.new/nemiver.changes     2016-04-12 
19:34:47.000000000 +0200
@@ -1,0 +2,6 @@
+Thu Mar 17 16:45:52 UTC 2016 - zai...@opensuse.org
+
+- Add nemiver-build-fix.patch: Fix build with new mm stack, patches
+  from upstream git, and one from bugzilla (bgo#763840).
+
+-------------------------------------------------------------------

New:
----
  nemiver-build-fix.patch

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

Other differences:
------------------
++++++ nemiver.spec ++++++
--- /var/tmp/diff_new_pack.N7u9O4/_old  2016-04-12 19:34:48.000000000 +0200
+++ /var/tmp/diff_new_pack.N7u9O4/_new  2016-04-12 19:34:48.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package nemiver
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,6 +26,8 @@
 Group:          Development/Tools/Debuggers
 Url:            http://home.gna.org/nemiver/
 Source0:        
http://download.gnome.org/sources/nemiver/0.9/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM nemiver-build-fix.patch bgo#763840 zai...@opensuse.org -- 
Fix build with new mm stack
+Patch0:         nemiver-build-fix.patch
 %if 0%{?scm_bootstrap}
 BuildRequires:  gnome-common
 %endif
@@ -71,6 +73,7 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 # Disabled from ver 0.9.6, it breaks the build.
 #translation-update-upstream
 

++++++ nemiver-build-fix.patch ++++++
>From 49f3edbc3f0f0cfbbde57efe88be4cbf921bf779 Mon Sep 17 00:00:00 2001
From: Sebastian Rasmussen <seb...@gmail.com>
Date: Fri, 20 Feb 2015 19:21:28 +0100
Subject: 744865 Fix typo in singular form of string
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

    * src/persp/dbgperspective/nmv-call-stack.cc
      (CallStack::Priv::append_frames_to_tree_view): Fix typo in
      singular form of string

Signed-off-by: Marek Černocký <ma...@manet.cz>
---
 src/persp/dbgperspective/nmv-call-stack.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/persp/dbgperspective/nmv-call-stack.cc 
b/src/persp/dbgperspective/nmv-call-stack.cc
index 68b80d1..b79a9f6 100644
--- a/src/persp/dbgperspective/nmv-call-stack.cc
+++ b/src/persp/dbgperspective/nmv-call-stack.cc
@@ -765,7 +765,7 @@ struct CallStack::Priv {
             store_iter = store->append ();
             UString msg;
             msg.printf (ngettext ("(Click here to see the next %d row of the "
-                                  "call stack",
+                                  "call stack)",
                                   "(Click here to see the next %d rows of the "
                                   "call stack)",
                                   nb_frames_expansion_chunk),
-- 
cgit v0.12


>From 7005393a8c4d914eac9705e7f47818d0f4de3578 Mon Sep 17 00:00:00 2001
From: Marcin Kolny <marcin.ko...@gmail.com>
Date: Wed, 7 Oct 2015 12:16:49 +0200
Subject: build fix

---
 src/confmgr/nmv-gconf-mgr.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/confmgr/nmv-gconf-mgr.cc b/src/confmgr/nmv-gconf-mgr.cc
index 672935b..e212ff6 100644
--- a/src/confmgr/nmv-gconf-mgr.cc
+++ b/src/confmgr/nmv-gconf-mgr.cc
@@ -32,6 +32,7 @@
 NEMIVER_BEGIN_NAMESPACE (nemiver)
 
 using nemiver::common::GCharSafePtr;
+using nemiver::common::GErrorSafePtr;
 
 class GConfMgr : public IConfMgr {
     GConfMgr (const GConfMgr &);
-- 
cgit v0.12

>From 0ad382f79c6249fe0a46121d04fca0a2044bcfc0 Mon Sep 17 00:00:00 2001
From: Ben Iofel <iofel...@gmail.com>
Date: Thu, 17 Mar 2016 18:28:02 -0400
Subject: [PATCH] Fix compiliation warnings & errors

---
 src/dbgengine/nmv-dbg-common.h        | 2 +-
 src/dbgengine/nmv-i-var-list-walker.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/dbgengine/nmv-dbg-common.h b/src/dbgengine/nmv-dbg-common.h
index ad3cc00..0edac7c 100644
--- a/src/dbgengine/nmv-dbg-common.h
+++ b/src/dbgengine/nmv-dbg-common.h
@@ -171,7 +171,7 @@ public:
 
     bool has_slot () const
     {
-        return m_slot;
+        return static_cast<bool> (m_slot);
     }
 
     template<class T>
diff --git a/src/dbgengine/nmv-i-var-list-walker.h 
b/src/dbgengine/nmv-i-var-list-walker.h
index b719c0d..f2f3229 100644
--- a/src/dbgengine/nmv-i-var-list-walker.h
+++ b/src/dbgengine/nmv-i-var-list-walker.h
@@ -22,7 +22,7 @@
  *
  *See COPYRIGHT file copyright information.
  */
-#ifndef __NMV_VAR_LIST_WALKER_H__
+#ifndef __NMV_I_VAR_LIST_WALKER_H__
 #define __NMV_I_VAR_LIST_WALKER_H__
 
 #include "nmv-i-var-walker.h"
-- 
2.7.3


Reply via email to