From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4E429138334 for ; Mon, 7 Oct 2019 20:05:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02D05E08BB; Mon, 7 Oct 2019 20:05:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9FA0BE08A6 for ; Mon, 7 Oct 2019 20:05:23 +0000 (UTC) Received: from pomiot (c134-66.icpnet.pl [85.221.134.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: mgorny) by smtp.gentoo.org (Postfix) with ESMTPSA id B625F34BA0F; Mon, 7 Oct 2019 20:05:21 +0000 (UTC) Message-ID: <9f1c750dddd8a8b806e29eb6931d04fbfca99dd8.camel@gentoo.org> Subject: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: www-apps/cgit/ From: =?UTF-8?Q?Micha=C5=82_G=C3=B3rny?= To: gentoo-dev@lists.gentoo.org, Ben Kohler Date: Mon, 07 Oct 2019 22:05:17 +0200 In-Reply-To: <1569790649.23d65596bf6ed47cf5a8fd1d163ddbf3f8fb2ce9.bkohler@gentoo> References: <1569790649.23d65596bf6ed47cf5a8fd1d163ddbf3f8fb2ce9.bkohler@gentoo> Organization: Gentoo Content-Type: multipart/signed; micalg="pgp-sha512"; protocol="application/pgp-signature"; boundary="=-PiqjqIYKpopCOQ1ha050" User-Agent: Evolution 3.32.4 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 X-Archives-Salt: 9ef210dd-6101-4ccd-83e2-74a6f1438c1a X-Archives-Hash: 0e6789cf1d73cc93c8907bce961614b9 --=-PiqjqIYKpopCOQ1ha050 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Sun, 2019-09-29 at 20:59 +0000, Ben Kohler wrote: > commit: 23d65596bf6ed47cf5a8fd1d163ddbf3f8fb2ce9 > Author: Ben Kohler gentoo org> > AuthorDate: Sun Sep 29 20:55:55 2019 +0000 > Commit: Ben Kohler gentoo org> > CommitDate: Sun Sep 29 20:57:29 2019 +0000 > URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3D23d655= 96 >=20 > www-apps/cgit: fix missing group on installation >=20 > After a recent change in user.eclass, this package no longer creates > the required group that's used later in src_install. I've adjusted the > ebuilds to restore the original behavior as intended before this eclass > change. >=20 > https://gitweb.gentoo.org/repo/gentoo.git/commit/eclass/user.eclass?id=3D= 3afc0d7b8b5e90c50d66c5a845b96c33e521e6e8 > Closes: https://bugs.gentoo.org/688890 > Package-Manager: Portage-2.3.76, Repoman-2.3.17 > RepoMan-Options: --force What's the justification for using --force? > Signed-off-by: Ben Kohler gentoo.org> >=20 > www-apps/cgit/cgit-1.2.1.ebuild | 5 +++-- > www-apps/cgit/cgit-9999.ebuild | 5 +++-- > 2 files changed, 6 insertions(+), 4 deletions(-) >=20 > diff --git a/www-apps/cgit/cgit-1.2.1.ebuild b/www-apps/cgit/cgit-1.2.1.e= build > index 82174c82295..4bbbeef07a1 100644 > --- a/www-apps/cgit/cgit-1.2.1.ebuild > +++ b/www-apps/cgit/cgit-1.2.1.ebuild > @@ -1,4 +1,4 @@ > -# Copyright 1999-2018 Gentoo Foundation > +# Copyright 1999-2019 Gentoo Authors > # Distributed under the terms of the GNU General Public License v2 > =20 > EAPI=3D5 > @@ -38,7 +38,8 @@ DEPEND=3D"${RDEPEND} > =20 > pkg_setup() { > webapp_pkg_setup > - enewuser "${PN}" > + enewgroup ${PN} > + enewuser ${PN} -1 -1 -1 ${PN} > } > =20 > src_prepare() { >=20 > diff --git a/www-apps/cgit/cgit-9999.ebuild b/www-apps/cgit/cgit-9999.ebu= ild > index 28d3a792277..a6df9326558 100644 > --- a/www-apps/cgit/cgit-9999.ebuild > +++ b/www-apps/cgit/cgit-9999.ebuild > @@ -1,4 +1,4 @@ > -# Copyright 1999-2018 Gentoo Foundation > +# Copyright 1999-2019 Gentoo Authors > # Distributed under the terms of the GNU General Public License v2 > =20 > EAPI=3D"4" > @@ -36,7 +36,8 @@ DEPEND=3D"${RDEPEND} > =20 > pkg_setup() { > webapp_pkg_setup > - enewuser "${PN}" > + enewgroup ${PN} > + enewuser ${PN} -1 -1 -1 ${PN} > } > =20 > src_prepare() { >=20 --=20 Best regards, Micha=C5=82 G=C3=B3rny --=-PiqjqIYKpopCOQ1ha050 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- iQGTBAABCgB9FiEEx2qEUJQJjSjMiybFY5ra4jKeJA4FAl2bmn5fFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEM3 NkE4NDUwOTQwOThEMjhDQzhCMjZDNTYzOUFEQUUyMzI5RTI0MEUACgkQY5ra4jKe JA7pXQf9Fg4y+LPEBiJaHg3LF0kYQycy5MF4gSfbAAWBOpzZUtMceEt8dIZpGVZI VBJwImKxCOfzHRS4udpzBbTMQs2/lrbRZ4K/hVtTuRzakdBgA6v1+71+DVVUiAyb F6yBRYUkNBpwks2LUTAy0xsz/dQo3pdDvqjr3An0erPrQMDSZWMbMXdDnz0HvBXy KFquSMrr5qDJYHNy7qAvUa5qxQWj2Py5M4wAPLX7XdJnKs9k+LDapI+fAVsdMyVt 29sdXu49VUCLD/leoLsNOwXCD7QB30UeuyDk4rTzmcy95WVjysw85IZ4awiQBLjc peiBaZuIqWoD6TqqhfrekCjTS9ctGg== =cejT -----END PGP SIGNATURE----- --=-PiqjqIYKpopCOQ1ha050--