Re: [gentoo-dev] [PATCH] acct-user.eclass: ignore missing directory in preinst

2019-08-15 Thread Ulrich Mueller
> On Thu, 15 Aug 2019, Mike Gilbert wrote: > + # Path might be missing due to INSTALL_MASK, etc. > + # https://bugs.gentoo.org/691478 > + if [[ -e "${ED}/${ACCT_USER_HOME#/}" ]]; then > + fowners "${ACCT_USER_HOME_OWNER}" "${ACCT_USER_HOM

[gentoo-dev] [PATCH 2/3] profiles: add eapi=5 to ppc64/17.0/64bit-userland/little-endian/systemd

2019-08-15 Thread Georgy Yakovlev
Signed-off-by: Georgy Yakovlev --- .../powerpc/ppc64/17.0/64bit-userland/little-endian/systemd/eapi | 1 + 1 file changed, 1 insertion(+) create mode 100644 profiles/default/linux/powerpc/ppc64/17.0/64bit-userland/little-endian/systemd/eapi diff --git a/profiles/default/linux/powerpc/ppc64/17

[gentoo-dev] mark ppc64le profiles stable

2019-08-15 Thread Georgy Yakovlev
Let's mark ppc64le profiles stable. It passes CI https://github.com/gentoo/gentoo/pull/12711 Regards, Georgy.

[gentoo-dev] [PATCH 1/3] profiles: add eapi=5 to ppc64/17.0/64bit-userland/little-endian

2019-08-15 Thread Georgy Yakovlev
Signed-off-by: Georgy Yakovlev --- .../linux/powerpc/ppc64/17.0/64bit-userland/little-endian/eapi | 1 + 1 file changed, 1 insertion(+) create mode 100644 profiles/default/linux/powerpc/ppc64/17.0/64bit-userland/little-endian/eapi diff --git a/profiles/default/linux/powerpc/ppc64/17.0/64bit

[gentoo-dev] [PATCH 3/3] profiles/profiles.desc: mark ppc64le profiles stable

2019-08-15 Thread Georgy Yakovlev
Signed-off-by: Georgy Yakovlev --- profiles/profiles.desc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profiles/profiles.desc b/profiles/profiles.desc index afafbf39dea..d9384010e59 100644 --- a/profiles/profiles.desc +++ b/profiles/profiles.desc @@ -159,8 +159,8 @@ ppc

Re: [gentoo-dev] [PATCH] kernel-2.eclass: Inherit python-any-r1 only in deblob branch

2019-08-15 Thread Michał Górny
On Tue, 2019-08-13 at 09:48 +0200, Michał Górny wrote: > Signed-off-by: Michał Górny > --- > eclass/kernel-2.eclass | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass > index 1b2b5d3e8b60..d672b295c37c 100644 > --- a/eclass

[gentoo-dev] Last rites: dev-lang/pasm

2019-08-15 Thread Michał Górny
# Michał Górny (2019-08-15) # Unmaintained, PPC-only. The Gentoo version is outdated, ebuild # is still EAPI=0 and has QA violations. Last upstream release in 2009, # declared EOL since then. # Removal in 30 days. Bug #692202. dev-lang/pasm -- Best regards, Michał Górny signature.asc Descr

Re: [gentoo-dev] [PATCH] acct-user.eclass: handle missing path in preinst

