Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package nautilus-terminal for
openSUSE:Factory checked in at 2022-09-21 14:42:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nautilus-terminal (Old)
and /work/SRC/openSUSE:Factory/.nautilus-terminal.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "nautilus-terminal"
Wed Sep 21 14:42:11 2022 rev:20 rq:1003788 version:4.0.6
Changes:
--------
--- /work/SRC/openSUSE:Factory/nautilus-terminal/nautilus-terminal.changes
2022-04-25 23:35:30.822415310 +0200
+++
/work/SRC/openSUSE:Factory/.nautilus-terminal.new.2083/nautilus-terminal.changes
2022-09-21 14:43:04.885862949 +0200
@@ -1,0 +2,9 @@
+Thu Sep 15 10:07:41 UTC 2022 - Bj??rn Lie <[email protected]>
+
+- Update to version 4.0.6:
+ + README: Fix reStructuredText syntax
+- Changes from version 4.0.5:
+ + Update supported Python versions
+ + Allow detection of nautilus-terminal from the shell
+
+-------------------------------------------------------------------
@@ -5,2 +14,2 @@
- * Disable terminal audible bell
- * Fix a typo in the GSettings schema
+ + Disable terminal audible bell
+ + Fix a typo in the GSettings schema
Old:
----
nautilus_terminal-4.0.4.tar.gz
New:
----
nautilus_terminal-4.0.6.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ nautilus-terminal.spec ++++++
--- /var/tmp/diff_new_pack.zMERRk/_old 2022-09-21 14:43:06.113866355 +0200
+++ /var/tmp/diff_new_pack.zMERRk/_new 2022-09-21 14:43:06.113866355 +0200
@@ -17,7 +17,7 @@
Name: nautilus-terminal
-Version: 4.0.4
+Version: 4.0.6
Release: 0
Summary: A terminal embedded in Nautilus, the GNOME's file browser
License: GPL-3.0-only
++++++ nautilus_terminal-4.0.4.tar.gz -> nautilus_terminal-4.0.6.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/nautilus_terminal-4.0.4/PKG-INFO
new/nautilus_terminal-4.0.6/PKG-INFO
--- old/nautilus_terminal-4.0.4/PKG-INFO 2021-12-05 15:52:20.097081700
+0100
+++ new/nautilus_terminal-4.0.6/PKG-INFO 2022-07-25 18:13:18.679833400
+0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: nautilus_terminal
-Version: 4.0.4
+Version: 4.0.6
Summary: A terminal embedded in Nautilus, the GNOME's file browser
Home-page: https://github.com/flozz/nautilus-terminal
Author: Fabien LOISON
@@ -305,6 +305,25 @@
Finally restart Nautilus.
+Detect if running inside nautilus-terminal
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+To detect whether the shell is running inside nautilus-terminal, there is an
+environment variable exposed when executing the shell::
+
+ INSIDE_NAUTILUS_PYTHON=1
+
+It is useful in case you want to avoid running things inside the
+nautilus-terminal::
+
+ ~/.bashrc:
+
+ # Run termux only if not inside nautilus-terminal
+ if [ -z "$INSIDE_NAUTILUS_PYTHON" ]; then
+ tmux -attach
+ fi
+
+
Reporting an issue
~~~~~~~~~~~~~~~~~~
@@ -390,6 +409,14 @@
Changelog
---------
+* **4.0.5 / 4.0.6:**
+
+ * Enforce the presence of the ``INSIDE_NAUTILUS_PYTHON`` variable to allow
+ shells to detect they are running inside Nautilus Terminal (@blackdaemon,
+ #77, #80).
+
+ * v4.0.6 only fix a syntax error in the README.
+
* **4.0.4:**
* Disable terminal audible bell (#66)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/nautilus_terminal-4.0.4/README.rst
new/nautilus_terminal-4.0.6/README.rst
--- old/nautilus_terminal-4.0.4/README.rst 2021-12-05 15:52:08.000000000
+0100
+++ new/nautilus_terminal-4.0.6/README.rst 2022-07-25 18:13:09.000000000
+0200
@@ -292,6 +292,25 @@
Finally restart Nautilus.
+Detect if running inside nautilus-terminal
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+To detect whether the shell is running inside nautilus-terminal, there is an
+environment variable exposed when executing the shell::
+
+ INSIDE_NAUTILUS_PYTHON=1
+
+It is useful in case you want to avoid running things inside the
+nautilus-terminal::
+
+ ~/.bashrc:
+
+ # Run termux only if not inside nautilus-terminal
+ if [ -z "$INSIDE_NAUTILUS_PYTHON" ]; then
+ tmux -attach
+ fi
+
+
Reporting an issue
~~~~~~~~~~~~~~~~~~
@@ -377,6 +396,14 @@
Changelog
---------
+* **4.0.5 / 4.0.6:**
+
+ * Enforce the presence of the ``INSIDE_NAUTILUS_PYTHON`` variable to allow
+ shells to detect they are running inside Nautilus Terminal (@blackdaemon,
+ #77, #80).
+
+ * v4.0.6 only fix a syntax error in the README.
+
* **4.0.4:**
* Disable terminal audible bell (#66)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/nautilus_terminal-4.0.4/nautilus_terminal/__init__.py
new/nautilus_terminal-4.0.6/nautilus_terminal/__init__.py
--- old/nautilus_terminal-4.0.4/nautilus_terminal/__init__.py 2021-12-05
15:52:08.000000000 +0100
+++ new/nautilus_terminal-4.0.6/nautilus_terminal/__init__.py 2022-07-25
18:13:09.000000000 +0200
@@ -1,3 +1,3 @@
-VERSION = "4.0.4"
+VERSION = "4.0.6"
APPLICATION_ID = "org.flozz.nautilus-terminal"
APPLICATION_NAME = "Nautilus Terminal"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/nautilus_terminal-4.0.4/nautilus_terminal/nautilus_terminal.py
new/nautilus_terminal-4.0.6/nautilus_terminal/nautilus_terminal.py
--- old/nautilus_terminal-4.0.4/nautilus_terminal/nautilus_terminal.py
2021-12-05 15:52:08.000000000 +0100
+++ new/nautilus_terminal-4.0.6/nautilus_terminal/nautilus_terminal.py
2022-07-25 18:13:09.000000000 +0200
@@ -493,7 +493,7 @@
Vte.PtyFlags.DEFAULT,
self._cwd,
[shell],
- None,
+ ["INSIDE_NAUTILUS_PYTHON=1"],
GLib.SpawnFlags.SEARCH_PATH,
None,
None,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/nautilus_terminal-4.0.4/nautilus_terminal.egg-info/PKG-INFO
new/nautilus_terminal-4.0.6/nautilus_terminal.egg-info/PKG-INFO
--- old/nautilus_terminal-4.0.4/nautilus_terminal.egg-info/PKG-INFO
2021-12-05 15:52:20.000000000 +0100
+++ new/nautilus_terminal-4.0.6/nautilus_terminal.egg-info/PKG-INFO
2022-07-25 18:13:18.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: nautilus-terminal
-Version: 4.0.4
+Version: 4.0.6
Summary: A terminal embedded in Nautilus, the GNOME's file browser
Home-page: https://github.com/flozz/nautilus-terminal
Author: Fabien LOISON
@@ -305,6 +305,25 @@
Finally restart Nautilus.
+Detect if running inside nautilus-terminal
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+To detect whether the shell is running inside nautilus-terminal, there is an
+environment variable exposed when executing the shell::
+
+ INSIDE_NAUTILUS_PYTHON=1
+
+It is useful in case you want to avoid running things inside the
+nautilus-terminal::
+
+ ~/.bashrc:
+
+ # Run termux only if not inside nautilus-terminal
+ if [ -z "$INSIDE_NAUTILUS_PYTHON" ]; then
+ tmux -attach
+ fi
+
+
Reporting an issue
~~~~~~~~~~~~~~~~~~
@@ -390,6 +409,14 @@
Changelog
---------
+* **4.0.5 / 4.0.6:**
+
+ * Enforce the presence of the ``INSIDE_NAUTILUS_PYTHON`` variable to allow
+ shells to detect they are running inside Nautilus Terminal (@blackdaemon,
+ #77, #80).
+
+ * v4.0.6 only fix a syntax error in the README.
+
* **4.0.4:**
* Disable terminal audible bell (#66)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/nautilus_terminal-4.0.4/pyproject.toml
new/nautilus_terminal-4.0.6/pyproject.toml
--- old/nautilus_terminal-4.0.4/pyproject.toml 2021-12-05 15:52:08.000000000
+0100
+++ new/nautilus_terminal-4.0.6/pyproject.toml 2022-07-25 18:13:09.000000000
+0200
@@ -1,3 +1,3 @@
[tool.black]
line-length = 79
-target-version = ['py27']
+target-version = ['py37']