[gentoo-dev] Gentoo Foundations Trustee Election 2020 - Election Team Formation

2020-06-17 Thread Roy Bamford
Team, Its time to kick off the Trustee Election for this year. It will span June 21 to about August 3. We need two or three election officials and an infra contact to staff this election. If you will be available and have a little free time in that period recruiting is now open. Potential can

Re: [gentoo-dev] Gentoo Foundations Trustee Election 2020 - Election Team Formation

2020-06-17 Thread David Abbott
On Wed, Jun 17, 2020 at 5:08 AM Roy Bamford wrote: > > Team, > > Its time to kick off the Trustee Election for this year. > > It will span June 21 to about August 3. > We need two or three election officials and an infra contact to staff this > election. > > If you will be available and have a li

Re: [gentoo-dev] Gentoo Foundations Trustee Election 2020 - Election Team Formation

2020-06-17 Thread Roy Bamford
On 2020.06.17 10:40, David Abbott wrote: > On Wed, Jun 17, 2020 at 5:08 AM Roy Bamford > wrote: > > > > Team, > > > > Its time to kick off the Trustee Election for this year. > > > > It will span June 21 to about August 3. > > We need two or three election officials and an infra contact to > staff

[gentoo-dev] [PATCH 1/2] kernel-install.eclass: Add pkg_config() to reinstall

2020-06-17 Thread Michał Górny
Add a pkg_config() phase that can be used to rebuild the initramfs and reinstall the kernel without rebuilding the whole package. Signed-off-by: Michał Górny --- eclass/kernel-install.eclass | 23 +++ 1 file changed, 23 insertions(+) diff --git a/eclass/kernel-install.eclass

[gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()

2020-06-17 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/kernel-install.eclass | 25 - 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/eclass/kernel-install.eclass b/eclass/kernel-install.eclass index b3ef186a74eb..8065a8f5638e 100644 --- a/eclass/kernel-install.eclass +++ b/e

Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()

2020-06-17 Thread Ulrich Mueller
> On Wed, 17 Jun 2020, Michał Górny wrote: > +# @FUNCTION: kernel-install_pkg_pretend > +# @DESCRIPTION: > +# Check for missing optional dependencies and output warnings. > +kernel-install_pkg_pretend() { > + debug-print-function ${FUNCNAME} "${@}" > + > + if ! has_version -d sys-kern

Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()

2020-06-17 Thread Michał Górny
On Wed, 2020-06-17 at 12:57 +0200, Ulrich Mueller wrote: > > > > > > On Wed, 17 Jun 2020, Michał Górny wrote: > > > +# @FUNCTION: kernel-install_pkg_pretend > > +# @DESCRIPTION: > > +# Check for missing optional dependencies and output warnings. > > +kernel-install_pkg_pretend() { > > + debug-p

Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()

2020-06-17 Thread Ulrich Mueller
> On Wed, 17 Jun 2020, Michał Górny wrote: >> Should we really warn about a package that (in its default >> configuration) can only be installed if the user accepts non-free >> licenses? > That's one of the reasons it's only a warning and not a USE flag. Still, "Gentoo will never depend upon

Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()

2020-06-17 Thread Alexis Ballier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On Wed, 17 Jun 2020 13:08:56 +0200 Michał Górny wrote: > On Wed, 2020-06-17 at 12:57 +0200, Ulrich Mueller wrote: > > > > > > > On Wed, 17 Jun 2020, Michał Górny wrote: > > > > > +# @FUNCTION: kernel-install_pkg_pretend > > > +# @DESCRIPTION: > >

Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()

2020-06-17 Thread Michał Górny
On Wed, 2020-06-17 at 13:22 +0200, Ulrich Mueller wrote: > > > > > > On Wed, 17 Jun 2020, Michał Górny wrote: > > > Should we really warn about a package that (in its default > > > configuration) can only be installed if the user accepts non-free > > > licenses? > > That's one of the reasons it's o

Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()

2020-06-17 Thread Ulrich Mueller
> On Wed, 17 Jun 2020, Michał Górny wrote: > Can we please put users above silly politics? Gentoo 'does not depend' > on any non-free package to print the warning. If people have hardware > that requires non-free firmware, the least we can do is point out where > to get this firmware from.

Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()

2020-06-17 Thread Luca Barbato
On 17/06/2020 12:57, Ulrich Mueller wrote: On Wed, 17 Jun 2020, Michał Górny wrote: +# @FUNCTION: kernel-install_pkg_pretend +# @DESCRIPTION: +# Check for missing optional dependencies and output warnings. +kernel-install_pkg_pretend() { + debug-print-function ${FUNCNAME} "${@}" + +

Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()

2020-06-17 Thread Mike Gilbert
On Wed, Jun 17, 2020 at 7:42 AM Ulrich Mueller wrote: > > > On Wed, 17 Jun 2020, Michał Górny wrote: > > > Can we please put users above silly politics? Gentoo 'does not depend' > > on any non-free package to print the warning. If people have hardware > > that requires non-free firmware, the

Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()

2020-06-17 Thread Alexis Ballier
On Wed, 17 Jun 2020 10:58:03 -0400 Mike Gilbert wrote: > On Wed, Jun 17, 2020 at 7:42 AM Ulrich Mueller wrote: > > > > > On Wed, 17 Jun 2020, Michał Górny wrote: > > > > > Can we please put users above silly politics? Gentoo 'does not > > > depend' on any non-free package to print the warni

Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()

2020-06-17 Thread Ulrich Mueller
> On Wed, 17 Jun 2020, Mike Gilbert wrote: >> s/If/If and only if/ and I'll be fine with it. :) > Are you proposing that the ebuild inspect the user's hardware and/or > kernel config before printing a warning? Of course not. > That sounds like a terrible idea to me. Who is going to maintain

Re: [gentoo-dev] Graphics Project disbanded [pkgs up for grabs]

2020-06-17 Thread Marek Szuba
On 2020-06-06 20:50, Aaron Bauman wrote: > media-gfx/darktable > media-gfx/pngcrush I'll take these. -- MS signature.asc Description: OpenPGP digital signature