[gentoo-dev] Last rites: net-misc/netkit-rsh

2021-06-19 Thread John Helmert III
# John Helmert III (2021-06-19) # Unmaintained, open security bug. # Removal on 2021-07-19. Bug #717794. net-misc/netkit-rsh signature.asc Description: PGP signature

[gentoo-dev] news item: riscv upgrade to 20.0 profiles

2021-06-19 Thread Andreas K. Huettel
Feedback welcome... Title: riscv upgrade to 20.0 profiles Author: Andreas K. Hüttel Posted: 2021-06-25 Revision: 1 News-Item-Format: 2.0 Display-If-Profile: default/linux/riscv/17.0/rv64gc/lp64d Display-If-Profile: default/linux/riscv/17.0/rv64gc/lp64d/systemd Display-If-Profile:

[gentoo-portage-dev] Re: [PATCH v2] Add @unsatisfied-deps package set (bug 248026)

2021-06-19 Thread Zac Medico
On 6/18/21 8:29 PM, Zac Medico wrote: > On 6/18/21 8:13 PM, Zac Medico wrote: >> On 6/18/21 6:01 PM, Zac Medico wrote: >>> If emerge --depclean fails to resolve any dependencies, then it will >>> now suggest emerge @unsatisfied-deps as the simplest possible >>> solution, and will also suggest to

Re: [gentoo-dev] [PATCH 1/3] readme.gentoo-r1.eclass: works just fine with EAPI=8

2021-06-19 Thread Ulrich Mueller
See my posting 4 days ago: https://archives.gentoo.org/gentoo-dev/message/c71621ccc96873d98697fb35c98c55b1 Merged now. signature.asc Description: PGP signature

[gentoo-dev] Last rites: dev-python/brotlipy

2021-06-19 Thread Michał Górny
# Michał Górny (2021-06-19) # Conflicts with app-arch/brotli[python].  Discontinued in favor # of dev-python/brotlicffi.  No revdeps remain. # Removal on 2021-07-19.  Bug #796749. dev-python/brotlipy -- Best regards, Michał Górny

Re: [gentoo-dev] [PATCH 2/3] perl-functions.eclass: Add new helpers for EAPI=8 ...

2021-06-19 Thread Michał Górny
On Sat, 2021-06-19 at 13:01 +0200, dilfri...@gentoo.org wrote: > From: Andreas K. Hüttel > > ... and fix an existing one. > > fperms works on ${D} by default, so we can give it / to operate on. > > Bug: https://bugs.gentoo.org/554346 > Bug: https://bugs.gentoo.org/733020 > Signed-off-by:

[gentoo-dev] [PATCH 3/3] perl-module.eclass: Add EAPI=8 support

2021-06-19 Thread dilfridge
From: Andreas K. Hüttel New features: DIST_WIKI and DIST_MAKE File permissions are fixed on installation Bug: https://bugs.gentoo.org/733020 Bug: https://bugs.gentoo.org/554346 Bug: https://bugs.gentoo.org/261375 Signed-off-by: Andreas K. Hüttel --- eclass/perl-module.eclass | 89

[gentoo-dev] [PATCH 2/3] perl-functions.eclass: Add new helpers for EAPI=8 ...

2021-06-19 Thread dilfridge
From: Andreas K. Hüttel ... and fix an existing one. fperms works on ${D} by default, so we can give it / to operate on. Bug: https://bugs.gentoo.org/554346 Bug: https://bugs.gentoo.org/733020 Signed-off-by: Andreas K. Hüttel --- eclass/perl-functions.eclass | 35

[gentoo-dev] [PATCH 1/3] readme.gentoo-r1.eclass: works just fine with EAPI=8

2021-06-19 Thread dilfridge
From: Andreas K. Hüttel Signed-off-by: Andreas K. Hüttel --- eclass/readme.gentoo-r1.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/readme.gentoo-r1.eclass b/eclass/readme.gentoo-r1.eclass index dfa3b52b6765..ce492b900104 100644 ---

[gentoo-dev] [PATCH] python-utils-r1.eclass: Pass -Wdefault to epytest to avoid -Werror

2021-06-19 Thread Michał Górny
Make pytest pass -Wdefault in order to override upstream default warning options that commonly include -Werror. This has often caused tests to start failing due to new deprecation warnings introduced in dependencies, or block new implementations due to harmless deprecation warnings. A side