Hello community,

here is the log from the commit of package extra-cmake-modules for 
openSUSE:Factory checked in at 2019-01-21 10:17:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/extra-cmake-modules (Old)
 and      /work/SRC/openSUSE:Factory/.extra-cmake-modules.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "extra-cmake-modules"

Mon Jan 21 10:17:49 2019 rev:61 rq:665772 version:5.54.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/extra-cmake-modules/extra-cmake-modules.changes  
2018-12-19 13:39:52.756086977 +0100
+++ 
/work/SRC/openSUSE:Factory/.extra-cmake-modules.new.28833/extra-cmake-modules.changes
       2019-01-21 10:18:52.554164174 +0100
@@ -1,0 +2,10 @@
+Mon Jan 14 06:08:41 UTC 2019 - [email protected]
+
+- Update to 5.54.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.54.0.php
+- Changes since 5.53.0:
+  * Add find module for Google's libphonenumber
+
+-------------------------------------------------------------------

Old:
----
  extra-cmake-modules-5.53.0.tar.xz

New:
----
  extra-cmake-modules-5.54.0.tar.xz

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

Other differences:
------------------
++++++ extra-cmake-modules.spec ++++++
--- /var/tmp/diff_new_pack.uB2oBt/_old  2019-01-21 10:18:52.966163760 +0100
+++ /var/tmp/diff_new_pack.uB2oBt/_new  2019-01-21 10:18:52.970163757 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package extra-cmake-modules
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.53
+%define _tar_path 5.54
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -27,7 +27,7 @@
 %bcond_with doc
 %endif
 Name:           extra-cmake-modules
-Version:        5.53.0
+Version:        5.54.0
 Release:        0
 Summary:        CMake modules
 License:        BSD-3-Clause

++++++ extra-cmake-modules-5.53.0.tar.xz -> extra-cmake-modules-5.54.0.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/extra-cmake-modules-5.53.0/CMakeLists.txt 
new/extra-cmake-modules-5.54.0/CMakeLists.txt
--- old/extra-cmake-modules-5.53.0/CMakeLists.txt       2018-11-20 
14:36:01.000000000 +0100
+++ new/extra-cmake-modules-5.54.0/CMakeLists.txt       2018-12-21 
00:31:37.000000000 +0100
@@ -32,7 +32,7 @@
 # Preliminary setup
 #
 
-set(VERSION "5.53.0") # handled by release scripts
+set(VERSION "5.54.0") # handled by release scripts
 
 if (POLICY CMP0048)
     cmake_policy(SET CMP0048 NEW)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/extra-cmake-modules-5.53.0/find-modules/FindPhoneNumber.cmake 
new/extra-cmake-modules-5.54.0/find-modules/FindPhoneNumber.cmake
--- old/extra-cmake-modules-5.53.0/find-modules/FindPhoneNumber.cmake   
1970-01-01 01:00:00.000000000 +0100
+++ new/extra-cmake-modules-5.54.0/find-modules/FindPhoneNumber.cmake   
2018-12-21 00:31:37.000000000 +0100
@@ -0,0 +1,95 @@
+#.rst:
+# FindPhoneNumber
+# ---------------
+#
+# This module finds if PhoneNumber is installed.
+#
+# This is a component-based find module, which makes use of the COMPONENTS and
+# OPTIONAL_COMPONENTS arguments to find_module.  The following components are
+# available:
+#
+#   PhoneNumber
+#   GeoCoding
+#
+# If no components are specified, this module will act as though all components
+# were passed to OPTIONAL_COMPONENTS.
+#
+# This module will define the following variables, independently of the
+# components searched for or found:
+#
+# ``PhoneNumber_FOUND``
+#     True if (the requestion version of) PhoneNumber is available
+#
+# For each searched-for components, ``PhoneNumber_<component>_FOUND`` will be 
set to
+# TRUE if the corresponding library was found, and FALSE otherwise.  If
+# ``PhoneNumber_<component>_FOUND`` is TRUE, the imported target 
``PhoneNumber::<component>``
+# will be defined.
+#
+# Since 5.54.0.
+
+#=============================================================================
+# Copyright (c) 2017 Klaralvdalens Datakonsult AB, a KDAB Group company, 
[email protected]
+# Copyright (c) 2018 Volker Krause <[email protected]>
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+#
+# 1. Redistributions of source code must retain the copyright
+#    notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the copyright
+#    notice, this list of conditions and the following disclaimer in the
+#    documentation and/or other materials provided with the distribution.
+# 3. The name of the author may not be used to endorse or promote products
+#    derived from this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+#=============================================================================
+
+include(ECMFindModuleHelpersStub)
+
+ecm_find_package_version_check(PhoneNumber)
+
+set(PhoneNumber_known_components
+    PhoneNumber
+    GeoCoding
+)
+set(PhoneNumber_default_components ${PhoneNumber_known_components})
+
+set(PhoneNumber_PhoneNumber_lib phonenumber)
+set(PhoneNumber_PhoneNumber_header phonenumbers/phonenumberutil.h)
+set(PhoneNumber_GeoCoding_lib geocoding)
+set(PhoneNumber_GeoCoding_header 
phonenumbers/geocoding/phonenumber_offline_geocoder.h)
+
+ecm_find_package_parse_components(PhoneNumber
+    RESULT_VAR PhoneNumber_components
+    KNOWN_COMPONENTS ${PhoneNumber_known_components}
+    DEFAULT_COMPONENTS ${PhoneNumber_default_components}
+)
+ecm_find_package_handle_library_components(PhoneNumber
+    COMPONENTS ${PhoneNumber_components}
+)
+find_package_handle_standard_args(PhoneNumber
+    FOUND_VAR
+        PhoneNumber_FOUND
+    REQUIRED_VARS
+        PhoneNumber_LIBRARIES
+    VERSION_VAR
+        PhoneNumber_VERSION
+    HANDLE_COMPONENTS
+)
+set(PhoneNumber_VERSION 0) # there is no observable version number in the 
installed files
+
+include(FeatureSummary)
+set_package_properties(PhoneNumber PROPERTIES
+  URL "https://github.com/googlei18n/libphonenumber";
+  DESCRIPTION "Library for parsing, formatting, and validating international 
phone numbers")


Reply via email to