Hello community,

here is the log from the commit of package bazel-workspaces for 
openSUSE:Factory checked in at 2019-11-07 23:21:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bazel-workspaces (Old)
 and      /work/SRC/openSUSE:Factory/.bazel-workspaces.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "bazel-workspaces"

Thu Nov  7 23:21:34 2019 rev:3 rq:746410 version:20191105

Changes:
--------
--- /work/SRC/openSUSE:Factory/bazel-workspaces/bazel-workspaces.changes        
2019-10-16 09:17:25.519136648 +0200
+++ 
/work/SRC/openSUSE:Factory/.bazel-workspaces.new.2990/bazel-workspaces.changes  
    2019-11-07 23:21:37.168864141 +0100
@@ -1,0 +2,18 @@
+Mon Nov 04 23:19:07 UTC 2019 - mroste...@opensuse.org
+
+- Update to version 20191105:
+  * googletest: Separate gtest_main and gmock_main from gtest and
+    gmock
+
+-------------------------------------------------------------------
+Mon Nov 04 17:38:40 UTC 2019 - mroste...@opensuse.org
+
+- Update to version 20191104:
+  * googletest: Define separate gtest and gmock libraries
+  * Add workspace for prometheus-cpp
+  * Add workspace for upb
+  * nanopb: Fix library name
+  * Add workspace for grpc
+  * Add workspace for nanopb
+
+-------------------------------------------------------------------

Old:
----
  bazel-workspaces-20191011.obscpio

New:
----
  bazel-workspaces-20191105.obscpio

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

Other differences:
------------------
++++++ bazel-workspaces.spec ++++++
--- /var/tmp/diff_new_pack.oorG09/_old  2019-11-07 23:21:38.328865385 +0100
+++ /var/tmp/diff_new_pack.oorG09/_new  2019-11-07 23:21:38.332865390 +0100
@@ -12,12 +12,12 @@
 # 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/
 #
 
 
 Name:           bazel-workspaces
-Version:        20191011
+Version:        20191105
 Release:        0
 Summary:        Bazel workspaces for libraries packaged in openSUSE
 License:        Apache-2.0

++++++ _service ++++++
--- /var/tmp/diff_new_pack.oorG09/_old  2019-11-07 23:21:38.368865428 +0100
+++ /var/tmp/diff_new_pack.oorG09/_new  2019-11-07 23:21:38.368865428 +0100
@@ -5,7 +5,7 @@
     <param name="changesgenerate">enable</param>
     <param name="filename">bazel-workspaces</param>
     <param name="versionformat">%cd</param>
-    <param name="revision">28a1bcdf66c4a12189856a06c1b541f010a95015</param>
+    <param name="revision">5db0b6e72672aa25274509f167d3262d372b78f7</param>
   </service>
   <service mode="buildtime" name="tar" />
   <service mode="buildtime" name="recompress">

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.oorG09/_old  2019-11-07 23:21:38.388865450 +0100
+++ /var/tmp/diff_new_pack.oorG09/_new  2019-11-07 23:21:38.388865450 +0100
@@ -1,4 +1,4 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/kubic-project/bazel-workspaces</param>
-              <param 
name="changesrevision">28a1bcdf66c4a12189856a06c1b541f010a95015</param></service></servicedata>
\ No newline at end of file
+              <param 
name="changesrevision">5db0b6e72672aa25274509f167d3262d372b78f7</param></service></servicedata>
\ No newline at end of file

++++++ bazel-workspaces-20191011.obscpio -> bazel-workspaces-20191105.obscpio 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bazel-workspaces-20191011/googletest/BUILD 
new/bazel-workspaces-20191105/googletest/BUILD
--- old/bazel-workspaces-20191011/googletest/BUILD      2019-10-11 
01:39:06.000000000 +0200
+++ new/bazel-workspaces-20191105/googletest/BUILD      2019-11-05 
00:15:43.000000000 +0100
@@ -4,7 +4,10 @@
         "thirdparty_build/include/gmock/**/*.h",
         "thirdparty_build/include/gtest/**/*.h",
     ]),
-    copts = ["-I/usr/include/gtest"],
+    copts = [
+        "-I/usr/include/gmock",
+        "-I/usr/include/gtest",
+    ],
     linkopts = [
         "-lgmock",
         "-lgmock_main",
@@ -12,5 +15,49 @@
         "-lgtest_main",
     ],
     visibility = ["//visibility:public"],
