Hello community,
here is the log from the commit of package bazel-workspaces for
openSUSE:Factory checked in at 2020-01-17 16:07:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bazel-workspaces (Old)
and /work/SRC/openSUSE:Factory/.bazel-workspaces.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bazel-workspaces"
Fri Jan 17 16:07:49 2020 rev:4 rq:765221 version:20200113
Changes:
--------
--- /work/SRC/openSUSE:Factory/bazel-workspaces/bazel-workspaces.changes
2019-11-07 23:21:37.168864141 +0100
+++
/work/SRC/openSUSE:Factory/.bazel-workspaces.new.26092/bazel-workspaces.changes
2020-01-17 16:08:09.832518860 +0100
@@ -1,0 +2,7 @@
+Mon Jan 13 21:30:11 UTC 2020 - [email protected]
+
+- Update to version 20200113:
+ * Add workspace for re2
+ * Add workspace for OpenSSL
+
+-------------------------------------------------------------------
Old:
----
bazel-workspaces-20191105.obscpio
New:
----
bazel-workspaces-20200113.obscpio
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ bazel-workspaces.spec ++++++
--- /var/tmp/diff_new_pack.RfFbtD/_old 2020-01-17 16:08:10.396519127 +0100
+++ /var/tmp/diff_new_pack.RfFbtD/_new 2020-01-17 16:08:10.400519129 +0100
@@ -1,7 +1,7 @@
#
# spec file for package bazel-workspaces
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 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
@@ -17,7 +17,7 @@
Name: bazel-workspaces
-Version: 20191105
+Version: 20200113
Release: 0
Summary: Bazel workspaces for libraries packaged in openSUSE
License: Apache-2.0
++++++ _service ++++++
--- /var/tmp/diff_new_pack.RfFbtD/_old 2020-01-17 16:08:10.428519142 +0100
+++ /var/tmp/diff_new_pack.RfFbtD/_new 2020-01-17 16:08:10.432519144 +0100
@@ -5,7 +5,7 @@
<param name="changesgenerate">enable</param>
<param name="filename">bazel-workspaces</param>
<param name="versionformat">%cd</param>
- <param name="revision">5db0b6e72672aa25274509f167d3262d372b78f7</param>
+ <param name="revision">7c8f2656c458e1fc3c5177f1ab92a6f8563c0ca6</param>
</service>
<service mode="buildtime" name="tar" />
<service mode="buildtime" name="recompress">
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.RfFbtD/_old 2020-01-17 16:08:10.448519152 +0100
+++ /var/tmp/diff_new_pack.RfFbtD/_new 2020-01-17 16:08:10.448519152 +0100
@@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param
name="url">https://github.com/kubic-project/bazel-workspaces</param>
- <param
name="changesrevision">5db0b6e72672aa25274509f167d3262d372b78f7</param></service></servicedata>
\ No newline at end of file
+ <param
name="changesrevision">7c8f2656c458e1fc3c5177f1ab92a6f8563c0ca6</param></service></servicedata>
\ No newline at end of file
++++++ bazel-workspaces-20191105.obscpio -> bazel-workspaces-20200113.obscpio
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/bazel-workspaces-20191105/openssl/BUILD
new/bazel-workspaces-20200113/openssl/BUILD
--- old/bazel-workspaces-20191105/openssl/BUILD 1970-01-01 01:00:00.000000000
+0100
+++ new/bazel-workspaces-20200113/openssl/BUILD 2020-01-13 22:25:55.000000000
+0100
@@ -0,0 +1,24 @@
+cc_library(
+ name = "crypto",
+ hdrs = glob(["thirdparty_build/include/openssl/**/*.h"]),
+ copts = ["-I/usr/include/openssl"],
+ linkopts = [
+ "-lcrypto",
+ ],
+ visibility = ["//visibility:public"],
+ linkstatic = False,
+)
+
+cc_library(
+ name = "ssl",
+ hdrs = glob(["thirdparty_build/include/openssl/**/*.h"]),
+ copts = ["-I/usr/include/openssl"],
+ linkopts = [
+ "-lssl",
+ ],
+ visibility = ["//visibility:public"],
+ linkstatic = False,
+ deps = [
+ ":crypto",
+ ],
+)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/bazel-workspaces-20191105/openssl/WORKSPACE
new/bazel-workspaces-20200113/openssl/WORKSPACE
--- old/bazel-workspaces-20191105/openssl/WORKSPACE 1970-01-01
01:00:00.000000000 +0100
+++ new/bazel-workspaces-20200113/openssl/WORKSPACE 2020-01-13
22:25:55.000000000 +0100
@@ -0,0 +1 @@
+workspace(name = "openssl")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/bazel-workspaces-20191105/re2/BUILD
new/bazel-workspaces-20200113/re2/BUILD
--- old/bazel-workspaces-20191105/re2/BUILD 1970-01-01 01:00:00.000000000
+0100
+++ new/bazel-workspaces-20200113/re2/BUILD 2020-01-13 22:25:55.000000000
+0100
@@ -0,0 +1,10 @@
+cc_library(
+ name = "re2",
+ hdrs = glob(["thirdparty_build/include/re2/**/*.h"]),
+ copts = ["-I/usr/include/re2"],
+ linkopts = [
+ "-lre2",
+ ],
+ visibility = ["//visibility:public"],
+ linkstatic = False,
+)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/bazel-workspaces-20191105/re2/WORKSPACE
new/bazel-workspaces-20200113/re2/WORKSPACE
--- old/bazel-workspaces-20191105/re2/WORKSPACE 1970-01-01 01:00:00.000000000
+0100
+++ new/bazel-workspaces-20200113/re2/WORKSPACE 2020-01-13 22:25:55.000000000
+0100
@@ -0,0 +1 @@
+workspace(name = "com_googlesource_code_re2")
++++++ bazel-workspaces.obsinfo ++++++
--- /var/tmp/diff_new_pack.RfFbtD/_old 2020-01-17 16:08:10.536519193 +0100
+++ /var/tmp/diff_new_pack.RfFbtD/_new 2020-01-17 16:08:10.536519193 +0100
@@ -1,5 +1,5 @@
name: bazel-workspaces
-version: 20191105
-mtime: 1572909343
-commit: 5db0b6e72672aa25274509f167d3262d372b78f7
+version: 20200113
+mtime: 1578950755
+commit: 7c8f2656c458e1fc3c5177f1ab92a6f8563c0ca6