commit: 2d586a926f128ec43d401b248f1b5a2db661abdf
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 7 18:57:46 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Nov 7 18:57:46 2022 +0000
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgcore.git/commit/?id=2d586a92
pytest.plugin: create_ebuild better homepage
Previous homepage was matching the MissingRemoteId check, so now use the
one from the project's github page, which doesn't flag it as missing.
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcore/pytest/plugin.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcore/pytest/plugin.py b/src/pkgcore/pytest/plugin.py
index ddc12db6d..10739079d 100644
--- a/src/pkgcore/pytest/plugin.py
+++ b/src/pkgcore/pytest/plugin.py
@@ -226,7 +226,7 @@ class EbuildRepo:
eapi = kwargs.pop('eapi', '7')
slot = kwargs.pop('slot', '0')
desc = kwargs.pop('description', 'stub package description')
- homepage = kwargs.pop('homepage',
'https://github.com/pkgcore/pkgcheck')
+ homepage = kwargs.pop('homepage', 'https://pkgcore.github.io/pkgcheck')
license = kwargs.pop('license', 'blank')
ebuild_path = pjoin(ebuild_dir, f'{cpv.package}-{cpv.fullver}.ebuild')