commit libbluedevil5 for openSUSE:Factory

2015-03-25 Thread h_root
Hello community,

here is the log from the commit of package libbluedevil5 for openSUSE:Factory 
checked in at 2015-03-25 09:58:32

Comparing /work/SRC/openSUSE:Factory/libbluedevil5 (Old)
 and  /work/SRC/openSUSE:Factory/.libbluedevil5.new (New)


Package is libbluedevil5

Changes:

--- /work/SRC/openSUSE:Factory/libbluedevil5/libbluedevil5.changes  
2015-03-16 09:28:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.libbluedevil5.new/libbluedevil5.changes 
2015-03-25 09:58:33.0 +0100
@@ -1,0 +2,8 @@
+Thu Mar 19 17:42:38 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.2.2:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.2.2.php
+
+---

Old:

  libbluedevil-5.2.1.tar.xz

New:

  libbluedevil-5.2.2.tar.xz



Other differences:
--
++ libbluedevil5.spec ++
--- /var/tmp/diff_new_pack.FDHtaN/_old  2015-03-25 09:58:33.0 +0100
+++ /var/tmp/diff_new_pack.FDHtaN/_new  2015-03-25 09:58:33.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   libbluedevil5
-Version:5.2.1
+Version:5.2.2
 Release:0
 Summary:Qt Bluetooth client library
 License:LGPL-2.0+

++ libbluedevil-5.2.1.tar.xz - libbluedevil-5.2.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbluedevil-5.2.1/CMakeLists.txt 
new/libbluedevil-5.2.2/CMakeLists.txt
--- old/libbluedevil-5.2.1/CMakeLists.txt   2015-02-21 21:02:53.0 
+0100
+++ new/libbluedevil-5.2.2/CMakeLists.txt   2015-03-19 12:16:06.0 
+0100
@@ -1,5 +1,5 @@
 project(libbluedevil)
-set(PROJECT_VERSION 5.2.1)
+set(PROJECT_VERSION 5.2.2)
 
 cmake_minimum_required(VERSION 2.8.11)
 set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules ${CMAKE_MODULE_PATH})

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



commit libbluedevil5 for openSUSE:Factory

2015-03-16 Thread h_root
Hello community,

here is the log from the commit of package libbluedevil5 for openSUSE:Factory 
checked in at 2015-03-16 09:28:53

Comparing /work/SRC/openSUSE:Factory/libbluedevil5 (Old)
 and  /work/SRC/openSUSE:Factory/.libbluedevil5.new (New)


Package is libbluedevil5

Changes:

--- /work/SRC/openSUSE:Factory/libbluedevil5/libbluedevil5.changes  
2015-03-01 15:05:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.libbluedevil5.new/libbluedevil5.changes 
2015-03-16 09:28:54.0 +0100
@@ -1,0 +2,7 @@
+Tue Mar 10 19:14:38 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Added adaptername-now-returns-alias-of-adapter.patch and
+  add-back-alias-and-setAliasy.patch from upstream, needed for
+  newer bluedevil5
+
+---

New:

  adaptername-now-returns-alias-of-adapter.patch
  add-back-alias-and-setAliasy.patch



Other differences:
--
++ libbluedevil5.spec ++
--- /var/tmp/diff_new_pack.mRB7XO/_old  2015-03-16 09:28:55.0 +0100
+++ /var/tmp/diff_new_pack.mRB7XO/_new  2015-03-16 09:28:55.0 +0100
@@ -25,6 +25,10 @@
 Group:  System/Libraries
 Url:http://www.kde.org
 Source: libbluedevil-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM adaptername-now-returns-alias-of-adapter.patch
+Patch0: adaptername-now-returns-alias-of-adapter.patch
+# PATCH-FIX-UPSTREAM add-back-alias-and-setAliasy.patch
+Patch1: add-back-alias-and-setAliasy.patch
 BuildRequires:  cmake = 2.8.11
 BuildRequires:  pkgconfig(Qt5Core)
 BuildRequires:  pkgconfig(Qt5DBus)
@@ -45,6 +49,8 @@
 
 %prep
 %setup -q -n libbluedevil-%{version}
+%patch0 -p1
+%patch1 -p1
 
 %build
 mkdir -p build

++ adaptername-now-returns-alias-of-adapter.patch ++
From: David Rosca now...@gmail.com
Date: Sat, 13 Dec 2014 11:57:15 +
Subject: Adapter::name() now returns alias of adapter
X-Git-Tag: v2.1
X-Git-Url: 
http://quickgit.kde.org/?p=libbluedevil.gita=commitdiffh=ec29ea82fd8e06ddebffd9c1dbdb53ec6872c3f2
---
Adapter::name() now returns alias of adapter

According to Bluez docs, Alias property should be used
as a name for adapter. If no alias for adapter was set,
it returns original system name.

Added new method Adapter::systemName() that returns system
name (hostname) of the adapter.
---


