Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package opi for openSUSE:Factory checked in 
at 2021-10-18 21:59:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/opi (Old)
 and      /work/SRC/openSUSE:Factory/.opi.new.1890 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "opi"

Mon Oct 18 21:59:41 2021 rev:24 rq:925968 version:2.4.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/opi/opi.changes  2021-10-12 21:50:55.188006270 
+0200
+++ /work/SRC/openSUSE:Factory/.opi.new.1890/opi.changes        2021-10-18 
22:02:50.138121501 +0200
@@ -1,0 +2,7 @@
+Mon Oct 11 17:29:55 UTC 2021 - Dominik Heidler <dheid...@suse.de>
+
+- Version 2.4.1
+  * Changed
+    - Don't expect output to be a tty
+
+-------------------------------------------------------------------

Old:
----
  opi-2.4.0.tar.gz

New:
----
  opi-2.4.1.tar.gz

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

Other differences:
------------------
++++++ opi.spec ++++++
--- /var/tmp/diff_new_pack.P8crxn/_old  2021-10-18 22:02:50.606121839 +0200
+++ /var/tmp/diff_new_pack.P8crxn/_new  2021-10-18 22:02:50.606121839 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           opi
-Version:        2.4.0
+Version:        2.4.1
 Release:        0
 Summary:        OBS Package Installer (CLI)
 License:        GPL-3.0-only

++++++ opi-2.4.0.tar.gz -> opi-2.4.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.4.0/CHANGELOG.md new/opi-2.4.1/CHANGELOG.md
--- old/opi-2.4.0/CHANGELOG.md  2021-10-11 19:03:21.000000000 +0200
+++ new/opi-2.4.1/CHANGELOG.md  2021-10-11 19:28:58.000000000 +0200
@@ -7,6 +7,12 @@
 
 ## [Unreleased]
 
+## [2.4.1] - 2021-10-11
+
+## Changed
+
+- Don't expect output to be a tty
+
 ## [2.4.0] - 2021-10-11
 
 ## Added
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.4.0/opi/__init__.py 
new/opi-2.4.1/opi/__init__.py
--- old/opi-2.4.0/opi/__init__.py       2021-10-11 19:03:21.000000000 +0200
+++ new/opi-2.4.1/opi/__init__.py       2021-10-11 19:28:58.000000000 +0200
@@ -306,7 +306,7 @@
        """
        if text:
                text_len_lines = len(text.split('\n'))
-               if text_len_lines < (os.get_terminal_size().lines-1):
+               if not sys.stdout.isatty() or text_len_lines < 
(os.get_terminal_size().lines-1):
                        # no pager needed
                        print(text)
                        input_string = input(question + ' ')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.4.0/opi/version.py new/opi-2.4.1/opi/version.py
--- old/opi-2.4.0/opi/version.py        2021-10-11 19:03:21.000000000 +0200
+++ new/opi-2.4.1/opi/version.py        2021-10-11 19:28:58.000000000 +0200
@@ -1 +1 @@
-__version__ = '2.4.0'
+__version__ = '2.4.1'

Reply via email to