[gentoo-commits] repo/gentoo:master commit in: dev-python/tox/files/, dev-python/tox/

2019-05-28 Thread Virgil Dupras
commit: 178b65c465027c1600803eeab46258f99d9e84ed
Author: Virgil Dupras  gentoo  org>
AuthorDate: Tue May 28 11:58:13 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Tue May 28 11:58:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=178b65c4

dev-python/tox: bump to 3.12.1

Also, drop py2 compat.

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 dev-python/tox/Manifest|  2 +-
 ...-tests.patch => tox-3.12.1-skip-broken-tests.patch} | 18 +-
 .../tox/{tox-3.11.1.ebuild => tox-3.12.1.ebuild}   |  4 ++--
 3 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/dev-python/tox/Manifest b/dev-python/tox/Manifest
index faa0bd239c0..2934f5447aa 100644
--- a/dev-python/tox/Manifest
+++ b/dev-python/tox/Manifest
@@ -1,3 +1,3 @@
 DIST tox-2.9.1.tar.gz 1855982 BLAKE2B 
3e2f5fd3d3e45e54f96b0a6fc8f9e98bfba3b48540cc2922a897e016b5aabc9974772c9b897e0fab7b38b00f99478a063ad988ffa8b65fa53f684997334e492c
 SHA512 
ff19b2bb7ac963379f1cccd4973ad9eb4dabfbda976cde7caba50ad010d8fa57c1cba91d63e3e0512e44cc7d350bc9270fbd9b30db1bd55f7d9c239e7623d066
-DIST tox-3.11.1.tar.gz 280761 BLAKE2B 
ef6cacf45c4befecf8d1fcc92c7cb682318018cad3c77c3f2d1cf7110927d2ee0027908ad634a6d30bc56787b2a05032c8709aadda4512bcb392f299ba3b075e
 SHA512 
3c2a4dae6aaea0a9a6a6b4a8bd862b0fb2ff6f08e2ddcecc808e43c444d17e1abd3324428648ced50663b439735a7727f4e780874593e50dc5eb0a714c704d12
+DIST tox-3.12.1.tar.gz 283964 BLAKE2B 
b7cb2394a721f281552d1f614a6059f7025390a4ea03fd970c85330dffb97f601f0c3f8c9c9b05f86b5b92e87ef80fba48676201550581562b8cf3f1b2afa34b
 SHA512 
d7ed7ce17b03b5c8e3ba95e14f547c8dbb9a04ac38b98fb24c09261b5087ffc83b05e9a03607fa53ce61340a3ba69fc4121622f7fe338ce8ed402d25d59c7e6a
 DIST tox-3.2.1.tar.gz 268827 BLAKE2B 
764835d04fb0c17f32eb8e2041b83f90d6a729b781a5b5b95e9ecb1162f1c29ed595d4a6369524b390a31853b8003485b27a3a12d63e84f49e92675f1a9bee13
 SHA512 
79f5a1c8f6e818fbb8444754e3767d880fc1fdfe63b46c518d37440fe2b2f3ce572865aff83d9492c24486fded49893cc31bd9b11254bac4db507260304bc76f

