commit python-dephell-shells for openSUSE:Factory

2019-12-21 Thread root
Hello community,

here is the log from the commit of package python-dephell-shells for 
openSUSE:Factory checked in at 2019-12-21 12:29:44

Comparing /work/SRC/openSUSE:Factory/python-dephell-shells (Old)
 and  /work/SRC/openSUSE:Factory/.python-dephell-shells.new.6675 (New)


Package is "python-dephell-shells"

Sat Dec 21 12:29:44 2019 rev:3 rq:757888 version:0.1.4

Changes:

--- 
/work/SRC/openSUSE:Factory/python-dephell-shells/python-dephell-shells.changes  
2019-09-13 15:05:07.585259184 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-dephell-shells.new.6675/python-dephell-shells.changes
2019-12-21 12:29:48.395318304 +0100
@@ -1,0 +2,6 @@
+Wed Dec 18 16:06:33 CET 2019 - Matej Cepl 
+
+- Update to 0.1.4:
+  - Add +sh shell
+
+---

Old:

  dephell_shells-0.1.3.tar.gz

New:

  dephell_shells-0.1.4.tar.gz



Other differences:
--
++ python-dephell-shells.spec ++
--- /var/tmp/diff_new_pack.0HGiQY/_old  2019-12-21 12:29:48.843318517 +0100
+++ /var/tmp/diff_new_pack.0HGiQY/_new  2019-12-21 12:29:48.843318517 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-dephell-shells
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-dephell-shells
-Version:0.1.3
+Version:0.1.4
 Release:0
 Summary:Dephell plugin to activate virtual environment for the current 
shell
 License:MIT

++ dephell_shells-0.1.3.tar.gz -> dephell_shells-0.1.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dephell_shells-0.1.3/PKG-INFO 
new/dephell_shells-0.1.4/PKG-INFO
--- old/dephell_shells-0.1.3/PKG-INFO   1970-01-01 01:00:00.0 +0100
+++ new/dephell_shells-0.1.4/PKG-INFO   1970-01-01 01:00:00.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: dephell-shells
-Version: 0.1.3
+Version: 0.1.4
 Summary: activate virtual environment for current shell
 Project-URL: Repository, https://github.com/dephell/dephell_venvs
 Author: Gram
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dephell_shells-0.1.3/dephell_shells/_shells.py 
new/dephell_shells-0.1.4/dephell_shells/_shells.py
--- old/dephell_shells-0.1.3/dephell_shells/_shells.py  2019-04-19 
15:43:24.0 +0200
+++ new/dephell_shells-0.1.4/dephell_shells/_shells.py  2019-12-18 
15:58:21.0 +0100
@@ -44,6 +44,17 @@
 
 
 @_register_shell
+class ShShell(BaseShell):
+name = 'sh'
+activate = 'activate'
+interactive = True
+
+@property
+def command(self) -> str:
+return '. "{}"'.format(str(self.entrypoint))
+
+
+@_register_shell
 class FishShell(BaseShell):
 name = 'fish'
 activate = 'activate.fish'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dephell_shells-0.1.3/dephell_shells.egg-info/PKG-INFO 
new/dephell_shells-0.1.4/dephell_shells.egg-info/PKG-INFO
--- old/dephell_shells-0.1.3/dephell_shells.egg-info/PKG-INFO   1970-01-01 
01:00:00.0 +0100
+++ new/dephell_shells-0.1.4/dephell_shells.egg-info/PKG-INFO   1970-01-01 
01:00:00.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: dephell-shells
-Version: 0.1.3
+Version: 0.1.4
 Summary: activate virtual environment for current shell
 Project-URL: Repository, https://github.com/dephell/dephell_venvs
 Author: Gram
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dephell_shells-0.1.3/dephell_shells.egg-info/SOURCES.txt 
new/dephell_shells-0.1.4/dephell_shells.egg-info/SOURCES.txt
--- old/dephell_shells-0.1.3/dephell_shells.egg-info/SOURCES.txt
1970-01-01 01:00:00.0 +0100
+++ new/dephell_shells-0.1.4/dephell_shells.egg-info/SOURCES.txt
1970-01-01 01:00:00.0 +0100
@@ -2,9 +2,9 @@
 README.rst
 setup.cfg
 setup.py
+dephell_shells/_manager.py
 dephell_shells/_shells.py
-dephell_shells/__main__.py
+dephell_shells/_base.py
 dephell_shells/__init__.py
-dephell_shells/_utils.py
-dephell_shells/_manager.py
-dephell_shells/_base.py
\ No newline at end of file
+dephell_shells/__main__.py
+dephell_shells/_utils.py
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dephell_shells-0.1.3/setup.py 
new/dephell_shells-0.1.4/setup.py
--- old/dephell_shells-0.1.3/setup.py   2019-05-23 

