Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package buildstream for openSUSE:Factory 
checked in at 2022-03-19 22:20:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/buildstream (Old)
 and      /work/SRC/openSUSE:Factory/.buildstream.new.25692 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "buildstream"

Sat Mar 19 22:20:33 2022 rev:21 rq:962869 version:1.6.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/buildstream/buildstream.changes  2022-03-14 
19:37:27.678154793 +0100
+++ /work/SRC/openSUSE:Factory/.buildstream.new.25692/buildstream.changes       
2022-03-19 22:22:47.120941450 +0100
@@ -1,0 +2,12 @@
+Fri Mar 18 15:16:33 UTC 2022 - Bj??rn Lie <bjorn....@gmail.com>
+
+- Update to version 1.6.5:
+  + Make it easier to override parameters to `make` in the `make`
+    element.
+  + ostree: Remove `--mirror` parameter which has been causing some
+    issues.
+  + Fix test suite to work on some CI runners which hang while
+    resolving localhost when trying to open a port for the CAS
+    server.
+
+-------------------------------------------------------------------

Old:
----
  buildstream-1.6.4.tar.gz

New:
----
  buildstream-1.6.5.tar.gz

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

Other differences:
------------------
++++++ buildstream.spec ++++++
--- /var/tmp/diff_new_pack.sEyOhB/_old  2022-03-19 22:22:47.536941976 +0100
+++ /var/tmp/diff_new_pack.sEyOhB/_new  2022-03-19 22:22:47.540941981 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           buildstream
-Version:        1.6.4
+Version:        1.6.5
 Release:        0
 Summary:        A framework for modelling build pipelines in YAML
 License:        LGPL-2.1-or-later

++++++ buildstream-1.6.4.tar.gz -> buildstream-1.6.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/buildstream-1.6.4/.github/run-ci.sh 
new/buildstream-1.6.5/.github/run-ci.sh
--- old/buildstream-1.6.4/.github/run-ci.sh     2022-02-24 04:58:24.000000000 
+0100
+++ new/buildstream-1.6.5/.github/run-ci.sh     2022-03-18 07:00:19.000000000 
+0100
@@ -62,7 +62,7 @@
 
 # Lazily ensure that the script exits when a command fails
 #
-set -x
+set -e
 
 if [ -z "${test_names}" ]; then
     runTest "lint"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/buildstream-1.6.4/NEWS new/buildstream-1.6.5/NEWS
--- old/buildstream-1.6.4/NEWS  2022-02-24 04:58:24.000000000 +0100
+++ new/buildstream-1.6.5/NEWS  2022-03-18 07:00:19.000000000 +0100
@@ -1,4 +1,15 @@
 =================
+buildstream 1.6.5
+=================
+
+  o Make it easier to override parameters to `make` in the `make` element
+
+  o ostree: Remove `--mirror` parameter which has been causing some issues
+
+  o Fix test suite to work on some CI runners which hang while resolving 
localhost
+    when trying to open a port for the CAS server
+
+=================
 buildstream 1.6.4
 =================
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/buildstream-1.6.4/buildstream/_version.py 
new/buildstream-1.6.5/buildstream/_version.py
--- old/buildstream-1.6.4/buildstream/_version.py       2022-02-24 
04:58:24.000000000 +0100
+++ new/buildstream-1.6.5/buildstream/_version.py       2022-03-18 
07:00:19.000000000 +0100
@@ -24,9 +24,9 @@
     # setup.py/versioneer.py will grep for the variable names, so they must
     # each be defined on a line of their own. _version.py will just call
     # get_keywords().
-    git_refnames = " (tag: 1.6.4)"
-    git_full = "b480ab300ffa05167afefe7e4d558a595b6c89a7"
-    git_date = "2022-02-24 12:58:24 +0900"
+    git_refnames = " (tag: 1.6.5)"
+    git_full = "24fe2aece9392d6a5af7c2b2351b8ee2984f8084"
+    git_date = "2022-03-18 15:00:19 +0900"
     keywords = {"refnames": git_refnames, "full": git_full, "date": git_date}
     return keywords
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/buildstream-1.6.4/buildstream/plugins/elements/make.yaml 
new/buildstream-1.6.5/buildstream/plugins/elements/make.yaml
--- old/buildstream-1.6.4/buildstream/plugins/elements/make.yaml        
2022-02-24 04:58:24.000000000 +0100
+++ new/buildstream-1.6.5/buildstream/plugins/elements/make.yaml        
2022-03-18 07:00:19.000000000 +0100
@@ -1,8 +1,14 @@
 # make default configurations
 
 variables:
-  make: make PREFIX="%{prefix}"
-  make-install: make -j1 PREFIX="%{prefix}" DESTDIR="%{install-root}" install
+  make-args: >-
+    PREFIX="%{prefix}"
+  make-install-args: >-
+    %{make-args}
+    DESTDIR="%{install-root}"
+    install
+  make: make %{make-args}
+  make-install: make -j1 %{make-install-args}
 
   # Set this if the sources cannot handle parallelization.
   #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/buildstream-1.6.4/buildstream/plugins/sources/ostree.py 
new/buildstream-1.6.5/buildstream/plugins/sources/ostree.py
--- old/buildstream-1.6.4/buildstream/plugins/sources/ostree.py 2022-02-24 
04:58:24.000000000 +0100
+++ new/buildstream-1.6.5/buildstream/plugins/sources/ostree.py 2022-03-18 
07:00:19.000000000 +0100
@@ -123,7 +123,6 @@
                     "pull",
                     "--repo",
                     self.mirror,
-                    "--mirror",
                     remote_name,
                     self.tracking,
                 ],
@@ -155,7 +154,6 @@
                     "pull",
                     "--repo",
                     self.mirror,
-                    "--mirror",
                     remote_name,
                     self.ref,
                 ],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/buildstream-1.6.4/tests/testutils/artifactshare.py 
new/buildstream-1.6.5/tests/testutils/artifactshare.py
--- old/buildstream-1.6.4/tests/testutils/artifactshare.py      2022-02-24 
04:58:24.000000000 +0100
+++ new/buildstream-1.6.5/tests/testutils/artifactshare.py      2022-03-18 
07:00:19.000000000 +0100
@@ -89,7 +89,7 @@
                                max_head_size=self.max_head_size,
                                min_head_size=self.min_head_size,
                                enable_push=True)
-        port = server.add_insecure_port('localhost:0')
+        port = server.add_insecure_port('127.0.0.1:0')
 
         server.start()
 

Reply via email to