commit dd-opentracing-cpp for openSUSE:Factory

2019-12-18 Thread root
Hello community,

here is the log from the commit of package dd-opentracing-cpp for 
openSUSE:Factory checked in at 2019-12-18 14:45:22

Comparing /work/SRC/openSUSE:Factory/dd-opentracing-cpp (Old)
 and  /work/SRC/openSUSE:Factory/.dd-opentracing-cpp.new.4691 (New)


Package is "dd-opentracing-cpp"

Wed Dec 18 14:45:22 2019 rev:3 rq:757566 version:1.1.2

Changes:

--- /work/SRC/openSUSE:Factory/dd-opentracing-cpp/dd-opentracing-cpp.changes
2019-08-09 16:53:36.145465559 +0200
+++ 
/work/SRC/openSUSE:Factory/.dd-opentracing-cpp.new.4691/dd-opentracing-cpp.changes
  2019-12-18 14:48:23.985940850 +0100
@@ -1,0 +2,11 @@
+Tue Dec 17 14:30:41 UTC 2019 - mroste...@opensuse.org
+
+- Update to version 1.1.2:
+  * Fix nginx example / sandbox (#114)
+  * Generate int64 values instead of uint64 (#116)
+  * version bump for 1.1.1 and version check scripts enforced by CI (#113)
+  * Build / install updates  (#112)
+  * Changed how tests are built for faster compilation (#109)
+  * Replace ':' in span tag keys with '.' (#107)
+
+---

Old:

  dd-opentracing-cpp-1.0.1.tar.xz

New:

  dd-opentracing-cpp-1.1.2.tar.xz



Other differences:
--
++ dd-opentracing-cpp.spec ++
--- /var/tmp/diff_new_pack.tfXj5t/_old  2019-12-18 14:48:24.381941031 +0100
+++ /var/tmp/diff_new_pack.tfXj5t/_new  2019-12-18 14:48:24.381941031 +0100
@@ -20,7 +20,7 @@
 %define libname libdd_opentracing%{soversion}
 
 Name:   dd-opentracing-cpp
-Version:1.0.1
+Version:1.1.2
 Release:0
 Summary:Datadog Opentracing C++ client
 License:Apache-2.0

++ _service ++
--- /var/tmp/diff_new_pack.tfXj5t/_old  2019-12-18 14:48:24.405941042 +0100
+++ /var/tmp/diff_new_pack.tfXj5t/_new  2019-12-18 14:48:24.409941044 +0100
@@ -6,7 +6,7 @@
 dd-opentracing-cpp
 @PARENT_TAG@
 v(.*)
-v1.0.1
+v1.1.2
   
   
 *.tar

++ _servicedata ++
--- /var/tmp/diff_new_pack.tfXj5t/_old  2019-12-18 14:48:24.421941049 +0100
+++ /var/tmp/diff_new_pack.tfXj5t/_new  2019-12-18 14:48:24.425941051 +0100
@@ -1,4 +1,4 @@
 
 
 https://github.com/DataDog/dd-opentracing-cpp.git
-  11311abc9160ceee63cfdb2e027e82f48a5348a0
\ No newline at end of file
+  6b157f78361700630d0d46438ed62de08f652ac3
\ No newline at end of file

++ dd-opentracing-cpp-1.0.1.tar.xz -> dd-opentracing-cpp-1.1.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dd-opentracing-cpp-1.0.1/.circleci/config.yml 
new/dd-opentracing-cpp-1.1.2/.circleci/config.yml
--- old/dd-opentracing-cpp-1.0.1/.circleci/config.yml   2019-07-26 
03:17:26.0 +0200
+++ new/dd-opentracing-cpp-1.1.2/.circleci/config.yml   2019-11-13 
00:09:56.0 +0100
@@ -28,6 +28,9 @@
   fi
 done
   - run:
+  name: Check version info is up-to-date
+  command: ./test/version/version_check
+  - run:
   name: Build source dependencies
   command: |
 ./scripts/install_dependencies.sh
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dd-opentracing-cpp-1.0.1/CMakeLists.txt 
new/dd-opentracing-cpp-1.1.2/CMakeLists.txt
--- old/dd-opentracing-cpp-1.0.1/CMakeLists.txt 2019-07-26 03:17:26.0 
+0200
+++ new/dd-opentracing-cpp-1.1.2/CMakeLists.txt 2019-11-13 00:09:56.0 
+0100
@@ -22,6 +22,14 @@
 # Configure the compiler.
 set(CMAKE_CXX_STANDARD 14)
 
+# Includes
+set(CMAKE_INCLUDE_PATH 3rd_party/include deps/include)
+include_directories(SYSTEM 3rd_party/include deps/include)
+include_directories(include)
+
+# Libraries
+set(CMAKE_LIBRARY_PATH deps/lib)
+
 # Dependencies
 find_path(OPENTRACING_INCLUDE_DIR NAMES opentracing/tracer.h)
 find_library(OPENTRACING_LIB opentracing)
@@ -29,24 +37,19 @@
 find_library(MSGPACK_LIB msgpack)
 find_package(CURL)
 find_package(Threads REQUIRED)
-# Code Sanitizers, for testing.
+
+# Code Sanitizers
 set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/3rd_party/sanitizers-cmake" 
${CMAKE_MODULE_PATH})
 find_package(Sanitizers)
 
-set(DATADOG_LINK_LIBRARIES ${OPENTRACING_LIB} ${CURL_LIBRARIES} 
${ZLIB_LIBRARIES} Threads::Threads)
-
-# Includes
-include_directories(SYSTEM 3rd_party/include)
-include_directories(SYSTEM ${OPENTRACING_INCLUDE_DIR} ${CURL_INCLUDE_DIRS})
-include_directories(include)
-
 # Code
 install(DIRECTORY include/datadog DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
 file(GLOB DD_OPENTRACING_SOURCES "src/*.cpp")
 add_compile_options(-Wall -Wextra -Werror -Wnon-virtual-dtor 
-Woverloaded-virtual -Wold-style-cast -std=c++14)
 
-
 # Outputs
+set(DATADOG_LINK_LIBRARIES ${OPENTRACING_LIB} 

commit dd-opentracing-cpp for openSUSE:Factory

2019-08-09 Thread root
Hello community,

here is the log from the commit of package dd-opentracing-cpp for 
openSUSE:Factory checked in at 2019-08-09 16:53:32

Comparing /work/SRC/openSUSE:Factory/dd-opentracing-cpp (Old)
 and  /work/SRC/openSUSE:Factory/.dd-opentracing-cpp.new.9556 (New)


Package is "dd-opentracing-cpp"

Fri Aug  9 16:53:32 2019 rev:2 rq:721729 version:1.0.1

Changes:

--- /work/SRC/openSUSE:Factory/dd-opentracing-cpp/dd-opentracing-cpp.changes
2019-01-15 09:16:38.782220375 +0100
+++ 
/work/SRC/openSUSE:Factory/.dd-opentracing-cpp.new.9556/dd-opentracing-cpp.changes
  2019-08-09 16:53:36.145465559 +0200
@@ -1,0 +2,33 @@
+Tue Aug 06 17:14:17 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.0.1:
+  * Fix compile errors when built by some tasks on Envoy CI
+(gh#DataDog/dd-opentracing-cpp#106).
+- Changes from version 1.0.0:
+  * Features:
++ Add code changes needed to support Datadog Synthetics.
++ Add code for trace analytics.
++ Add code for DD_TRACE_REPORT_HOSTNAME, used when the agent
+  is on a different host.
++ Add code for DD_ENV to set the env attribute of traces.
++ Add support for trace analytics controlled by environment
+  variables.
+  * Fixes:
++ Revert nginx implementation to use nginx-opentracing.
++ Add tags for manual_keep and manual_drop.
++ Remove a redundant move, fix build with GCC 9.
++ Workaround for integration test failure.
++ Missing header in BUILD.bazel.
++ Outdated examples removed.
++ README improvements.
+- Changes from version 0.4.3:
+  * Supports nginx-opentracing v0.8.0, updates other dependencies.
+  * Updates documentation.
+- Changes from version 0.4.2:
+  * Minor improvement to operation_name_override behaviour.
+- Changes from version 0.4.1:
+  * Inject/extract methods can be configured with env vars.
+- Build against nlohmann_json-devel provided by distribution
+  instead of the version embedded in tarball.
+
+---

Old:

  dd-opentracing-cpp-0.4.0.tar.xz

New:

  dd-opentracing-cpp-1.0.1.tar.xz



Other differences:
--
++ dd-opentracing-cpp.spec ++
--- /var/tmp/diff_new_pack.rV2cnq/_old  2019-08-09 16:53:36.561465459 +0200
+++ /var/tmp/diff_new_pack.rV2cnq/_new  2019-08-09 16:53:36.565465458 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package dd-opentracing-cpp
 #
-# 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
@@ -12,7 +12,7 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -20,7 +20,7 @@
 %define libname libdd_opentracing%{soversion}
 
 Name:   dd-opentracing-cpp
-Version:0.4.0
+Version:1.0.1
 Release:0
 Summary:Datadog Opentracing C++ client
 License:Apache-2.0
@@ -31,6 +31,7 @@
 BuildRequires:  gcc-c++
 BuildRequires:  libcurl-devel
 BuildRequires:  msgpack-devel
+BuildRequires:  nlohmann_json-devel
 BuildRequires:  opentracing-cpp-devel
 BuildRequires:  zlib-devel
 
@@ -54,6 +55,8 @@
 
 %prep
 %setup -q
+# Use version packaged in distribution
+rm -r 3rd_party/include/nlohmann
 
 %build
 %cmake

++ _service ++
--- /var/tmp/diff_new_pack.rV2cnq/_old  2019-08-09 16:53:36.581465454 +0200
+++ /var/tmp/diff_new_pack.rV2cnq/_new  2019-08-09 16:53:36.581465454 +0200
@@ -6,7 +6,7 @@
 dd-opentracing-cpp
 @PARENT_TAG@
 v(.*)
-refs/tags/v0.4.0
+v1.0.1
   
   
 *.tar

++ _servicedata ++
--- /var/tmp/diff_new_pack.rV2cnq/_old  2019-08-09 16:53:36.593465451 +0200
+++ /var/tmp/diff_new_pack.rV2cnq/_new  2019-08-09 16:53:36.593465451 +0200
@@ -1,4 +1,4 @@
 
 
 https://github.com/DataDog/dd-opentracing-cpp.git
-  944d384a6911e5c96b2ed99597cc3407fb865e47
\ No newline at end of file
+  11311abc9160ceee63cfdb2e027e82f48a5348a0
\ No newline at end of file

++ dd-opentracing-cpp-0.4.0.tar.xz -> dd-opentracing-cpp-1.0.1.tar.xz ++
 31815 lines of diff (skipped)