summaryrefslogtreecommitdiff
path: root/dev-vcs/git-pw
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2021-12-25 20:34:27 +0000
committerV3n3RiX <venerix@koprulu.sector>2021-12-25 20:34:27 +0000
commit0f15659d48c193027158492acb726297501202c5 (patch)
tree5502ba879a78b759da28441d418dbbfe08bd8f03 /dev-vcs/git-pw
parent93a93e9a3b53c1a73142a305ea1f8136846942ee (diff)
gentoo xmass resync : 25.12.2021
Diffstat (limited to 'dev-vcs/git-pw')
-rw-r--r--dev-vcs/git-pw/Manifest5
-rw-r--r--dev-vcs/git-pw/files/git-pw-2.1.1-test.patch28
-rw-r--r--dev-vcs/git-pw/git-pw-2.2.3.ebuild (renamed from dev-vcs/git-pw/git-pw-2.1.1.ebuild)5
3 files changed, 4 insertions, 34 deletions
diff --git a/dev-vcs/git-pw/Manifest b/dev-vcs/git-pw/Manifest
index 43b2c57c0dcc..9dedef7ce17d 100644
--- a/dev-vcs/git-pw/Manifest
+++ b/dev-vcs/git-pw/Manifest
@@ -1,4 +1,3 @@
-AUX git-pw-2.1.1-test.patch 1048 BLAKE2B e44d85ed1b0073a0c4b3e9f044e5f6d79612f9acc2a3b65dab9d4bf653c3364935203741346ca56cf6d3b0b75550954616289ed6a86f49cab7ab5fbc84cdf3a7 SHA512 6b5741a95c35cc19afac0d5f1485fb85290d2a9eb9938f65eed83b0bf016101e0321262685687d57c52abe4cdd18a1d33ab632df5c37b59a26386161ecc17956
-DIST git-pw-2.1.1.tar.gz 32489 BLAKE2B 516eb3b81c3798a455b7122a3b0ad9bf0d9722eb6f301ea58ed766cca94137f4da4eaf34a40ec7c5e108368aa6099f9401aba6d71d463913cd2b7fd9dc7aef09 SHA512 3cbf0670bf811d6b6ef0d4c5c7ad4321380d442c62fd15869758b26b4fc375c2d4bd2bdbf693a41d0cbe862bdef15fc02d04124a089f7786bd1b2e56f818e0c2
-EBUILD git-pw-2.1.1.ebuild 1080 BLAKE2B 82442c41df4c20dadbb231d982367eadc0372ab9b3e275344dad5ccf4e1b92731c69cd3d16df200272415abcffd2717239840f9ccf48fa33b739c4a8a70c57c6 SHA512 62efae093f24d7c0ffeba0a3bd9503e92185c3d7596c2c6e98cdbe2051379a74b8044e519d673e2fd57e68b6fae6c6bd4e71d191f9de1bdebfc56c9c91e74b06
+DIST git-pw-2.2.3.tar.gz 33605 BLAKE2B 6f8b72b1ef8cda3f5dea568ad0e872d3c8f1795bf9889b76cd281bc19b303a903baa38a89036511b2d1496b258b37e843fcbc333f5a86735bcae6f3d22f3a320 SHA512 06a34e1cc3a7b32b44a6042abf17d00f5b648039ce091885bf19638457f3800f2daecbcd03ae9da2f48166bac53a2219735e251145302bcc98a9cd29fab7450f
+EBUILD git-pw-2.2.3.ebuild 1081 BLAKE2B 604bb491fb2de2b9d8286744a78f27c45c0948c6f5557386851e235d166fb5a388eb3479b30974b9cf679791fec33851eb0f309a24346999f724c3003c768eaa SHA512 2b3f4e26686531002ac1b7e8a4203d2394e16dca72a73be67973295fc30025168e9dc20d9765aff2c34069bf72b28218ed0e19814834970c0ac6fe312c7b7829
MISC metadata.xml 573 BLAKE2B ea8a1646462b2ff59f05531d1964c160216b7c19b17e261a75940e591106195050ad9ba65f3b5ea594d4a4ad53cfda7cf7dbb1894c6ac850a6b5c9e189093432 SHA512 cc0a718a6d9bd29c5a77dc3f23a4f4b691ab0c954c6c2a7266126c2cbc312aab73e5484120bad031e77abcf0c1cbff2c7af998700e45eebc51fd73facc988f8c
diff --git a/dev-vcs/git-pw/files/git-pw-2.1.1-test.patch b/dev-vcs/git-pw/files/git-pw-2.1.1-test.patch
deleted file mode 100644
index 00df55f872d1..000000000000
--- a/dev-vcs/git-pw/files/git-pw-2.1.1-test.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 08152c86d02c36c425047fa9220d6d5ac3fcda01 Mon Sep 17 00:00:00 2001
-From: Matt Smith <matt@offtopica.uk>
-Date: Sun, 26 Sep 2021 19:55:40 +0100
-Subject: [PATCH] tests: Unset PAGER env when testing fallback
-
-Prior to this commit, the test test_echo_via_pager_env_default will
-fail when $PAGER is set to /usr/bin/less (or anything other than
-"less"). Use unittest.mock to unset the environment variable during
-the test.
----
- tests/test_utils.py | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/tests/test_utils.py b/tests/test_utils.py
-index cf75a55..a0974f1 100644
---- a/tests/test_utils.py
-+++ b/tests/test_utils.py
-@@ -75,6 +75,7 @@ def test_echo_via_pager_env_PAGER(mock_inner, mock_tabulate, mock_config):
- @mock.patch.object(utils, 'git_config', return_value=None)
- @mock.patch.object(utils, '_tabulate')
- @mock.patch.object(utils, '_echo_via_pager')
-+@mock.patch.dict(os.environ, {'PAGER': ''})
- def test_echo_via_pager_env_default(mock_inner, mock_tabulate, mock_config):
- utils.echo_via_pager('test', ('foo',), None)
-
---
-2.33.0
-
diff --git a/dev-vcs/git-pw/git-pw-2.1.1.ebuild b/dev-vcs/git-pw/git-pw-2.2.3.ebuild
index dd63e27b733c..e7caa3775a7f 100644
--- a/dev-vcs/git-pw/git-pw-2.1.1.ebuild
+++ b/dev-vcs/git-pw/git-pw-2.2.3.ebuild
@@ -21,20 +21,19 @@ LICENSE="MIT"
SLOT="0"
IUSE=""
-PATCHES=( "${FILESDIR}/${P}-test.patch" )
-
RDEPEND="
>=dev-python/arrow-0.10[${PYTHON_USEDEP}]
<dev-python/click-8.0[${PYTHON_USEDEP}]
dev-python/pbr[${PYTHON_USEDEP}]
<dev-python/requests-3.0[${PYTHON_USEDEP}]
>=dev-python/tabulate-0.8[${PYTHON_USEDEP}]
+ >=dev-python/pyyaml-5.1[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/pbr[${PYTHON_USEDEP}]
test? (
>=dev-python/mock-3.0.0[${PYTHON_USEDEP}]
- <dev-python/pytest-6.0[${PYTHON_USEDEP}]
+ >=dev-python/pytest-3.0[${PYTHON_USEDEP}]
>=dev-python/pytest-cov-2.5[${PYTHON_USEDEP}]
)
"