commit python-nodeenv for openSUSE:Factory

2020-09-16 Thread root
Hello community,

here is the log from the commit of package python-nodeenv for openSUSE:Factory 
checked in at 2020-09-16 19:41:48

Comparing /work/SRC/openSUSE:Factory/python-nodeenv (Old)
 and  /work/SRC/openSUSE:Factory/.python-nodeenv.new.4249 (New)


Package is "python-nodeenv"

Wed Sep 16 19:41:48 2020 rev:5 rq:834890 version:1.5.0

Changes:

--- /work/SRC/openSUSE:Factory/python-nodeenv/python-nodeenv.changes
2020-06-15 20:29:18.342123885 +0200
+++ /work/SRC/openSUSE:Factory/.python-nodeenv.new.4249/python-nodeenv.changes  
2020-09-16 19:42:37.987016750 +0200
@@ -1,0 +2,6 @@
+Wed Sep 16 11:25:25 UTC 2020 - Dirk Mueller 
+
+- update to 1.5.0:
+  * ignore ssl option, MSYS2 support
+
+---

Old:

  nodeenv-1.4.0.tar.gz

New:

  nodeenv-1.5.0.tar.gz



Other differences:
--
++ python-nodeenv.spec ++
--- /var/tmp/diff_new_pack.G2BrfA/_old  2020-09-16 19:42:40.903019628 +0200
+++ /var/tmp/diff_new_pack.G2BrfA/_new  2020-09-16 19:42:40.911019636 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-nodeenv
-Version:1.4.0
+Version:1.5.0
 Release:0
 Summary:Nodejs virtual environment builder
 License:BSD-2-Clause

