Hello community,
here is the log from the commit of package python-configshell-fb for
openSUSE:Factory checked in at 2017-09-12 19:53:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-configshell-fb (Old)
and /work/SRC/openSUSE:Factory/.python-configshell-fb.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-configshell-fb"
Tue Sep 12 19:53:10 2017 rev:4 rq:521002 version:1.23
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-configshell-fb/python-configshell-fb.changes
2017-04-06 11:00:25.614197367 +0200
+++
/work/SRC/openSUSE:Factory/.python-configshell-fb.new/python-configshell-fb.changes
2017-09-12 19:53:12.229561891 +0200
@@ -1,0 +2,6 @@
+Thu Aug 17 06:11:22 UTC 2017 - [email protected]
+
+- Update to version 1.1.23fb
+ *improving ALUA and TCMU support
+
+-------------------------------------------------------------------
Old:
----
v1.1.fb22.tar.gz
New:
----
v1.1.fb23.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-configshell-fb.spec ++++++
--- /var/tmp/diff_new_pack.RGxN72/_old 2017-09-12 19:53:13.385399374 +0200
+++ /var/tmp/diff_new_pack.RGxN72/_new 2017-09-12 19:53:13.389398812 +0200
@@ -17,10 +17,10 @@
%define oname configshell-fb
-%define realver 1.1.fb22
+%define realver 1.1.fb23
Name: python-%{oname}
-Version: 1.22
+Version: 1.23
Release: 1%{?dist}
Url: http://github.com/open-iscsi/configshell-fb
Summary: A Python library for building configuration shells
++++++ v1.1.fb22.tar.gz -> v1.1.fb23.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/configshell-fb-1.1.fb22/configshell/shell.py
new/configshell-fb-1.1.fb23/configshell/shell.py
--- old/configshell-fb-1.1.fb22/configshell/shell.py 2017-01-04
19:40:58.000000000 +0100
+++ new/configshell-fb-1.1.fb23/configshell/shell.py 2017-03-02
00:21:57.000000000 +0100
@@ -48,7 +48,17 @@
tty=True
else:
tty=False
+
+ # remember the original setting
+ oldTerm = os.environ['TERM']
+ os.environ['TERM'] = ''
+ import readline
+
+ # restore the orignal TERM setting
+ os.environ['TERM'] = oldTerm
+ del oldTerm
+
# Pyparsing helper to group the location of a token and its value
#
http://stackoverflow.com/questions/18706631/pyparsing-get-token-location-in-results-name
locator = Empty().setParseAction(lambda s, l, t: l)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/configshell-fb-1.1.fb22/setup.py
new/configshell-fb-1.1.fb23/setup.py
--- old/configshell-fb-1.1.fb22/setup.py 2017-01-04 19:40:58.000000000
+0100
+++ new/configshell-fb-1.1.fb23/setup.py 2017-03-02 00:21:57.000000000
+0100
@@ -20,7 +20,7 @@
setup(
name = 'configshell-fb',
- version = '1.1.22',
+ version = '1.1.23',
description = 'A framework to implement simple but nice CLIs.',
license = 'Apache 2.0',
maintainer = 'Andy Grover',