| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
`acct-user.eclass`'s documentation [says](https://devmanual.gentoo.org/eclass-reference/acct-user.eclass/index.html):
```
ACCT_USER_HOME_OWNER
The ownership to use for the home directory, in chown ([user][:group]) syntax.
Defaults to the newly created user, and its primary group.
```
```
ACCT_USER_GROUPS (REQUIRED)
List of groups the user should belong to. This must be a bash array.
The first group specified is the user's primary group, while the remaining groups (if any)
become supplementary groups.
```
So we can remove in `acct-user/user/user-0.ebuild`:
```
ACCT_USER_HOME_OWNER="user"
```
Moreover if we have:
```
ACCT_USER_GROUPS=( primary_group group2 )
```
, we can remove
```
ACCT_USER_HOME_OWNER="user:primary_group"
```
Signed-off-by: Alexander Kurakin <kuraga333@mail.ru>
Closes: https://github.com/gentoo/gentoo/pull/29214
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
|
|
|
|
| |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
|
|
|
| |
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Christian Ruppert <idl0r@gentoo.org>
|
|
|
|
|
| |
Bug: https://bugs.gentoo.org/552720
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
|
|
|
|
|
| |
Closes: https://bugs.gentoo.org/762089
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --force
Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
|