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 CE320138239 for ; Sun, 29 Sep 2019 20:59:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C5ADE0858; Sun, 29 Sep 2019 20:59:15 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 00BAFE0858 for ; Sun, 29 Sep 2019 20:59:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2C54634B6BF for ; Sun, 29 Sep 2019 20:59:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC016A8 for ; Sun, 29 Sep 2019 20:59:12 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1569790649.23d65596bf6ed47cf5a8fd1d163ddbf3f8fb2ce9.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/cgit/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/cgit/cgit-1.2.1.ebuild www-apps/cgit/cgit-9999.ebuild X-VCS-Directories: www-apps/cgit/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 23d65596bf6ed47cf5a8fd1d163ddbf3f8fb2ce9 X-VCS-Branch: master Date: Sun, 29 Sep 2019 20:59:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7ff2e1e4-9dac-4e19-95ac-48c6ef752bf7 X-Archives-Hash: c63a03abf792d1ecd850b33487a8eb2b 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=23d65596 www-apps/cgit: fix missing group on installation 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. https://gitweb.gentoo.org/repo/gentoo.git/commit/eclass/user.eclass?id=3afc0d7b8b5e90c50d66c5a845b96c33e521e6e8 Closes: https://bugs.gentoo.org/688890 Package-Manager: Portage-2.3.76, Repoman-2.3.17 RepoMan-Options: --force Signed-off-by: Ben Kohler gentoo.org> www-apps/cgit/cgit-1.2.1.ebuild | 5 +++-- www-apps/cgit/cgit-9999.ebuild | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/www-apps/cgit/cgit-1.2.1.ebuild b/www-apps/cgit/cgit-1.2.1.ebuild 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 EAPI=5 @@ -38,7 +38,8 @@ DEPEND="${RDEPEND} pkg_setup() { webapp_pkg_setup - enewuser "${PN}" + enewgroup ${PN} + enewuser ${PN} -1 -1 -1 ${PN} } src_prepare() { diff --git a/www-apps/cgit/cgit-9999.ebuild b/www-apps/cgit/cgit-9999.ebuild 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 EAPI="4" @@ -36,7 +36,8 @@ DEPEND="${RDEPEND} pkg_setup() { webapp_pkg_setup - enewuser "${PN}" + enewgroup ${PN} + enewuser ${PN} -1 -1 -1 ${PN} } src_prepare() {