diff --git a/dev-python/tox/files/tox-3.10.0-skip-broken-tests.patch 
b/dev-python/tox/files/tox-3.12.1-skip-broken-tests.patch
similarity index 83%
rename from dev-python/tox/files/tox-3.10.0-skip-broken-tests.patch
rename to dev-python/tox/files/tox-3.12.1-skip-broken-tests.patch
index 56f692948d3..382bf2b158e 100644
--- a/dev-python/tox/files/tox-3.10.0-skip-broken-tests.patch
+++ b/dev-python/tox/files/tox-3.12.1-skip-broken-tests.patch
@@ -12,10 +12,10 @@ index 6a8ac18..56dbe95 100644
  monkeypatch.setenv(str("TOX_REPORTER_TIMESTAMP"), str("1"))
  initproj(
 diff --git a/tests/unit/config/test_config.py 
b/tests/unit/config/test_config.py
-index c64ec1b..b16a4f2 100644
+index b814b7a..fe7ebe3 100644
 --- a/tests/unit/config/test_config.py
 +++ b/tests/unit/config/test_config.py
-@@ -1886,7 +1886,7 @@ class TestConfigTestEnv:
+@@ -1897,7 +1897,7 @@ class TestConfigTestEnv:
  for name, config in configs.items():
  assert config.basepython == "python{}.{}".format(name[2], name[3])
  
@@ -24,12 +24,12 @@ index c64ec1b..b16a4f2 100644
  with pytest.warns(UserWarning, match=r"conflicting basepython .*"):
  config = newconfig(
  """
-diff --git a/tests/unit/test_interpreters.py b/tests/unit/test_interpreters.py
-index 1eba27e..af7930b 100644
 a/tests/unit/test_interpreters.py
-+++ b/tests/unit/test_interpreters.py
-@@ -40,7 +40,7 @@ def test_locate_via_py(monkeypatch):
- assert tox.interpreters.locate_via_py(spec)
+diff --git a/tests/unit/interpreters/test_interpreters.py 
b/tests/unit/interpreters/test_interpreters.py
+index ea6f65d..e4f0e92 100644
+--- a/tests/unit/interpreters/test_interpreters.py
 b/tests/unit/interpreters/test_interpreters.py
+@@ -28,7 +28,7 @@ def create_interpreters_instance():
+ return Interpreters(hook=pm.hook)
  
  
 -def test_tox_get_python_executable():
@@ -37,7 +37,7 @@ index 1eba27e..af7930b 100644
  class envconfig:
  basepython = sys.executable
  envname = "pyxx"
-@@ -84,7 +84,7 @@ def test_tox_get_python_executable():
+@@ -72,7 +72,7 @@ def test_tox_get_python_executable():
  
  
  @pytest.mark.skipif("sys.platform == 'win32'", reason="symlink execution 
unreliable on Windows")

diff --git a/dev-python/tox/tox-3.11.1.ebuild b/dev-python/tox/tox-3.12.1.ebuild
similarity index 92%
rename from dev-python/tox/tox-3.11.1.ebuild
rename to dev-python/tox/tox-3.12.1.ebuild
index 586d4e574d5..95e8d9f9534 100644
--- a/dev-python/tox/tox-3.11.1.ebuild
+++ b/dev-python/tox/tox-3.12.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_{5,6,7}} pypy{,3} )
+PYTHON_COMPAT=( python3_{5,6,7} pypy3 )
 
 inherit distutils-r1
 
@@ -39,7 +39,7 @@ DEPEND="${RDEPEND}
 
 # for some reason, --deselect doesn't work in tox's tests
 PATCHES=(
-   "${FILESDIR}/${PN}-3.10.0-skip-broken-tests.patch"
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/tox/files/, dev-python/tox/

2019-05-13 Thread Virgil Dupras
commit: aecf9b8e7f8d0a926fb3c65b35c1a192c34d1474
Author: Virgil Dupras  gentoo  org>
AuthorDate: Mon May 13 18:28:17 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Mon May 13 18:28:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aecf9b8e

dev-python/tox: bump to 3.10.0

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 dev-python/tox/Manifest|  2 +-
 .../tox/files/tox-3.10.0-skip-broken-tests.patch   | 61 ++
 .../tox/{tox-3.9.0.ebuild => tox-3.10.0.ebuild}|  7 ++-
 3 files changed, 67 insertions(+), 3 deletions(-)

diff --git a/dev-python/tox/Manifest b/dev-python/tox/Manifest
index 35303ce439d..a5fd865a4a8 100644
--- a/dev-python/tox/Manifest
+++ b/dev-python/tox/Manifest
@@ -1,3 +1,3 @@
 DIST tox-2.9.1.tar.gz 1855982 BLAKE2B 
3e2f5fd3d3e45e54f96b0a6fc8f9e98bfba3b48540cc2922a897e016b5aabc9974772c9b897e0fab7b38b00f99478a063ad988ffa8b65fa53f684997334e492c
 SHA512 
ff19b2bb7ac963379f1cccd4973ad9eb4dabfbda976cde7caba50ad010d8fa57c1cba91d63e3e0512e44cc7d350bc9270fbd9b30db1bd55f7d9c239e7623d066
+DIST tox-3.10.0.tar.gz 283016 BLAKE2B 
bc2cd14ee28d0d1dcb654310072e7a8572143627d34aca131c5571e590a559ecc82477e6905ee00eeaad6bd3d2f899a3ad2cfcf19306cf62349f03cd8ecf0956
 SHA512 
a40813023308ebdfd4cba92b74637d83588df9b672ad7872d109a3bc1702902773d77048e896c39cb02c96ee530737aa80c4c4b0cf00e45a53d3d345235a897a
 DIST tox-3.2.1.tar.gz 268827 BLAKE2B 
764835d04fb0c17f32eb8e2041b83f90d6a729b781a5b5b95e9ecb1162f1c29ed595d4a6369524b390a31853b8003485b27a3a12d63e84f49e92675f1a9bee13
 SHA512 
79f5a1c8f6e818fbb8444754e3767d880fc1fdfe63b46c518d37440fe2b2f3ce572865aff83d9492c24486fded49893cc31bd9b11254bac4db507260304bc76f
-DIST tox-3.9.0.tar.gz 282134 BLAKE2B 
ee2702d3a6392eaaeb9371cfc4823c3cc46731aff2c44eb652958d10c2e337bcc2922480770e7049fca28c06668f436a47c4ef112a8177133566a12ce6394a81
 SHA512 
7cac28d4f8bc4c30f827a9770da43a06b19fdfec1251c079a380e161851d51df0d395d8b6499100c387a6d711352447a8fd2c14e1ebe6d3a9a0b08ca6c3464ee

diff --git a/dev-python/tox/files/tox-3.10.0-skip-broken-tests.patch 
b/dev-python/tox/files/tox-3.10.0-skip-broken-tests.patch
new file mode 100644
index 000..56f692948d3
--- /dev/null
+++ b/dev-python/tox/files/tox-3.10.0-skip-broken-tests.patch
@@ -0,0 +1,61 @@
+diff --git a/tests/integration/test_provision_int.py 
b/tests/integration/test_provision_int.py
+index 6a8ac18..56dbe95 100644
+--- a/tests/integration/test_provision_int.py
 b/tests/integration/test_provision_int.py
+@@ -43,7 +43,7 @@ def test_provision_missing(initproj, cmd):
+ @pytest.mark.skipif(
+ "sys.platform == 'win32'", reason="triggering SIGINT reliably on Windows 
is hard"
+ )
+-def test_provision_interrupt_child(initproj, monkeypatch, capfd):
++def xtest_provision_interrupt_child(initproj, monkeypatch, capfd):
+ monkeypatch.delenv(str("PYTHONPATH"), raising=False)
+ monkeypatch.setenv(str("TOX_REPORTER_TIMESTAMP"), str("1"))
+ initproj(
+diff --git a/tests/unit/config/test_config.py 
b/tests/unit/config/test_config.py
+index c64ec1b..b16a4f2 100644
+--- a/tests/unit/config/test_config.py
 b/tests/unit/config/test_config.py
+@@ -1886,7 +1886,7 @@ class TestConfigTestEnv:
+ for name, config in configs.items():
+ assert config.basepython == "python{}.{}".format(name[2], name[3])
+ 
+-def test_default_factors_conflict(self, newconfig, capsys):
++def xtest_default_factors_conflict(self, newconfig, capsys):
+ with pytest.warns(UserWarning, match=r"conflicting basepython .*"):
+ config = newconfig(
+ """
+diff --git a/tests/unit/test_interpreters.py b/tests/unit/test_interpreters.py
+index 1eba27e..af7930b 100644
+--- a/tests/unit/test_interpreters.py
 b/tests/unit/test_interpreters.py
+@@ -40,7 +40,7 @@ def test_locate_via_py(monkeypatch):
+ assert tox.interpreters.locate_via_py(spec)
+ 
+ 
+-def test_tox_get_python_executable():
++def xtest_tox_get_python_executable():
+ class envconfig:
+ basepython = sys.executable
+ envname = "pyxx"
+@@ -84,7 +84,7 @@ def test_tox_get_python_executable():
+ 
+ 
+ @pytest.mark.skipif("sys.platform == 'win32'", reason="symlink execution 
unreliable on Windows")
+-def test_find_alias_on_path(monkeypatch, tmp_path):
++def xtest_find_alias_on_path(monkeypatch, tmp_path):
+ reporter.update_default_reporter(Verbosity.DEFAULT, Verbosity.DEBUG)
+ magic = tmp_path / "magic{}".format(os.path.splitext(sys.executable)[1])
+ os.symlink(sys.executable, str(magic))
+diff --git a/tests/unit/test_venv.py b/tests/unit/test_venv.py
+index 0523112..3db5416 100644
+--- a/tests/unit/test_venv.py
 b/tests/unit/test_venv.py
+@@ -445,7 +445,7 @@ def 
test_install_command_not_installed_bash(newmocksession):
+ mocksession.report.expect("warning", "*test command found but not*")
+ 
+ 
+-def test_install_python3(newmocksession):
++def 

[gentoo-commits] repo/gentoo:master commit in: dev-python/tox/files/, dev-python/tox/

2019-05-12 Thread Virgil Dupras
commit: 06ce73e9cc90adfb7905dd7008df11e51753dc92
Author: Virgil Dupras  gentoo  org>
AuthorDate: Sun May 12 21:21:13 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Sun May 12 21:21:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06ce73e9

dev-python/tox: bump to 3.9.0

Also, get rid of the useless setuptools_scm dependency.

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 dev-python/tox/Manifest|  2 +-
 .../tox/files/tox-3.9.0-strip-setuptools_scm.patch | 30 ++
 .../tox/{tox-3.7.0.ebuild => tox-3.9.0.ebuild} |  9 ---
 3 files changed, 37 insertions(+), 4 deletions(-)

diff --git a/dev-python/tox/Manifest b/dev-python/tox/Manifest
index 3473320fa56..35303ce439d 100644
--- a/dev-python/tox/Manifest
+++ b/dev-python/tox/Manifest
@@ -1,3 +1,3 @@
 DIST tox-2.9.1.tar.gz 1855982 BLAKE2B 
3e2f5fd3d3e45e54f96b0a6fc8f9e98bfba3b48540cc2922a897e016b5aabc9974772c9b897e0fab7b38b00f99478a063ad988ffa8b65fa53f684997334e492c
 SHA512 
ff19b2bb7ac963379f1cccd4973ad9eb4dabfbda976cde7caba50ad010d8fa57c1cba91d63e3e0512e44cc7d350bc9270fbd9b30db1bd55f7d9c239e7623d066
 DIST tox-3.2.1.tar.gz 268827 BLAKE2B 
764835d04fb0c17f32eb8e2041b83f90d6a729b781a5b5b95e9ecb1162f1c29ed595d4a6369524b390a31853b8003485b27a3a12d63e84f49e92675f1a9bee13
 SHA512 
79f5a1c8f6e818fbb8444754e3767d880fc1fdfe63b46c518d37440fe2b2f3ce572865aff83d9492c24486fded49893cc31bd9b11254bac4db507260304bc76f
-DIST tox-3.7.0.tar.gz 267854 BLAKE2B 
9b32e6010f47d00e5ad81b31a8b9e809162ec9438c8a98df3e86c37692a3040bc0158d106f5698cdb6e240be54db80ce8b3c4c8710732f85d9eedfe1a0814852
 SHA512 
7e12f3407c1ad51ae5839bdd7907c7b05654f3a145270573326fbe3903d22c6e63a930c242ecaf1eae746043da090703e48ead7e27973294711f45077217ed37
+DIST tox-3.9.0.tar.gz 282134 BLAKE2B 
ee2702d3a6392eaaeb9371cfc4823c3cc46731aff2c44eb652958d10c2e337bcc2922480770e7049fca28c06668f436a47c4ef112a8177133566a12ce6394a81
 SHA512 
7cac28d4f8bc4c30f827a9770da43a06b19fdfec1251c079a380e161851d51df0d395d8b6499100c387a6d711352447a8fd2c14e1ebe6d3a9a0b08ca6c3464ee

diff --git a/dev-python/tox/files/tox-3.9.0-strip-setuptools_scm.patch 
b/dev-python/tox/files/tox-3.9.0-strip-setuptools_scm.patch
new file mode 100644
index 000..f6f78af192d
--- /dev/null
+++ b/dev-python/tox/files/tox-3.9.0-strip-setuptools_scm.patch
@@ -0,0 +1,30 @@
+diff --git a/setup.py b/setup.py
+index 73f2540..8d6f3c3 100644
+--- a/setup.py
 b/setup.py
+@@ -1,19 +1,13 @@
+ # -*- coding: utf-8 -*-
+-import textwrap
++import os
+ 
+ from setuptools import setup
+ 
+-setup(
+-use_scm_version={
+-"write_to": "src/tox/version.py",
+-"write_to_template": textwrap.dedent(
+-"""
+- # coding: utf-8
+- from __future__ import unicode_literals
++VERSION = os.environ['PV']
++with open('src/tox/version.py', 'wt') as fp:
++fp.write("__version__ = u'{}'".format(VERSION))
+ 
+- __version__ = {version!r}
+- """
+-).lstrip(),
+-},
++setup(
++version=VERSION,
+ package_dir={"": "src"},
+ )

diff --git a/dev-python/tox/tox-3.7.0.ebuild b/dev-python/tox/tox-3.9.0.ebuild
similarity index 85%
rename from dev-python/tox/tox-3.7.0.ebuild
rename to dev-python/tox/tox-3.9.0.ebuild
index 4a32bc04c97..9f26a3b878d 100644
--- a/dev-python/tox/tox-3.7.0.ebuild
+++ b/dev-python/tox/tox-3.9.0.ebuild
@@ -28,16 +28,19 @@ RDEPEND="
dev-python/toml[${PYTHON_USEDEP}]
dev-python/virtualenv[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}
-   >=dev-python/setuptools_scm-2[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
test? (
>=dev-python/freezegun-0.3.11[${PYTHON_USEDEP}]
+   dev-python/pathlib2[${PYTHON_USEDEP}]
>=dev-python/pytest-3.6[${PYTHON_USEDEP}]
-   

[gentoo-commits] repo/gentoo:master commit in: dev-python/tox/files/, dev-python/tox/

2018-12-16 Thread Virgil Dupras
commit: 7ce12ba328c652701df7202edfe3a6e11fd2ac8c
Author: Virgil Dupras  gentoo  org>
AuthorDate: Mon Dec 17 03:21:20 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Mon Dec 17 03:21:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ce12ba3

dev-python/tox: bump to 3.6.0

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/tox/Manifest|  1 +
 .../tox/files/tox-3.6.0-skip-broken-tests.patch| 39 
 dev-python/tox/tox-3.6.0.ebuild| 43 ++
 3 files changed, 83 insertions(+)

diff --git a/dev-python/tox/Manifest b/dev-python/tox/Manifest
index 07b8345d38c..a908230a220 100644
--- a/dev-python/tox/Manifest
+++ b/dev-python/tox/Manifest
@@ -1,3 +1,4 @@
 DIST tox-2.9.1.tar.gz 1855982 BLAKE2B 
3e2f5fd3d3e45e54f96b0a6fc8f9e98bfba3b48540cc2922a897e016b5aabc9974772c9b897e0fab7b38b00f99478a063ad988ffa8b65fa53f684997334e492c
 SHA512 
ff19b2bb7ac963379f1cccd4973ad9eb4dabfbda976cde7caba50ad010d8fa57c1cba91d63e3e0512e44cc7d350bc9270fbd9b30db1bd55f7d9c239e7623d066
 DIST tox-3.2.1.tar.gz 268827 BLAKE2B 
764835d04fb0c17f32eb8e2041b83f90d6a729b781a5b5b95e9ecb1162f1c29ed595d4a6369524b390a31853b8003485b27a3a12d63e84f49e92675f1a9bee13
 SHA512 
79f5a1c8f6e818fbb8444754e3767d880fc1fdfe63b46c518d37440fe2b2f3ce572865aff83d9492c24486fded49893cc31bd9b11254bac4db507260304bc76f
 DIST tox-3.5.3.tar.gz 256487 BLAKE2B 
5c9e5fece58d594e46ddacc9c8dca88077f8440fad4f0c3806a448c5bde63f0b9204d4975207bdddaa940cd9c2c76218e9f9925f8e05d278760859f65575adb7
 SHA512 
d93fd44af6e62d0ceb756894f2b6d3fc695f7a797069422c93a1d82eb62542227f900ed19505cb6f77345a9c03fd1080f017638fa623d985c4f6ded48aad5545
+DIST tox-3.6.0.tar.gz 257255 BLAKE2B 
fc61eb9c3c7eaca483c5de99b72562fb936447534cc1c08e70e8ed376fe70e0467d07168cb518f097002ea96ebbd709364236af49307c3c4c84f58feafba6bd7
 SHA512 
fcee3d78f266ebe036931589a68b51e111ba34cbe3fae6ee9241b4e98433ca75c59261ccaef014e00b3bfd678d10624c72c45146d594a7d25d6f437101f4c93d

diff --git a/dev-python/tox/files/tox-3.6.0-skip-broken-tests.patch 
b/dev-python/tox/files/tox-3.6.0-skip-broken-tests.patch
new file mode 100644
index 000..ea39bb30c1c
--- /dev/null
+++ b/dev-python/tox/files/tox-3.6.0-skip-broken-tests.patch
@@ -0,0 +1,39 @@
+diff --git a/tests/unit/test_config.py b/tests/unit/test_config.py
+index 08a1ced..86e3fb6 100644
+--- a/tests/unit/test_config.py
 b/tests/unit/test_config.py
+@@ -1869,7 +1869,7 @@ class TestConfigTestEnv:
+ for name, config in configs.items():
+ assert config.basepython == "python{}.{}".format(name[2], name[3])
+ 
+-def test_default_factors_conflict(self, newconfig, capsys):
++def xtest_default_factors_conflict(self, newconfig, capsys):
+ with pytest.warns(UserWarning, match=r"conflicting basepython .*"):
+ config = newconfig(
+ """
+diff --git a/tests/unit/test_interpreters.py b/tests/unit/test_interpreters.py
+index 0787b95..51e2ccc 100644
+--- a/tests/unit/test_interpreters.py
 b/tests/unit/test_interpreters.py
+@@ -60,7 +60,7 @@ def test_locate_via_py(monkeypatch):
+ assert fake_popen.last_call == ("py", "-3", "-c")
+ 
+ 
+-def test_tox_get_python_executable():
++def xtest_tox_get_python_executable():
+ class envconfig:
+ basepython = sys.executable
+ envname = "pyxx"
+diff --git a/tests/unit/test_venv.py b/tests/unit/test_venv.py
+index 51cb3c0..31a273e 100644
+--- a/tests/unit/test_venv.py
 b/tests/unit/test_venv.py
+@@ -427,7 +427,7 @@ def 
test_install_command_not_installed_bash(newmocksession):
+ mocksession.report.expect("warning", "*test command found but not*")
+ 
+ 
+-def test_install_python3(newmocksession):
++def xtest_install_python3(newmocksession):
+ if not py.path.local.sysfind("python3"):
+ pytest.skip("needs python3")
+ mocksession = newmocksession(

diff --git a/dev-python/tox/tox-3.6.0.ebuild b/dev-python/tox/tox-3.6.0.ebuild
new file mode 100644
index 000..46fa53e8f93
--- /dev/null
+++ b/dev-python/tox/tox-3.6.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_{5,6}} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="virtualenv-based automation of test activities"
+HOMEPAGE="https://tox.readthedocs.io https://github.com/tox-dev/tox 
https://pypi.org/project/tox/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# doc disabled because of missing deps in tree
+IUSE="test"
+
+RDEPEND="
+   dev-python/filelock[${PYTHON_USEDEP}]
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/tox/files/, dev-python/tox/

2018-12-16 Thread Virgil Dupras
commit: ce7278145db8a07c74e164f2c512333661f18c7d
Author: Virgil Dupras  gentoo  org>
AuthorDate: Mon Dec 17 03:22:38 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Mon Dec 17 03:22:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce727814

dev-python/tox: remove old

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/tox/Manifest|  1 -
 .../tox/files/tox-3.5.3-skip-broken-tests.patch| 14 --
 dev-python/tox/tox-3.5.3.ebuild| 52 --
 3 files changed, 67 deletions(-)

diff --git a/dev-python/tox/Manifest b/dev-python/tox/Manifest
index a908230a220..33b5097ef03 100644
--- a/dev-python/tox/Manifest
+++ b/dev-python/tox/Manifest
@@ -1,4 +1,3 @@
 DIST tox-2.9.1.tar.gz 1855982 BLAKE2B 
3e2f5fd3d3e45e54f96b0a6fc8f9e98bfba3b48540cc2922a897e016b5aabc9974772c9b897e0fab7b38b00f99478a063ad988ffa8b65fa53f684997334e492c
 SHA512 
ff19b2bb7ac963379f1cccd4973ad9eb4dabfbda976cde7caba50ad010d8fa57c1cba91d63e3e0512e44cc7d350bc9270fbd9b30db1bd55f7d9c239e7623d066
 DIST tox-3.2.1.tar.gz 268827 BLAKE2B 
764835d04fb0c17f32eb8e2041b83f90d6a729b781a5b5b95e9ecb1162f1c29ed595d4a6369524b390a31853b8003485b27a3a12d63e84f49e92675f1a9bee13
 SHA512 
79f5a1c8f6e818fbb8444754e3767d880fc1fdfe63b46c518d37440fe2b2f3ce572865aff83d9492c24486fded49893cc31bd9b11254bac4db507260304bc76f
-DIST tox-3.5.3.tar.gz 256487 BLAKE2B 
5c9e5fece58d594e46ddacc9c8dca88077f8440fad4f0c3806a448c5bde63f0b9204d4975207bdddaa940cd9c2c76218e9f9925f8e05d278760859f65575adb7
 SHA512 
d93fd44af6e62d0ceb756894f2b6d3fc695f7a797069422c93a1d82eb62542227f900ed19505cb6f77345a9c03fd1080f017638fa623d985c4f6ded48aad5545
 DIST tox-3.6.0.tar.gz 257255 BLAKE2B 
fc61eb9c3c7eaca483c5de99b72562fb936447534cc1c08e70e8ed376fe70e0467d07168cb518f097002ea96ebbd709364236af49307c3c4c84f58feafba6bd7
 SHA512 
fcee3d78f266ebe036931589a68b51e111ba34cbe3fae6ee9241b4e98433ca75c59261ccaef014e00b3bfd678d10624c72c45146d594a7d25d6f437101f4c93d

diff --git a/dev-python/tox/files/tox-3.5.3-skip-broken-tests.patch 
b/dev-python/tox/files/tox-3.5.3-skip-broken-tests.patch
deleted file mode 100644
index 57ff4760a98..000
--- a/dev-python/tox/files/tox-3.5.3-skip-broken-tests.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/tests/unit/test_interpreters.py b/tests/unit/test_interpreters.py
-index 0787b95..1563ede 100644
 a/tests/unit/test_interpreters.py
-+++ b/tests/unit/test_interpreters.py
-@@ -60,7 +60,8 @@ def test_locate_via_py(monkeypatch):
- assert fake_popen.last_call == ("py", "-3", "-c")
- 
- 
--def test_tox_get_python_executable():
-+# doesn't play well with Gentoo
-+def xtest_tox_get_python_executable():
- class envconfig:
- basepython = sys.executable
- envname = "pyxx"

diff --git a/dev-python/tox/tox-3.5.3.ebuild b/dev-python/tox/tox-3.5.3.ebuild
deleted file mode 100644
index 290bb7df05d..000
--- a/dev-python/tox/tox-3.5.3.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python{2_7,3_{5,6}} pypy )
-
-inherit distutils-r1
-
-DESCRIPTION="virtualenv-based automation of test activities"
-HOMEPAGE="https://tox.readthedocs.io https://github.com/tox-dev/tox 
https://pypi.org/project/tox/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-# doc disabled because of missing deps in tree
-IUSE="test"
-
-RDEPEND="
-   dev-python/filelock[${PYTHON_USEDEP}]
-   

[gentoo-commits] repo/gentoo:master commit in: dev-python/tox/files/, dev-python/tox/

2018-11-18 Thread Virgil Dupras
commit: 36b5803a7575d267a213e27143baafa305454e6f
Author: Virgil Dupras  gentoo  org>
AuthorDate: Mon Nov 19 01:10:33 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Mon Nov 19 01:10:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36b5803a

dev-python/tox: bump to 3.5.3

Had to temporarily drop "doc" because of new dependencies not in the
tree.

Had to drop many keywords due to new deps.

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/tox/Manifest|  1 +
 .../tox/files/tox-3.5.3-skip-broken-tests.patch| 14 ++
 dev-python/tox/tox-3.5.3.ebuild| 52 ++
 3 files changed, 67 insertions(+)

diff --git a/dev-python/tox/Manifest b/dev-python/tox/Manifest
index 1c3856a63d3..07b8345d38c 100644
--- a/dev-python/tox/Manifest
+++ b/dev-python/tox/Manifest
@@ -1,2 +1,3 @@
 DIST tox-2.9.1.tar.gz 1855982 BLAKE2B 
3e2f5fd3d3e45e54f96b0a6fc8f9e98bfba3b48540cc2922a897e016b5aabc9974772c9b897e0fab7b38b00f99478a063ad988ffa8b65fa53f684997334e492c
 SHA512 
ff19b2bb7ac963379f1cccd4973ad9eb4dabfbda976cde7caba50ad010d8fa57c1cba91d63e3e0512e44cc7d350bc9270fbd9b30db1bd55f7d9c239e7623d066
 DIST tox-3.2.1.tar.gz 268827 BLAKE2B 
764835d04fb0c17f32eb8e2041b83f90d6a729b781a5b5b95e9ecb1162f1c29ed595d4a6369524b390a31853b8003485b27a3a12d63e84f49e92675f1a9bee13
 SHA512 
79f5a1c8f6e818fbb8444754e3767d880fc1fdfe63b46c518d37440fe2b2f3ce572865aff83d9492c24486fded49893cc31bd9b11254bac4db507260304bc76f
+DIST tox-3.5.3.tar.gz 256487 BLAKE2B 
5c9e5fece58d594e46ddacc9c8dca88077f8440fad4f0c3806a448c5bde63f0b9204d4975207bdddaa940cd9c2c76218e9f9925f8e05d278760859f65575adb7
 SHA512 
d93fd44af6e62d0ceb756894f2b6d3fc695f7a797069422c93a1d82eb62542227f900ed19505cb6f77345a9c03fd1080f017638fa623d985c4f6ded48aad5545

diff --git a/dev-python/tox/files/tox-3.5.3-skip-broken-tests.patch 
b/dev-python/tox/files/tox-3.5.3-skip-broken-tests.patch
new file mode 100644
index 000..57ff4760a98
--- /dev/null
+++ b/dev-python/tox/files/tox-3.5.3-skip-broken-tests.patch
@@ -0,0 +1,14 @@
+diff --git a/tests/unit/test_interpreters.py b/tests/unit/test_interpreters.py
+index 0787b95..1563ede 100644
+--- a/tests/unit/test_interpreters.py
 b/tests/unit/test_interpreters.py
+@@ -60,7 +60,8 @@ def test_locate_via_py(monkeypatch):
+ assert fake_popen.last_call == ("py", "-3", "-c")
+ 
+ 
+-def test_tox_get_python_executable():
++# doesn't play well with Gentoo
++def xtest_tox_get_python_executable():
+ class envconfig:
+ basepython = sys.executable
+ envname = "pyxx"

diff --git a/dev-python/tox/tox-3.5.3.ebuild b/dev-python/tox/tox-3.5.3.ebuild
new file mode 100644
index 000..290bb7df05d
--- /dev/null
+++ b/dev-python/tox/tox-3.5.3.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_{5,6}} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="virtualenv-based automation of test activities"
+HOMEPAGE="https://tox.readthedocs.io https://github.com/tox-dev/tox 
https://pypi.org/project/tox/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# doc disabled because of missing deps in tree
+IUSE="test"
+
+RDEPEND="
+   dev-python/filelock[${PYTHON_USEDEP}]
+