++ nodeenv-1.4.0.tar.gz -> nodeenv-1.5.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nodeenv-1.4.0/AUTHORS new/nodeenv-1.5.0/AUTHORS
--- old/nodeenv-1.4.0/AUTHORS   2020-06-02 14:07:34.0 +0200
+++ new/nodeenv-1.5.0/AUTHORS   2020-08-23 20:26:37.0 +0200
@@ -4,8 +4,8 @@
 ```
 
 -  jhermann 
--  anatoly techtonik 
 -  Anthony Sottile 
+-  anatoly techtonik 
 -  ivan hilkov 
 -  Vincent Bernat 
 -  Kyle P Davis 
@@ -22,12 +22,16 @@
 -  Lispython 
 -  Leonardo Fedalto 
 -  Kyle P Davis 
+-  Kefu Chai 
+-  Jon Winn 
 -  Dennis Flanigan 
 -  Chris Beaven 
+-  Cerem Cem ASLAN 
 -  Bruno Oliveira 
 -  Andrzej Pragacz 
 -  Alex Couper 
 -  0Xellos 
+-  zjeuhpiung liu 
 -  Zenobius Jiricek 
 -  Yi-Feng Tzeng 
 -  Willem Jan Withagen 
@@ -36,6 +40,7 @@
 -  Vincent Bernat 
 -  urbandove 
 -  Uman Shahzad 
+-  Thomas Bechtold 
 -  Terseus 
 -  Stan Seibert 
 -  Shubhang Mani 
@@ -59,6 +64,7 @@
 -  Jeremy Banks 
 -  Geoffrey Huntley 
 -  Fabricio C Zuardi 
+-  Duncan Bellamy 
 -  dkgitdev 
 -  dhilipsiva 
 -  Dennis Flanigan 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nodeenv-1.4.0/Makefile new/nodeenv-1.5.0/Makefile
--- old/nodeenv-1.4.0/Makefile  2020-06-02 14:07:34.0 +0200
+++ new/nodeenv-1.5.0/Makefile  2020-08-23 20:26:37.0 +0200
@@ -8,6 +8,7 @@
git push --tags origin master
 
 deploy-pypi:
+   rm -rf dist
python setup.py sdist bdist_wheel
twine upload --repository pypi dist/*
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nodeenv-1.4.0/README.rst new/nodeenv-1.5.0/README.rst
--- old/nodeenv-1.4.0/README.rst2020-06-02 14:07:34.0 +0200
+++ new/nodeenv-1.5.0/README.rst2020-08-23 20:26:37.0 +0200
@@ -213,6 +213,10 @@
 $ npm install -g coffee-script
 $ which coffee
 /home/monty/virtualenvs/my_env/bin/coffee
+
+Creating a virtual environment with a custom prompt:
+
+$ nodeenv --node=12.18.2 --prompt="(myenv)" nodeenv
 
 If environment's directory already exists then you can use ``--force`` option::
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nodeenv-1.4.0/nodeenv.py new/nodeenv-1.5.0/nodeenv.py
--- old/nodeenv-1.4.0/nodeenv.py2020-06-02 14:07:34.0 +0200
+++ new/nodeenv-1.5.0/nodeenv.py2020-08-23 20:26:37.0 +0200
@@ -16,6 +16,7 @@
 import sys
 import os
 import re
+import ssl
 import stat
 import logging
 import operator
@@ -46,7 +47,7 @@
 
 from pkg_resources import parse_version
 
-nodeenv_version = '1.4.0'
+nodeenv_version = '1.5.0'
 
 join = os.path.join
 abspath = os.path.abspath
@@ -54,8 +55,9 @@
 
 is_PY3 = sys.version_info[0] >= 3
 is_WIN = platform.system() == 'Windows'
-is_CYGWIN = platform.system().startswith('CYGWIN')
+is_CYGWIN = platform.system().startswith(('CYGWIN', 'MSYS'))
 
+ignore_ssl_certs = False
 
 # -
 # Utils
@@ -97,6 +99,7 @@
 profile = False
 make = 'make'
 prebuilt = True
+ignore_ssl_certs = False
 
 @classmethod
 def _load(cls, configfiles, verbose=False):
@@ -341,7 +344,13 @@
 action='store_true', default=Config.prebuilt,
 help='Install node.js from prebuilt package (default)')
 
+pa

commit python-nodeenv for openSUSE:Factory

2020-03-18 Thread root
Hello community,

here is the log from the commit of package python-nodeenv for openSUSE:Factory 
checked in at 2020-03-18 12:29:50

Comparing /work/SRC/openSUSE:Factory/python-nodeenv (Old)
 and  /work/SRC/openSUSE:Factory/.python-nodeenv.new.3160 (New)


Package is "python-nodeenv"

Wed Mar 18 12:29:50 2020 rev:2 rq:785590 version:1.3.5

Changes:

--- /work/SRC/openSUSE:Factory/python-nodeenv/python-nodeenv.changes
2019-10-31 18:14:46.613980740 +0100
+++ /work/SRC/openSUSE:Factory/.python-nodeenv.new.3160/python-nodeenv.changes  
2020-03-18 12:40:47.664780178 +0100
@@ -1,0 +2,5 @@
+Mon Mar 16 10:52:58 UTC 2020 - Dirk Mueller 
+
+- update to 1.3.5
+
+---

Old:

  nodeenv-1.3.3.tar.gz

New:

  nodeenv-1.3.5.tar.gz



Other differences:
--
++ python-nodeenv.spec ++
--- /var/tmp/diff_new_pack.dGv02t/_old  2020-03-18 12:40:48.528780725 +0100
+++ /var/tmp/diff_new_pack.dGv02t/_new  2020-03-18 12:40:48.548780738 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-nodeenv
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-nodeenv
-Version:1.3.3
+Version:1.3.5
 Release:0
 Summary:Nodejs virtual environment builder
 License:BSD-2-Clause

++ nodeenv-1.3.3.tar.gz -> nodeenv-1.3.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nodeenv-1.3.3/.coveragerc 
new/nodeenv-1.3.5/.coveragerc
--- old/nodeenv-1.3.3/.coveragerc   2018-11-06 13:58:49.0 +0100
+++ new/nodeenv-1.3.5/.coveragerc   2020-02-04 09:12:51.0 +0100
@@ -5,7 +5,6 @@
 omit =
 .tox/*
 /usr/*
-*/tmp*
 setup.py
 # Don't complain if non-runnable code isn't run
 */__main__.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nodeenv-1.3.3/AUTHORS new/nodeenv-1.3.5/AUTHORS
--- old/nodeenv-1.3.3/AUTHORS   2018-11-06 13:58:49.0 +0100
+++ new/nodeenv-1.3.5/AUTHORS   2020-02-04 09:12:51.0 +0100
@@ -13,9 +13,9 @@
 -  Pierre Le Marre 
 -  Doug Turnbull 
 -  Anton Parkhomenko 
--  syndbg 
 -  Vyacheslav Levit 
 -  Travis Miller 
+-  syndbg 
 -  Spencer Rathbun 
 -  Luis Orduz 
 -  Lucas Cimon 
@@ -28,39 +28,45 @@
 -  Andrzej Pragacz 
 -  Alex Couper 
 -  0Xellos 
--  urbandove 
--  michael 
--  jiho 
--  dkgitdev 
--  dhilipsiva 
--  cmehay 
 -  Zenobius Jiricek 
 -  Yi-Feng Tzeng 
 -  Willem Jan Withagen 
+-  Walter dos Santos Filho 
 -  VladimĂ­r Gorej 
 -  Vincent Bernat 
+-  urbandove 
 -  Uman Shahzad 
 -  Terseus 
 -  Stan Seibert 
 -  Shubhang Mani 
+-  sam 
 -  Rik 
+-  rachmadaniHaryono 
 -  Philipp Dieter 
 -  Mrinal Wadhwa 
 -  Michal Kolodziejski 
+-  michael 
 -  Max Liebkies 
 -  Marc-Antoine Parent 
 -  Marc Abramowitz 
 -  Laust Rud Jacobsen 
 -  Ken Struys 
 -  Kai Weber 
+-  Josh Soref 
+-  Joby Harding 
+-  jiho 
 -  Jesse Dhillon 
 -  Jeremy Banks 
 -  Geoffrey Huntley 
 -  Fabricio C Zuardi 
+-  dkgitdev 
+-  dhilipsiva 
 -  Dennis Flanigan 
 -  Dan North 
 -  Dan Fuchs 
 -  Damien Nozay 
+-  cmehay 
 -  Brian Jacobel 
 -  Ben Davis 
+-  Andreas Wirooks 
 -  Alexey Poryadin 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nodeenv-1.3.3/CHANGES new/nodeenv-1.3.5/CHANGES
--- old/nodeenv-1.3.3/CHANGES   2018-11-06 13:58:49.0 +0100
+++ new/nodeenv-1.3.5/CHANGES   2020-02-04 09:12:51.0 +0100
@@ -3,47 +3,47 @@
 
 Version 1.3.1
 -
-- Windows related fix `#207 https://github.com/ekalinin/nodeenv/pull/207`
-- Fixed url for arm64 `#210 https://github.com/ekalinin/nodeenv/pull/210`_
-- Fixed fish support `#212 https://github.com/ekalinin/nodeenv/pull/212`_
+- Windows related fix `#207 `_
+- Fixed url for arm64 `#210 `_
+- Fixed fish support `#212 `_
 
 
 Version 1.3.0
 -
