commit python-python-dotenv for openSUSE:Factory

2020-08-05 Thread root
Hello community,

here is the log from the commit of package python-python-dotenv for 
openSUSE:Factory checked in at 2020-08-05 20:29:59

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


Package is "python-python-dotenv"

Wed Aug  5 20:29:59 2020 rev:8 rq:824524 version:0.14.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-python-dotenv/python-python-dotenv.changes
2020-07-01 14:27:00.826826890 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-python-dotenv.new.3592/python-python-dotenv.changes
  2020-08-05 20:30:07.883121547 +0200
@@ -1,0 +2,9 @@
+Wed Aug  5 13:46:03 UTC 2020 - Marketa Calabkova 
+
+- Update to 0.14.0
+  * Privilege definition in file over the environment in variable expansion 
(#256 by
+[@elbehery95]).
+  * Improve error message for when file isn't found (#245 by [@snobu]).
+  * Use HTTPS URL in package meta data (#251 by [@ekohl]).
+
+---

Old:

  python-dotenv-0.13.0.tar.gz

New:

  python-dotenv-0.14.0.tar.gz



Other differences:
--
++ python-python-dotenv.spec ++
--- /var/tmp/diff_new_pack.QpS74A/_old  2020-08-05 20:30:10.915123129 +0200
+++ /var/tmp/diff_new_pack.QpS74A/_new  2020-08-05 20:30:10.923123133 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-python-dotenv
-Version:0.13.0
+Version:0.14.0
 Release:0
 Summary:Python library for .env support
 License:BSD-3-Clause

++ python-dotenv-0.13.0.tar.gz -> python-dotenv-0.14.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dotenv-0.13.0/CHANGELOG.md 
new/python-dotenv-0.14.0/CHANGELOG.md
--- old/python-dotenv-0.13.0/CHANGELOG.md   2020-04-16 23:36:06.0 
+0200
+++ new/python-dotenv-0.14.0/CHANGELOG.md   2020-07-03 11:17:51.0 
+0200
@@ -9,6 +9,18 @@
 
 *No unreleased change at this time.*
 
+## [0.14.0] - 2020-07-03
+
+### Changed
+
+- Privilege definition in file over the environment in variable expansion 
(#256 by
+  [@elbehery95]).
+
+### Fixed
+
+- Improve error message for when file isn't found (#245 by [@snobu]).
+- Use HTTPS URL in package meta data (#251 by [@ekohl]).
+
 ## [0.13.0] - 2020-04-16
 
 ### Added
@@ -189,16 +201,20 @@
 [@bbc2]: https://github.com/bbc2
 [@cjauvin]: https://github.com/cjauvin
 [@earlbread]: https://github.com/earlbread
+[@ekohl]: https://github.com/ekohl
+[@elbehery95]: https://github.com/elbehery95
 [@gergelyk]: https://github.com/gergelyk
 [@greyli]: https://github.com/greyli
 [@qnighy]: https://github.com/qnighy
+[@snobu]: https://github.com/snobu
 [@techalchemy]: https://github.com/techalchemy
 [@theskumar]: https://github.com/theskumar
 [@ulyssessouza]: https://github.com/ulyssessouza
 [@venthur]: https://github.com/venthur
 [@yannham]: https://github.com/yannham
 
-[Unreleased]: https://github.com/theskumar/python-dotenv/compare/v0.13.0...HEAD
+[Unreleased]: https://github.com/theskumar/python-dotenv/compare/v0.14.0...HEAD
+[0.14.0]: https://github.com/theskumar/python-dotenv/compare/v0.13.0...v0.14.0
 [0.13.0]: https://github.com/theskumar/python-dotenv/compare/v0.12.0...v0.13.0
 [0.12.0]: https://github.com/theskumar/python-dotenv/compare/v0.11.0...v0.12.0
 [0.11.0]: https://github.com/theskumar/python-dotenv/compare/v0.10.5...v0.11.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dotenv-0.13.0/README.md 
new/python-dotenv-0.14.0/README.md
--- old/python-dotenv-0.13.0/README.md  2020-04-16 23:36:06.0 +0200
+++ new/python-dotenv-0.14.0/README.md  2020-07-03 11:17:51.0 +0200
@@ -84,7 +84,7 @@
 load_dotenv(verbose=True)
 
 # OR, explicitly providing path to '.env'
-from pathlib import Path  # python3 only
+from pathlib import Path  # Python 3.6+ only
 env_path = Path('.') / '.env'
 load_dotenv(dotenv_path=env_path)
 ```
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dotenv-0.13.0/setup.cfg 
new/python-dotenv-0.14.0/setup.cfg
--- old/python-dotenv-0.13.0/setup.cfg  2020-04-16 23:36:06.0 +0200
+++ new/python-dotenv-0.14.0/setup.cfg  2020-07-03 11:17:51.0 +0200
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 0.13.0
+current_version = 0.14.0
 commit = True
 tag = True
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dotenv-0.13.0/setup.py 
new/python-dotenv-0.14.0/setup.py
--- old/python-dotenv-0.13.0/setup.py   2020-04-16 23:36:06.0 +0200
+++ new/python-dotenv-0.14.0/setup.py

commit python-python-dotenv for openSUSE:Factory

2020-07-01 Thread root
Hello community,

here is the log from the commit of package python-python-dotenv for 
openSUSE:Factory checked in at 2020-07-01 14:26:59

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


Package is "python-python-dotenv"

Wed Jul  1 14:26:59 2020 rev:7 rq:817955 version:0.13.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-python-dotenv/python-python-dotenv.changes
2020-06-17 14:47:35.192418938 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-python-dotenv.new.3060/python-python-dotenv.changes
  2020-07-01 14:27:00.826826890 +0200
@@ -1,0 +2,6 @@
+Tue Jun 30 04:44:30 UTC 2020 - John Vandenberg 
+
+- Downgrade jupyter_ipython from Recommends to Suggests as
+  python-dotenv is now a dependency of docker-compose
+
+---



Other differences:
--
++ python-python-dotenv.spec ++
--- /var/tmp/diff_new_pack.Yh2SMZ/_old  2020-07-01 14:27:01.286828317 +0200
+++ /var/tmp/diff_new_pack.Yh2SMZ/_new  2020-07-01 14:27:01.290828329 +0200
@@ -36,7 +36,7 @@
 # rubygem-dotenv also provides executable dotenv
 Requires(post): update-alternatives
 Requires(postun): update-alternatives
-Recommends: python-jupyter_ipython
+Suggests:   python-jupyter_ipython
 # There is a very similar Python package which also used `dotenv` namespace
 Conflicts:  python-dotenv
 BuildArch:  noarch




commit python-python-dotenv for openSUSE:Factory

2020-06-17 Thread root
Hello community,

here is the log from the commit of package python-python-dotenv for 
openSUSE:Factory checked in at 2020-06-17 14:47:21

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


Package is "python-python-dotenv"

Wed Jun 17 14:47:21 2020 rev:6 rq:807938 version:0.13.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-python-dotenv/python-python-dotenv.changes
2020-03-18 12:51:56.733194533 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-python-dotenv.new.3606/python-python-dotenv.changes
  2020-06-17 14:47:35.192418938 +0200
@@ -1,0 +2,8 @@
+Wed May 20 12:41:06 UTC 2020 - Marketa Calabkova 
+
+- Update to 0.13.0
+  * Add support for a Bash-like default value in variable expansion
+  * Fix escaping of quoted values written by set_key
+  * Few more fixes
+
+---

Old:

  python-dotenv-0.12.0.tar.gz

New:

  python-dotenv-0.13.0.tar.gz



Other differences:
--
++ python-python-dotenv.spec ++
--- /var/tmp/diff_new_pack.X6L23j/_old  2020-06-17 14:47:36.112422071 +0200
+++ /var/tmp/diff_new_pack.X6L23j/_new  2020-06-17 14:47:36.116422085 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-python-dotenv
-Version:0.12.0
+Version:0.13.0
 Release:0
 Summary:Python library for .env support
 License:BSD-3-Clause

++ python-dotenv-0.12.0.tar.gz -> python-dotenv-0.13.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dotenv-0.12.0/.travis.yml 
new/python-dotenv-0.13.0/.travis.yml
--- old/python-dotenv-0.12.0/.travis.yml2020-02-28 23:00:12.0 
+0100
+++ new/python-dotenv-0.13.0/.travis.yml2020-04-16 23:36:06.0 
+0200
@@ -1,6 +1,7 @@
 language: python
 cache: pip
 os: linux
+dist: xenial
 
 jobs:
   include:
@@ -30,7 +31,7 @@
   - tox
 
 before_install:
-  - pip install python-coveralls
+  - pip install coveralls
 
 after_success:
   - tox -e coverage-report
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dotenv-0.12.0/CHANGELOG.md 
new/python-dotenv-0.13.0/CHANGELOG.md
--- old/python-dotenv-0.12.0/CHANGELOG.md   2020-02-28 23:00:12.0 
+0100
+++ new/python-dotenv-0.13.0/CHANGELOG.md   2020-04-16 23:36:06.0 
+0200
@@ -9,6 +9,12 @@
 
 *No unreleased change at this time.*
 
+## [0.13.0] - 2020-04-16
+
+### Added
+
+- Add support for a Bash-like default value in variable expansion (#248 by 
[@bbc2]).
+
 ## [0.12.0] - 2020-02-28
 
 ### Changed
@@ -192,7 +198,8 @@
 [@venthur]: https://github.com/venthur
 [@yannham]: https://github.com/yannham
 
-[Unreleased]: https://github.com/theskumar/python-dotenv/compare/v0.12.0...HEAD
+[Unreleased]: https://github.com/theskumar/python-dotenv/compare/v0.13.0...HEAD
+[0.13.0]: https://github.com/theskumar/python-dotenv/compare/v0.12.0...v0.13.0
 [0.12.0]: https://github.com/theskumar/python-dotenv/compare/v0.11.0...v0.12.0
 [0.11.0]: https://github.com/theskumar/python-dotenv/compare/v0.10.5...v0.11.0
 [0.10.5]: https://github.com/theskumar/python-dotenv/compare/v0.10.4...v0.10.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dotenv-0.12.0/README.md 
new/python-dotenv-0.13.0/README.md
--- old/python-dotenv-0.12.0/README.md  2020-02-28 23:00:12.0 +0100
+++ new/python-dotenv-0.13.0/README.md  2020-04-16 23:36:06.0 +0200
@@ -39,18 +39,23 @@
 export SECRET_KEY=YOURSECRETKEYGOESHERE
 ```
 
-`.env` can interpolate variables using POSIX variable expansion,
-variables are replaced from the environment first or from other values
-in the `.env` file if the variable is not present in the environment. 
+Python-dotenv can interpolate variables using POSIX variable expansion.
+
+The value of a variable is the first of the values defined in the following 
list:
+
+- Value of that variable in the environment.
+- Value of that variable in the `.env` file.
+- Default value, if provided.
+- Empty string.
+
 Ensure that variables are surrounded with `{}` like `${HOME}` as bare 
 variables such as `$HOME` are not expanded.
-(**Note**: Default Value Expansion is not supported as of yet, see
-[\#30](https://github.com/theskumar/python-dotenv/pull/30#issuecomment-244036604).)
 
 ```shell
 CONFIG_PATH=${HOME}/.config/foo
 DOMAIN=example.org
 EMAIL=admin@${DOMAIN}
+DEBUG=${DEBUG:-false}
 ```
 
 ## Getting started
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dotenv-0.12.0/setup.cfg 
new/pyth

commit python-python-dotenv for openSUSE:Factory

2020-03-18 Thread root
Hello community,

here is the log from the commit of package python-python-dotenv for 
openSUSE:Factory checked in at 2020-03-18 12:45:59

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


Package is "python-python-dotenv"

Wed Mar 18 12:45:59 2020 rev:5 rq:786117 version:0.12.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-python-dotenv/python-python-dotenv.changes
2019-07-22 17:20:15.481896644 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-python-dotenv.new.3160/python-python-dotenv.changes
  2020-03-18 12:51:56.733194533 +0100
@@ -1,0 +2,6 @@
+Wed Mar 18 09:17:07 UTC 2020 - Tomáš Chvátal 
+
+- Update to 0.12.0:
+  * various fixes
+
+---

Old:

  python-dotenv-0.10.3.tar.gz

New:

  python-dotenv-0.12.0.tar.gz



Other differences:
--
++ python-python-dotenv.spec ++
--- /var/tmp/diff_new_pack.Npe34t/_old  2020-03-18 12:51:58.553195620 +0100
+++ /var/tmp/diff_new_pack.Npe34t/_new  2020-03-18 12:51:58.553195620 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-python-dotenv
 #
-# 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,15 +18,15 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-python-dotenv
-Version:0.10.3
+Version:0.12.0
 Release:0
 Summary:Python library for .env support
 License:BSD-3-Clause
-Group:  Development/Languages/Python
-URL:http://github.com/theskumar/python-dotenv
+URL:https://github.com/theskumar/python-dotenv
 Source: 
https://github.com/theskumar/python-dotenv/archive/v%{version}.tar.gz#/python-dotenv-%{version}.tar.gz
 BuildRequires:  %{python_module click >= 5.0}
 BuildRequires:  %{python_module jupyter_ipython}
+BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module pytest >= 3.0.5}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module sh >= 1.09}

++ python-dotenv-0.10.3.tar.gz -> python-dotenv-0.12.0.tar.gz ++
 2577 lines of diff (skipped)




commit python-python-dotenv for openSUSE:Factory

2019-07-22 Thread root
Hello community,

here is the log from the commit of package python-python-dotenv for 
openSUSE:Factory checked in at 2019-07-22 17:20:14

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


Package is "python-python-dotenv"

Mon Jul 22 17:20:14 2019 rev:4 rq:717596 version:0.10.3

Changes:

--- 
/work/SRC/openSUSE:Factory/python-python-dotenv/python-python-dotenv.changes
2019-05-27 08:39:27.623045830 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-python-dotenv.new.4126/python-python-dotenv.changes
  2019-07-22 17:20:15.481896644 +0200
@@ -1,0 +2,6 @@
+Mon Jul 22 13:18:03 UTC 2019 - Tomáš Chvátal 
+
+- Update to 0.10.3:
+  * Small cleanups
+
+---

Old:

  python-dotenv-0.10.2.tar.gz

New:

  python-dotenv-0.10.3.tar.gz



Other differences:
--
++ python-python-dotenv.spec ++
--- /var/tmp/diff_new_pack.6L2VEG/_old  2019-07-22 17:20:16.081896480 +0200
+++ /var/tmp/diff_new_pack.6L2VEG/_new  2019-07-22 17:20:16.085896479 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-python-dotenv
-Version:0.10.2
+Version:0.10.3
 Release:0
 Summary:Python library for .env support
 License:BSD-3-Clause
@@ -49,9 +49,11 @@
 %setup -q -n python-dotenv-%{version}
 
 %build
+export LANG=C.UTF-8
 %python_build
 
 %install
+export LANG=C.UTF-8
 %python_install
 %python_clone -a %{buildroot}%{_bindir}/dotenv
 %python_expand %fdupes %{buildroot}%{$python_sitelib}

++ python-dotenv-0.10.2.tar.gz -> python-dotenv-0.10.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dotenv-0.10.2/.bumpversion.cfg 
new/python-dotenv-0.10.3/.bumpversion.cfg
--- old/python-dotenv-0.10.2/.bumpversion.cfg   2019-05-12 12:53:28.0 
+0200
+++ new/python-dotenv-0.10.3/.bumpversion.cfg   2019-06-02 19:17:32.0 
+0200
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 0.10.2
+current_version = 0.10.3
 commit = True
 tag = True
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dotenv-0.10.2/Makefile 
new/python-dotenv-0.10.3/Makefile
--- old/python-dotenv-0.10.2/Makefile   2019-05-12 12:53:28.0 +0200
+++ new/python-dotenv-0.10.3/Makefile   2019-06-02 19:17:32.0 +0200
@@ -5,19 +5,22 @@
 clean-build:
rm -fr build/
rm -fr dist/
-   rm -fr *.egg-info
+   rm -fr src/*.egg-info
 
 clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
 
-release: clean
-   python setup.py sdist upload
-   python setup.py bdist_wheel upload
+release: sdist
+   twine check dist/*
+   twine upload dist/*
+
+release-test: sdist
+   twine upload --repository-url https://test.pypi.org/legacy/ dist/*
 
 sdist: clean
-   python setup.py sdist
+   python setup.py sdist bdist_wheel
ls -l dist
 
 test:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dotenv-0.10.2/README.md 
new/python-dotenv-0.10.3/README.md
--- old/python-dotenv-0.10.2/README.md  2019-05-12 12:53:28.0 +0200
+++ new/python-dotenv-0.10.3/README.md  2019-06-02 19:17:32.0 +0200
@@ -44,7 +44,7 @@
 MULTILINE_VAR="hello\nworld"
 ```
 
-You can optionally prefix each line with the word `export`, which is totally 
ignore by this library, but might allow you to 
[`source`](https://bash.cyberciti.biz/guide/Source_command) the file in bash.
+You can optionally prefix each line with the word `export`, which is totally 
ignored by this library, but might allow you to 
[`source`](https://bash.cyberciti.biz/guide/Source_command) the file in bash.
 
 ```
 export S3_BUCKET=YOURS3BUCKET
@@ -299,8 +299,10 @@
 Unreleased
 -
 
-- ...
-
+- Improve interactive mode detection ([@andrewsmith])([#183]).
+- Refactor parser to fix parsing inconsistencies ([@bbc2])([#170]).
+  - Interpret escapes as control characters only in double-quoted strings.
+  - Interpret `#` as start of comment only if preceded by whitespace.
 
 0.10.2
 -
@@ -428,7 +430,10 @@
 [#172]: https://github.com/theskumar/python-dotenv/issues/172
 [#121]: https://github.com/theskumar/python-dotenv/issues/121
 [#176]: https://github.com/theskumar/python-dotenv/issues/176
+[#170]: https://github.com/theskumar/python-dotenv/issues/170
+[#183]: https://github.com/theskumar/python-dotenv/issues/183
 
+[@andrewsmith]: https://github.com/andrewsmith
 [@asyncee]: https://github.com/asyncee
 [@greyli]: ht

commit python-python-dotenv for openSUSE:Factory

2019-05-26 Thread root
Hello community,

here is the log from the commit of package python-python-dotenv for 
openSUSE:Factory checked in at 2019-05-27 08:39:12

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


Package is "python-python-dotenv"

Mon May 27 08:39:12 2019 rev:3 rq:705389 version:0.10.2

Changes:

--- 
/work/SRC/openSUSE:Factory/python-python-dotenv/python-python-dotenv.changes
2019-03-10 09:37:02.240152362 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-python-dotenv.new.5148/python-python-dotenv.changes
  2019-05-27 08:39:27.623045830 +0200
@@ -1,0 +2,9 @@
+Sat May 25 08:58:11 UTC 2019 - Tomáš Chvátal 
+
+- Update to 0.10.2:
+  * Add type hints and expose them to users (@qnighy)(#172)
+  * load_dotenv and dotenv_values now accept an encoding parameter, defaults 
to None (@theskumar)(@earlbread)(#161)
+  * Fix str/unicode inconsistency in Python 2: values are always str now. 
(@bbc2)(#121)
+  * Fix Unicode error in Python 2, introduced in 0.10.0. (@bbc2)(#176)
+
+---

Old:

  python-dotenv-0.10.1.tar.gz

New:

  python-dotenv-0.10.2.tar.gz



Other differences:
--
++ python-python-dotenv.spec ++
--- /var/tmp/diff_new_pack.8uALDD/_old  2019-05-27 08:39:28.123045635 +0200
+++ /var/tmp/diff_new_pack.8uALDD/_new  2019-05-27 08:39:28.123045635 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-python-dotenv
-Version:0.10.1
+Version:0.10.2
 Release:0
 Summary:Python library for .env support
 License:BSD-3-Clause
@@ -63,7 +63,7 @@
 export PATH=%{buildroot}%{_bindir}:$PATH
 %{python_expand export PYTHONPATH=%{buildroot}%{$python_sitelib}
 cp %{buildroot}%{_bindir}/dotenv-%{$python_bin_suffix} 
%{buildroot}%{_bindir}/dotenv
-$python -m pytest
+$python -m pytest -v
 }
 mv %{buildroot}%{_bindir}/dotenv.orig %{buildroot}%{_bindir}/dotenv
 

++ python-dotenv-0.10.1.tar.gz -> python-dotenv-0.10.2.tar.gz ++
 2188 lines of diff (skipped)




commit python-python-dotenv for openSUSE:Factory

2019-03-10 Thread root
Hello community,

here is the log from the commit of package python-python-dotenv for 
openSUSE:Factory checked in at 2019-03-10 09:36:57

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


Package is "python-python-dotenv"

Sun Mar 10 09:36:57 2019 rev:2 rq:682595 version:0.10.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-python-dotenv/python-python-dotenv.changes
2019-02-20 14:15:24.542857511 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-python-dotenv.new.28833/python-python-dotenv.changes
 2019-03-10 09:37:02.240152362 +0100
@@ -1,0 +2,6 @@
+Thu Mar  7 15:42:54 UTC 2019 - John Vandenberg 
+
+- Add LANG=C.UTF-8 to %check to fix tests on Leap
+- Rename tarball to match name provided by PyPI
+
+---

Old:

  v0.10.1.tar.gz

New:

  python-dotenv-0.10.1.tar.gz



Other differences:
--
++ python-python-dotenv.spec ++
--- /var/tmp/diff_new_pack.d0gBti/_old  2019-03-10 09:37:03.640152026 +0100
+++ /var/tmp/diff_new_pack.d0gBti/_new  2019-03-10 09:37:03.668152020 +0100
@@ -24,7 +24,7 @@
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 URL:http://github.com/theskumar/python-dotenv
-Source: 
https://github.com/theskumar/python-dotenv/archive/v%{version}.tar.gz
+Source: 
https://github.com/theskumar/python-dotenv/archive/v%{version}.tar.gz#/python-dotenv-%{version}.tar.gz
 BuildRequires:  %{python_module click >= 5.0}
 BuildRequires:  %{python_module jupyter_ipython}
 BuildRequires:  %{python_module pytest >= 3.0.5}
@@ -57,6 +57,7 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
+export LANG=C.UTF-8
 mv %{buildroot}%{_bindir}/dotenv %{buildroot}%{_bindir}/dotenv.orig
 # CLI tests require distribution to be found, and the correct executable 
installed
 export PATH=%{buildroot}%{_bindir}:$PATH