-    linkstatic=False,
+    linkstatic = False,
+)
+
+cc_library(
+    name = "gtest",
+    hdrs = glob(["thirdparty_build/include/gtest/**/*.h"]),
+    copts = ["-I/usr/include/gtest"],
+    linkopts = [
+        "-lgtest",
+    ],
+    visibility = ["//visibility:public"],
+    linkstatic = False,
+)
+
+cc_library(
+    name = "gtest_main",
+    hdrs = glob(["thirdparty_build/include/gtest/**/*.h"]),
+    copts = ["-I/usr/include/gtest"],
+    linkopts = [
+        "-lgtest_main",
+    ],
+    visibility = ["//visibility:public"],
+    linkstatic = False,
+)
+
+cc_library(
+    name = "gmock",
+    hdrs = glob(["thirdparty_build/include/gmock/**/*.h"]),
+    copts = ["-I/usr/include/gmock"],
+    linkopts = [
+        "-lgmock",
+    ],
+    visibility = ["//visibility:public"],
+    linkstatic = False,
+)
+
+cc_library(
+    name = "gmock_main",
+    hdrs = glob(["thirdparty_build/include/gmock/**/*.h"]),
+    copts = ["-I/usr/include/gmock"],
+    linkopts = [
+        "-lgmock_main",
+    ],
+    visibility = ["//visibility:public"],
+    linkstatic = False,
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bazel-workspaces-20191011/grpc/BUILD 
new/bazel-workspaces-20191105/grpc/BUILD
--- old/bazel-workspaces-20191011/grpc/BUILD    1970-01-01 01:00:00.000000000 
+0100
+++ new/bazel-workspaces-20191105/grpc/BUILD    2019-11-05 00:15:43.000000000 
+0100
@@ -0,0 +1,26 @@
+cc_library(
+    name = "grpc",
+    hdrs = glob(["thirdparty_build/include/gprc/**/*.h"]),
+    copts = ["-I/usr/include/grpc"],
+    linkopts = [
+        "-lgrpc",
+        "-lgrpc_cronet",
+        "-lgrpc_unsecure",
+    ],
+    visibility = ["//visibility:public"],
+    linkstatic = False,
+)
+
+cc_library(
+    name = "grpc++",
+    hdrs = glob(["thirdparty_build/include/gprc++/**/*.h"]),
+    copts = ["-I/usr/include/gprc++"],
+    linkopts = [
+        "-lgrpc++",
+        "-lgrpc++_error_details",
+        "-lgrpc++_reflection",
+        "-lgprc++_unsecure",
+    ],
+    visibility = ["//visibility:public"],
+    linkstatic = False,
+)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bazel-workspaces-20191011/grpc/WORKSPACE 
new/bazel-workspaces-20191105/grpc/WORKSPACE
--- old/bazel-workspaces-20191011/grpc/WORKSPACE        1970-01-01 
01:00:00.000000000 +0100
+++ new/bazel-workspaces-20191105/grpc/WORKSPACE        2019-11-05 
00:15:43.000000000 +0100
@@ -0,0 +1 @@
+workspace(name = "com_github_grpc_grpc")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bazel-workspaces-20191011/nanopb/BUILD 
new/bazel-workspaces-20191105/nanopb/BUILD
--- old/bazel-workspaces-20191011/nanopb/BUILD  1970-01-01 01:00:00.000000000 
+0100
+++ new/bazel-workspaces-20191105/nanopb/BUILD  2019-11-05 00:15:43.000000000 
+0100
@@ -0,0 +1,8 @@
+cc_library(
+    name = "nanopb",
+    hdrs = glob(["thirdparty_build/include/pb*.h"]),
+    copts = [],
+    linkopts = ["-lprotobuf-nanopb"],
+    visibility = ["//visibility:public"],
+    linkstatic = False,
+)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bazel-workspaces-20191011/nanopb/WORKSPACE 
new/bazel-workspaces-20191105/nanopb/WORKSPACE
--- old/bazel-workspaces-20191011/nanopb/WORKSPACE      1970-01-01 
01:00:00.000000000 +0100
+++ new/bazel-workspaces-20191105/nanopb/WORKSPACE      2019-11-05 
00:15:43.000000000 +0100
@@ -0,0 +1 @@
+workspace(name = "com_github_nanopb_nanopb")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bazel-workspaces-20191011/prometheus-cpp/BUILD 
new/bazel-workspaces-20191105/prometheus-cpp/BUILD
--- old/bazel-workspaces-20191011/prometheus-cpp/BUILD  1970-01-01 
01:00:00.000000000 +0100
+++ new/bazel-workspaces-20191105/prometheus-cpp/BUILD  2019-11-05 
00:15:43.000000000 +0100
@@ -0,0 +1,32 @@
+cc_library(
+    name = "core",
+    hdrs = glob(["thirdparty_build/include/prometheus/**/*.h"]),
+    copts = ["-I/usr/include/prometheus"],
+    linkopts = [
+        "-lprometheus-cpp-core",
+    ],
+    visibility = ["//visibility:public"],
+    linkstatic = False,
+)
+
+cc_library(
+    name = "pull",
+    hdrs = glob(["thirdparty_build/include/prometheus/**/*.h"]),
+    copts = ["-I/usr/include/prometheus"],
+    linkopts = [
+        "-lprometheus-cpp-pull",
+    ],
+    visibility = ["//visibility:public"],
+    linkstatic = False,
+)
+
+cc_library(
+    name = "push",
+    hdrs = glob(["thirdparty_build/include/prometheus/**/*.h"]),
+    copts = ["-I/usr/include/prometheus"],
+    linkopts = [
+        "-lprometheus-cpp-push",
+    ],
+    visibility = ["//visibility:public"],
+    linkstatic = False,
+)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bazel-workspaces-20191011/prometheus-cpp/WORKSPACE 
new/bazel-workspaces-20191105/prometheus-cpp/WORKSPACE
--- old/bazel-workspaces-20191011/prometheus-cpp/WORKSPACE      1970-01-01 
01:00:00.000000000 +0100
+++ new/bazel-workspaces-20191105/prometheus-cpp/WORKSPACE      2019-11-05 
00:15:43.000000000 +0100
@@ -0,0 +1 @@
+workspace(name = "com_github_jupp0r_prometheus_cpp")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bazel-workspaces-20191011/upb/BUILD 
new/bazel-workspaces-20191105/upb/BUILD
--- old/bazel-workspaces-20191011/upb/BUILD     1970-01-01 01:00:00.000000000 
+0100
+++ new/bazel-workspaces-20191105/upb/BUILD     2019-11-05 00:15:43.000000000 
+0100
@@ -0,0 +1,16 @@
+cc_library(
+    name = "upb",
+    hdrs = glob(["thirdparty_build/include/upb/**/*.h"]),
+    copts = ["-I/usr/include/upb"],
+    linkopts = [
+        "-ldescriptor_upbproto",
+        "-lupb",
+        "-lupb_handlers",
+        "-lupb_json",
+        "-lupb_legacy_msg_reflection",
+        "-lupb_pb",
+        "-lupb_reflection",
+    ],
+    visibility = ["//visibility:public"],
+    linkstatic = False,
+)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bazel-workspaces-20191011/upb/WORKSPACE 
new/bazel-workspaces-20191105/upb/WORKSPACE
--- old/bazel-workspaces-20191011/upb/WORKSPACE 1970-01-01 01:00:00.000000000 
+0100
+++ new/bazel-workspaces-20191105/upb/WORKSPACE 2019-11-05 00:15:43.000000000 
+0100
@@ -0,0 +1 @@
+workspace(name = "upb")

++++++ bazel-workspaces.obsinfo ++++++
--- /var/tmp/diff_new_pack.oorG09/_old  2019-11-07 23:21:38.552865626 +0100
+++ /var/tmp/diff_new_pack.oorG09/_new  2019-11-07 23:21:38.556865630 +0100
@@ -1,5 +1,5 @@
 name: bazel-workspaces
-version: 20191011
-mtime: 1570750746
-commit: 28a1bcdf66c4a12189856a06c1b541f010a95015
+version: 20191105
+mtime: 1572909343
+commit: 5db0b6e72672aa25274509f167d3262d372b78f7
 


Reply via email to