2019-08-15 Thread Michael Orlitzky
On 8/14/19 5:41 PM, Mike Gilbert wrote: > > (If the "man" user really reads things from e.g. $HOME/man5/ebuild.5, > I'll eat my foot.) > > > Agreed. Please file a bug about this. > We already have bug 691478 for this issue? Only it should have been assigned to the failing package's pro

Re: [gentoo-dev] [PATCH] acct-user.eclass: ignore missing directory in preinst

2019-08-15 Thread Michael Orlitzky
On 8/15/19 3:19 AM, Ulrich Mueller wrote: > > I don't think that's a sane situation, so maybe the eclass should just > die here? (Basically, there are two possibilities: Either, things will > break if the dir is missing, then dying might be the best option. > Or, everything works without the dir,

Re: [gentoo-dev] [PATCH] acct-user.eclass: ignore missing directory in preinst

2019-08-15 Thread Mike Gilbert
On Thu, Aug 15, 2019 at 8:33 AM Michael Orlitzky wrote: > > On 8/15/19 3:19 AM, Ulrich Mueller wrote: > > > > I don't think that's a sane situation, so maybe the eclass should just > > die here? (Basically, there are two possibilities: Either, things will > > break if the dir is missing, then dyin

Re: [gentoo-dev] [PATCH] acct-user.eclass: handle missing path in preinst

2019-08-15 Thread Mike Gilbert
On Thu, Aug 15, 2019 at 8:32 AM Michael Orlitzky wrote: > > On 8/14/19 5:41 PM, Mike Gilbert wrote: > > > > (If the "man" user really reads things from e.g. $HOME/man5/ebuild.5, > > I'll eat my foot.) > > > > > > Agreed. Please file a bug about this. > > > > We already have bug 691478 for

Re: [gentoo-dev] [PATCH] acct-user.eclass: handle missing path in preinst

2019-08-15 Thread Mike Gilbert
On Thu, Aug 15, 2019 at 11:00 AM Mike Gilbert wrote: > > On Thu, Aug 15, 2019 at 8:32 AM Michael Orlitzky wrote: > > > > On 8/14/19 5:41 PM, Mike Gilbert wrote: > > > > > > (If the "man" user really reads things from e.g. $HOME/man5/ebuild.5, > > > I'll eat my foot.) > > > > > > > > > Agr

[gentoo-dev] [PATCH] acct-user.eclass: die explicitly if HOME is missing in preinst

2019-08-15 Thread Mike Gilbert
Bug: https://bugs.gentoo.org/691478 --- eclass/acct-user.eclass | 8 1 file changed, 8 insertions(+) diff --git a/eclass/acct-user.eclass b/eclass/acct-user.eclass index 60009643c144..008dc6bb7d68 100644 --- a/eclass/acct-user.eclass +++ b/eclass/acct-user.eclass @@ -334,6 +334,14 @@ acc

Re: [gentoo-dev] mark ppc64le profiles stable

2019-08-15 Thread Matt Turner
Looks great!

Re: [gentoo-dev] [PATCH] acct-user.eclass: die explicitly if HOME is missing in preinst

2019-08-15 Thread Michał Górny
On Thu, 2019-08-15 at 11:43 -0400, Mike Gilbert wrote: > Bug: https://bugs.gentoo.org/691478 > --- > eclass/acct-user.eclass | 8 > 1 file changed, 8 insertions(+) > > diff --git a/eclass/acct-user.eclass b/eclass/acct-user.eclass > index 60009643c144..008dc6bb7d68 100644 > --- a/eclass/

[gentoo-dev] GID/UID reservation

2019-08-15 Thread JoMull01
I would like to reserve UID/GID 263 for net-libs/tox. Pending PR: https://github.com/gentoo/gentoo/pull/12638 The above pull request is for net-libs/tox. Once I get approval for the GID/UID, I will make pulls for acct-group/tox and acct-user/tox. Thanks, Josiah M. Mullins

[gentoo-dev] Re: GID/UID reservation

2019-08-15 Thread JoMull01
My mistake, I meant GID/UID 236. ‐‐‐ Original Message ‐‐‐ On Thursday, August 15, 2019 1:31 PM, JoMull01 wrote: > I would like to reserve UID/GID 263 for net-libs/tox. > > Pending PR: > https://github.com/gentoo/gentoo/pull/12638 > The above pull request is for net-libs/tox. > > Once I g

Re: [gentoo-dev] mark ppc64le profiles stable

2019-08-15 Thread Georgy Yakovlev
On Thursday, August 15, 2019 1:32:28 AM PDT Georgy Yakovlev wrote: > Let's mark ppc64le profiles stable. > It passes CI https://github.com/gentoo/gentoo/pull/12711 > > Regards, Georgy. pushed. signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] RFC: UID/GID assignment for dovecot (76)

2019-08-15 Thread Michael Orlitzky
On 8/7/19 5:24 AM, Eray Aslan wrote: > I would like to reserve UID/GID 76 for dovecot (net-mail/dovecot) > > This id differs from what we have provided historically (97) but gid/97 > is used by acct-group/input. So use 76 instead. > > This id is the same in Arch (76) but differs from Redhat (97)

Re: [gentoo-dev] [PATCH] acct-user.eclass: die explicitly if HOME is missing in preinst

2019-08-15 Thread Michael Orlitzky
On 8/15/19 11:43 AM, Mike Gilbert wrote: > > + # Path might be missing due to INSTALL_MASK, etc. > + # https://bugs.gentoo.org/691478 > + if [[ ! -e "${ED}/${ACCT_USER_HOME#/}" ]]; then > + eerror "Home directory is missing from the installat

Re: [gentoo-dev] [PATCH] acct-user.eclass: die explicitly if HOME is missing in preinst

2019-08-15 Thread Mike Gilbert
On Thu, Aug 15, 2019 at 3:01 PM Michael Orlitzky wrote: > > On 8/15/19 11:43 AM, Mike Gilbert wrote: > > > > + # Path might be missing due to INSTALL_MASK, etc. > > + # https://bugs.gentoo.org/691478 > > + if [[ ! -e "${ED}/${ACCT_USER_HOME#/}" ]]; then > > +

[gentoo-dev] Homedir guidelines (was: acct-user/amavis: new user (UID 333))

2019-08-15 Thread Michael Orlitzky
> On 8/3/19 7:49 PM, Michael Orlitzky wrote: >> >> That makes me think that we should set >> >> ACCT_USER_HOME=/var/lib/amavis > > We'll do this during the next version/revision bump, keeping everything > else the same. > The recent homedir problems changed my thoughts on this. The mail-filter