summaryrefslogtreecommitdiff
path: root/dev-python/invoke
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-05-21 10:20:03 +0100
committerV3n3RiX <venerix@redcorelinux.org>2019-05-21 10:20:03 +0100
commit6f8038813c460b4f0572d5ef595cdfa94af3a94d (patch)
tree3509e94070265053394b7f2e30a779d7e60c2064 /dev-python/invoke
parenteccb70a7f91b2d22582587f26d1a28bb31408b45 (diff)
gentoo resync : 21.05.2019
Diffstat (limited to 'dev-python/invoke')
-rw-r--r--dev-python/invoke/Manifest1
-rw-r--r--dev-python/invoke/files/invoke-1.1.0-skip-pty-tests.patch29
2 files changed, 0 insertions, 30 deletions
diff --git a/dev-python/invoke/Manifest b/dev-python/invoke/Manifest
index 5c15d870ef22..8b48f95d9318 100644
--- a/dev-python/invoke/Manifest
+++ b/dev-python/invoke/Manifest
@@ -1,4 +1,3 @@
-AUX invoke-1.1.0-skip-pty-tests.patch 959 BLAKE2B 4e23e88f3cdee0a3e7408b3fa217dafe28f36967516a7231543e8303b22c901a5c63a45dcf1332ae7a6e5d031fd535f8674388474429deec15535ad378cd02a7 SHA512 3ee402afa6f658639b56049e114b9e243be91e0a8016f0fda18d3f34c3a3e8d1be9a452d4828f072fc220b185790c820c43bb5d9a7b9060265c181fe2f63c58e
DIST invoke-1.1.1.tar.gz 311831 BLAKE2B 2918c1a03cccbd90be6aa495206a2714f45c9690d8ce1b063adc0cacfa4c7accd36dd94863a83e9cc0c05aaf889bd746c3f528fad5af0db9f64725438866f81a SHA512 2dabf88428a53f244cab45cbc073b3a91fea5dd97a7590a58701a32bfaa14a4afe5d6a2e4ff4ed03ae38e1dfecc5a7c0f811bb18313e0af1f4e116f56c5e9ba7
EBUILD invoke-1.1.1.ebuild 494 BLAKE2B 4e65c7b7ac0f52258728fca4dbdd951aed8dfd4024cf85310e5bc6647a31965db3216847d99ab931c6d908d7ec6133389461673dde11b5270103dd76fe49d3b6 SHA512 2f300bd21e36773d907dfff067d5f9e9a65b63e6ae3ea4285e2c4289a23f7cf7f5700a8c77baaf6215a619bc28d55b4624cd3ea7b774b082b4038d1fdd6b2421
MISC metadata.xml 438 BLAKE2B fd7de2d82839646be57042d5db8b2d4a27f9e3f16bad202dc068d2eaf590e04952003d67614c98554c631668c0c31927a7e3a4f73ec15761a66631d01cf6aef3 SHA512 eb37fe7d88bec1255f2579bd9e60054b887c466984017501327a48a6a8ae6e3a3b3b473c850db94b0dda7bdeeb63b8c60e0cdae041fa034854fb68ee416fc9bd
diff --git a/dev-python/invoke/files/invoke-1.1.0-skip-pty-tests.patch b/dev-python/invoke/files/invoke-1.1.0-skip-pty-tests.patch
deleted file mode 100644
index d09eac74f91d..000000000000
--- a/dev-python/invoke/files/invoke-1.1.0-skip-pty-tests.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-This patch skips all tests related to PTYs: they all fail under portage
-because we don't have a valid TTY. Skip them. A bing chunk of them are
-skipped through "skipper()" under mock_pty. The rest of them are skipped
-by simulation windows (tests that don't run under windows don't run under
-portage either).
-diff --git a/tests/_util.py b/tests/_util.py
-index d954946b..27381cfd 100644
---- a/tests/_util.py
-+++ b/tests/_util.py
-@@ -24,7 +24,7 @@ support = os.path.join(os.path.dirname(__file__), "_support")
- def skip_if_windows(fn):
- @wraps(fn)
- def wrapper(*args, **kwargs):
-- if WINDOWS:
-+ if True:
- skip()
- return fn(*args, **kwargs)
-
-@@ -190,6 +190,10 @@ def mock_pty(
- return skip_if_windows
-
- def decorator(f):
-+ def skipper(*args, **kwargs):
-+ skip()
-+
-+ return skipper
- import fcntl
-
- ioctl_patch = patch("invoke.runners.fcntl.ioctl", wraps=fcntl.ioctl)