From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3B943139BC6 for ; Sun, 13 Sep 2015 15:11:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7566F21C022; Sun, 13 Sep 2015 15:11:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1BDB321C022 for ; Sun, 13 Sep 2015 15:11:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DA1E3340AC9 for ; Sun, 13 Sep 2015 15:11:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B56C317C for ; Sun, 13 Sep 2015 15:11:21 +0000 (UTC) From: "Doug Goldstein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Doug Goldstein" Message-ID: <1442157066.6532b43e7a05adb24f55ae7dfea3eeed069b5c84.cardoe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/mythtv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-tv/mythtv/mythtv-0.27.5_p20150904.ebuild X-VCS-Directories: media-tv/mythtv/ X-VCS-Committer: cardoe X-VCS-Committer-Name: Doug Goldstein X-VCS-Revision: 6532b43e7a05adb24f55ae7dfea3eeed069b5c84 X-VCS-Branch: master Date: Sun, 13 Sep 2015 15:11:21 +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-Archives-Salt: ece85081-b748-45b5-aa62-b47c5c29fd8f X-Archives-Hash: 7c9c9b6502f954ab9153a18ea95324ba commit: 6532b43e7a05adb24f55ae7dfea3eeed069b5c84 Author: Doug Goldstein gentoo org> AuthorDate: Sun Sep 13 15:11:06 2015 +0000 Commit: Doug Goldstein gentoo org> CommitDate: Sun Sep 13 15:11:06 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6532b43e media-tv/mythtv: fix python-single-r1 initialization Don't conditionally call python-single-r1_pkg_setup as pointed out by Anders Hellgren gentoo.org>. Gentoo-Bug: 560136 Package-Manager: portage-2.2.20.1 Signed-off-by: Doug Goldstein gentoo.org> media-tv/mythtv/mythtv-0.27.5_p20150904.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-tv/mythtv/mythtv-0.27.5_p20150904.ebuild b/media-tv/mythtv/mythtv-0.27.5_p20150904.ebuild index 9a16f80..62926a8 100644 --- a/media-tv/mythtv/mythtv-0.27.5_p20150904.ebuild +++ b/media-tv/mythtv/mythtv-0.27.5_p20150904.ebuild @@ -140,7 +140,7 @@ S="${WORKDIR}/${MY_P}/mythtv" MYTHTV_GROUPS="video,audio,tty,uucp" pkg_setup() { - use python && python-single-r1_pkg_setup + python-single-r1_pkg_setup enewuser mythtv -1 /bin/bash /home/mythtv ${MYTHTV_GROUPS} usermod -a -G ${MYTHTV_GROUPS} mythtv }