commit python-dephell-shells for openSUSE:Factory

2019-09-13 Thread root
Hello community,

here is the log from the commit of package python-dephell-shells for 
openSUSE:Factory checked in at 2019-09-13 15:03:37

Comparing /work/SRC/openSUSE:Factory/python-dephell-shells (Old)
 and  /work/SRC/openSUSE:Factory/.python-dephell-shells.new.7948 (New)


Package is "python-dephell-shells"

Fri Sep 13 15:03:37 2019 rev:2 rq:730643 version:0.1.3

Changes:

--- 
/work/SRC/openSUSE:Factory/python-dephell-shells/python-dephell-shells.changes  
2019-08-13 13:26:56.981328619 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-dephell-shells.new.7948/python-dephell-shells.changes
2019-09-13 15:05:07.585259184 +0200
@@ -1,0 +2,6 @@
+Fri Sep 13 09:03:07 UTC 2019 - Tomáš Chvátal 
+
+- Update to 0.1.3:
+  * distribute tests
+
+---

Old:

  dephell_shells-0.1.2.tar.gz

New:

  dephell_shells-0.1.3.tar.gz



Other differences:
--
++ python-dephell-shells.spec ++
--- /var/tmp/diff_new_pack.0mH10c/_old  2019-09-13 15:05:08.277259037 +0200
+++ /var/tmp/diff_new_pack.0mH10c/_new  2019-09-13 15:05:08.277259037 +0200
@@ -12,33 +12,34 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
+#
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-dephell-shells
-Version:0.1.2
+Version:0.1.3
 Release:0
-License:MIT
 Summary:Dephell plugin to activate virtual environment for the current 
shell
-Url:https://github.com/dephell/dephell_shells
+License:MIT
 Group:  Development/Languages/Python
-Source: 
https://files.pythonhosted.org/packages/source/d/dephell-shells/dephell_shells-%{version}.tar.gz
-BuildRequires:  python-rpm-macros
+URL:https://github.com/dephell/dephell_shells
+Source: 
https://files.pythonhosted.org/packages/source/d/dephell_shells/dephell_shells-%{version}.tar.gz
 BuildRequires:  %{python_module base >= 3.5}
 BuildRequires:  %{python_module setuptools}
-# SECTION test requirements
-BuildRequires:  %{python_module attrs}
-BuildRequires:  %{python_module pexpect}
-BuildRequires:  %{python_module shellingham}
-# /SECTION
 BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
 Requires:   python-attrs
 Requires:   python-pexpect
 Requires:   python-shellingham
 BuildArch:  noarch
-
+# SECTION test requirements
+BuildRequires:  %{python_module attrs}
+BuildRequires:  %{python_module pexpect}
+BuildRequires:  %{python_module pytest}
+BuildRequires:  %{python_module shellingham}
+# /SECTION
 %python_subpackages
 
 %description
@@ -54,6 +55,10 @@
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
+%check
+# name and path expect the default shell to be bash
+%pytest -k 'not test_name and not test_path'
+
 %files %{python_files}
 %license LICENSE
 %doc README.md

++ dephell_shells-0.1.2.tar.gz -> dephell_shells-0.1.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dephell_shells-0.1.2/PKG-INFO 
new/dephell_shells-0.1.3/PKG-INFO
--- old/dephell_shells-0.1.2/PKG-INFO   1970-01-01 01:00:00.0 +0100
+++ new/dephell_shells-0.1.3/PKG-INFO   1970-01-01 01:00:00.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
-Name: dephell_shells
-Version: 0.1.2
+Name: dephell-shells
+Version: 0.1.3
 Summary: activate virtual environment for current shell
 Project-URL: Repository, https://github.com/dephell/dephell_venvs
 Author: Gram
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dephell_shells-0.1.2/dephell_shells.egg-info/PKG-INFO 
new/dephell_shells-0.1.3/dephell_shells.egg-info/PKG-INFO
--- old/dephell_shells-0.1.2/dephell_shells.egg-info/PKG-INFO   1970-01-01 
01:00:00.0 +0100
+++ new/dephell_shells-0.1.3/dephell_shells.egg-info/PKG-INFO   1970-01-01 
01:00:00.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
-Name: dephell_shells
-Version: 0.1.2
+Name: dephell-shells
+Version: 0.1.3
 Summary: activate virtual environment for current shell
 Project-URL: Repository, https://github.com/dephell/dephell_venvs
 Author: Gram
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dephell_shells-0.1.2/setup.py 
new/dephell_shells-0.1.3/setup.py
--- old/dephell_shells-0.1.2/setup.py   2019-05-19 14:56:13.0 +0200
+++ new/dephell_shells-0.1.3/setup.py   2019-05-23 20:43:22.0 +0200
@@ -13,13 +13,15 @@
 
 readme = ''