-- Fixed symlink creation `#189 https://github.com/ekalinin/nodeenv/issues/189`_
-- Python3.6 support `#200 https://github.com/ekalinin/nodeenv/pull/200`_
-- Added `activate` for fish `#201 
https://github.com/ekalinin/nodeenv/pull/201`_
-- Fixed cp866 `#202 https://github.com/ekalinin/nodeenv/pull/202`_
-- Added Conda support `#203 https://github.com/ekalinin/nodeenv/pull/203`_
+- Fixed symlink creation `#189 


commit python-nodeenv for openSUSE:Factory

2020-05-28 Thread root
Hello community,

here is the log from the commit of package python-nodeenv for openSUSE:Factory 
checked in at 2020-05-28 09:11:34

Comparing /work/SRC/openSUSE:Factory/python-nodeenv (Old)
 and  /work/SRC/openSUSE:Factory/.python-nodeenv.new.3606 (New)


Package is "python-nodeenv"

Thu May 28 09:11:34 2020 rev:3 rq:808043 version:1.3.5

Changes:

--- /work/SRC/openSUSE:Factory/python-nodeenv/python-nodeenv.changes
2020-03-18 12:40:47.664780178 +0100
+++ /work/SRC/openSUSE:Factory/.python-nodeenv.new.3606/python-nodeenv.changes  
2020-05-28 09:12:49.268532217 +0200
@@ -1,0 +2,5 @@
+Thu May 21 10:56:37 UTC 2020 - Petr Gajdos 
+
+- %python3_only -> %python_alternative
+
+---



Other differences:
--
++ python-nodeenv.spec ++
--- /var/tmp/diff_new_pack.IwEn7c/_old  2020-05-28 09:12:52.560540173 +0200
+++ /var/tmp/diff_new_pack.IwEn7c/_new  2020-05-28 09:12:52.564540182 +0200
@@ -30,6 +30,8 @@
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-setuptools
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
 BuildArch:  noarch
 %python_subpackages
 
@@ -44,16 +46,23 @@
 
 %install
 %python_install
+%python_clone -a %{buildroot}%{_bindir}/nodeenv
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
 # test_smoke is an integration test requiring network access.
 %pytest -k 'not test_smoke'
 
+%post
+%python_install_alternative nodeenv
+
+%postun
+%python_uninstall_alternative nodeenv
+
 %files %{python_files}
 %doc AUTHORS CHANGES README README.rst
 %license LICENSE
-%python3_only %{_bindir}/nodeenv
+%python_alternative %{_bindir}/nodeenv
 %{python_sitelib}/*
 
 %changelog