Re: [gentoo-dev] dynamic groups and users

2019-08-01 Thread Michał Górny
On Thu, 2019-08-01 at 21:04 +0200, Jaco Kroon wrote: > Hi, > > Looking at the new eclasses for acct-user and acct-group. > > These enforce that a group and user id should be set. > > This is not a requirement for enewuser nor enewgroup. > > As a further discrepancy, the user eclass requires >0

[gentoo-dev] Last rites: net-p2p/multibit

2019-08-01 Thread Michał Górny
# Michał Górny (01 Aug 2019) # Discontinued upstream in July 2017. Has irritating bugs, and is hard # to build from source (we have binary package only). Upstream # recommends net-misc/electrum as a replacement. # See: https://multibit.org/blog/2017/07/26/multibit-shutdown.html # Removal in 30

[gentoo-dev] dynamic groups and users

2019-08-01 Thread Jaco Kroon
Hi, Looking at the new eclasses for acct-user and acct-group. These enforce that a group and user id should be set. This is not a requirement for enewuser nor enewgroup. As a further discrepancy, the user eclass requires >0 for the IDs, whereas the checks in acct-user and acct-group is for

Re: [gentoo-dev] dynamic groups and users

2019-08-01 Thread Mike Gilbert
On Thu, Aug 1, 2019 at 3:04 PM Jaco Kroon wrote: > > Hi, > > Looking at the new eclasses for acct-user and acct-group. > > These enforce that a group and user id should be set. > > This is not a requirement for enewuser nor enewgroup. The new eclasses require you to set a fixed id, but they do

Re: [gentoo-dev] dynamic groups and users

2019-08-01 Thread Jaco Kroon
Hi Mike, From user.eclass: 146 if [[ ${euid} -gt 0 ]] ; then 147 if [[ -n $(egetent passwd ${euid}) ]] ; then 148 [[ -n ${force_uid} ]] && die "${FUNCNAME}: UID ${euid} already taken" 149 euid="next" 150 fi 151 else 152   

[gentoo-dev] Last rites: dev-games/vamos

2019-08-01 Thread David Seifert
# David Seifert (2019-08-01) # Dead upstream, last release over 5 years ago, # broken build system, fails with boost 1.70, # removal in 30 days. Bug #646014, #691162 dev-games/vamos

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

2019-08-01 Thread David Seifert
# David Seifert (2019-08-01) # Last touched over 3 years ago, broken tests, # fails with boost 1.70, removal in 30 days. # Bug #655886, #690704

Re: [gentoo-dev] [PMS] [PATCH] Correct the definition of ESYSROOT as EPREFIX isn't always applicable

2019-08-01 Thread Alexis Ballier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On Wed, 31 Jul 2019 21:40:19 +0100 James Le Cuirot wrote: > On Wed, 31 Jul 2019 15:51:58 +0200 > Alexis Ballier wrote: > > > On Tue, 30 Jul 2019 23:26:27 +0100 > > James Le Cuirot wrote: > > > > > > Admittedly without a full understanding of

[gentoo-portage-dev] [PATCH v2] Configure additional addresses on the lo interface for network-sandbox

2019-08-01 Thread Mike Gilbert
This works around some strange behavior in glibc's getaddrinfo() implementation when the AI_ADDRCONFIG flag is set. For example: struct addrinfo *res, hints = { .ai_family = AF_INET, .ai_flags = AI_ADDRCONFIG }; getaddrinfo("localhost", NULL, , ); This returns no results if there are no

Re: [gentoo-portage-dev] [PATCH v2] Configure additional addresses on the lo interface for network-sandbox

2019-08-01 Thread Zac Medico
On 8/1/19 6:22 AM, Mike Gilbert wrote: > This works around some strange behavior in glibc's getaddrinfo() > implementation when the AI_ADDRCONFIG flag is set. > > For example: > > struct addrinfo *res, hints = { .ai_family = AF_INET, .ai_flags = > AI_ADDRCONFIG }; > getaddrinfo("localhost",