--- a/bluedevil/bluedeviladapter.cpp
+++ b/bluedevil/bluedeviladapter.cpp
@@ -89,7 +89,7 @@
 for(i = changed_properties.constBegin(); i != 
changed_properties.constEnd(); ++i) {
   QVariant value = i.value();
   QString property = i.key();
-  if (property == Name) {
+  if (property == Alias) {
   emit m_q-nameChanged(value.toString());
   } else if (property == Powered) {
   emit m_q-poweredChanged(value.toBool());
@@ -141,12 +141,12 @@
 
 QString Adapter::name() const
 {
+return d-m_bluezAdapterInterface-alias();
+}
+
+QString Adapter::systemName() const
+{
 return d-m_bluezAdapterInterface-name();
-}
-
-QString Adapter::alias() const
-{
-return d-m_bluezAdapterInterface-alias();
 }
 
 quint32 Adapter::adapterClass() const
@@ -214,9 +214,9 @@
 return UUIDs;
 }
 
-void Adapter::setAlias(const QString alias)
-{
-d-m_bluezAdapterInterface-setAlias(alias);
+void Adapter::setName(const QString name)
+{
+d-m_bluezAdapterInterface-setAlias(name);
 }
 
 void Adapter::setPowered(bool powered)

--- a/bluedevil/bluedeviladapter.h
+++ b/bluedevil/bluedeviladapter.h
@@ -49,8 +49,8 @@
 Q_OBJECT
 
 Q_PROPERTY(QString address READ address)
-Q_PROPERTY(QString name READ name)
-Q_PROPERTY(QString alias READ alias WRITE setAlias)
+Q_PROPERTY(QString name READ name WRITE setName)
+Q_PROPERTY(QString systemName READ systemName)
 Q_PROPERTY(quint32 adapterClass READ adapterClass)
 Q_PROPERTY(bool powered READ isPowered WRITE setPowered)
 Q_PROPERTY(bool discoverable READ isDiscoverable WRITE setDiscoverable)
@@ -75,14 +75,19 @@
 QString address() const;
 
 /**
+ * Returns the friendly name of the adapter.
+ *
+ * Friendly name is alias of the adapter. If no alias is set, it returns
+ * the system name.
+ *
  * @return The friendly name of the adapter.
  */
 QString name() const;
 
 /**
- * @return The alias of the adapter
- */
-QString alias() const;
+ * @return The system name (hostname) of the adapter.
+ */
+QString systemName() const;
 
 /**
  * @return The class of the adapter.
@@ -147,9 +152,9 @@
 
 public Q_SLOTS:
 /**
- *  Set the alias of the adapter
- */
-void setAlias(const QString alias);
+ *  Set the name (alias) of the adapter
+ */
+void setName(const QString name);
 
 /**
  * Sets whether this adapter is 

commit libbluedevil5 for openSUSE:Factory

2015-03-01 Thread h_root
Hello community,

here is the log from the commit of package libbluedevil5 for openSUSE:Factory 
checked in at 2015-03-01 15:05:17

Comparing /work/SRC/openSUSE:Factory/libbluedevil5 (Old)
 and  /work/SRC/openSUSE:Factory/.libbluedevil5.new (New)


Package is libbluedevil5

Changes:

--- /work/SRC/openSUSE:Factory/libbluedevil5/libbluedevil5.changes  
2015-01-29 13:17:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.libbluedevil5.new/libbluedevil5.changes 
2015-03-01 15:05:19.0 +0100
@@ -1,0 +2,8 @@
+Fri Feb 20 02:43:58 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.2.1:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.2.1.php
+
+---

Old:

  libbluedevil-5.2.0.tar.xz

New:

  libbluedevil-5.2.1.tar.xz



Other differences:
--
++ libbluedevil5.spec ++
--- /var/tmp/diff_new_pack.2Pb8O6/_old  2015-03-01 15:05:20.0 +0100
+++ /var/tmp/diff_new_pack.2Pb8O6/_new  2015-03-01 15:05:20.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libbluedevil5
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2010 Raymond Wooninck tittiatc...@gmail.com
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:   libbluedevil5
-Version:5.2.0
+Version:5.2.1
 Release:0
 Summary:Qt Bluetooth client library
 License:LGPL-2.0+

++ libbluedevil-5.2.0.tar.xz - libbluedevil-5.2.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbluedevil-5.2.0/CMakeLists.txt 
new/libbluedevil-5.2.1/CMakeLists.txt
--- old/libbluedevil-5.2.0/CMakeLists.txt   2015-01-22 14:27:52.0 
+0100
+++ new/libbluedevil-5.2.1/CMakeLists.txt   2015-02-21 21:02:53.0 
+0100
@@ -1,5 +1,5 @@
 project(libbluedevil)
-set(PROJECT_VERSION 5.2.0)
+set(PROJECT_VERSION 5.2.1)
 
 cmake_minimum_required(VERSION 2.8.11)
 set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules ${CMAKE_MODULE_PATH})

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