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 1C61C1382C5 for ; Sat, 21 Apr 2018 11:15:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F80AE0869; Sat, 21 Apr 2018 11:15:57 +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 3EFD4E0869 for ; Sat, 21 Apr 2018 11:15:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 7302E335C75 for ; Sat, 21 Apr 2018 11:15:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03A15295 for ; Sat, 21 Apr 2018 11:15:55 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1524309312.5ac232c7f6ed5284380c565a461605f68bdf00cb.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libcgroup/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libcgroup/libcgroup-0.41-r4.ebuild X-VCS-Directories: dev-libs/libcgroup/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 5ac232c7f6ed5284380c565a461605f68bdf00cb X-VCS-Branch: master Date: Sat, 21 Apr 2018 11:15:55 +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: e41af64a-ee63-44d2-b48d-59c3d1a1b357 X-Archives-Hash: 9567c4c8336c327ca0d83f24948c8de1 commit: 5ac232c7f6ed5284380c565a461605f68bdf00cb Author: Marty E. Plummer startmail com> AuthorDate: Fri Apr 20 16:34:22 2018 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Apr 21 11:15:12 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ac232c7 dev-libs/libcgroup: epatch->PATCHES=() Also dropped unneeded eutils eclass. Package-Manager: Portage-2.3.31, Repoman-2.3.9 dev-libs/libcgroup/libcgroup-0.41-r4.ebuild | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/dev-libs/libcgroup/libcgroup-0.41-r4.ebuild b/dev-libs/libcgroup/libcgroup-0.41-r4.ebuild index 0f827edbd6f..67b609f2dfe 100644 --- a/dev-libs/libcgroup/libcgroup-0.41-r4.ebuild +++ b/dev-libs/libcgroup/libcgroup-0.41-r4.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI=6 -inherit autotools eutils flag-o-matic linux-info pam +inherit autotools flag-o-matic linux-info pam DESCRIPTION="Tools and libraries to configure and manage kernel control groups" HOMEPAGE="http://libcg.sourceforge.net/" @@ -33,11 +33,14 @@ pkg_setup() { linux-info_pkg_setup } -src_prepare() { - epatch "${FILESDIR}"/${P}-replace_DECLS.patch - epatch "${FILESDIR}"/${P}-replace_INLCUDES.patch - epatch "${FILESDIR}"/${P}-reorder-headers.patch +PATCHES=( + "${FILESDIR}"/${P}-replace_DECLS.patch + "${FILESDIR}"/${P}-replace_INLCUDES.patch + "${FILESDIR}"/${P}-reorder-headers.patch +) +src_prepare() { + default # Change rules file location sed -e 's:/etc/cgrules.conf:/etc/cgroup/cgrules.conf:' \ -i src/libcgroup-internal.h || die "sed failed" @@ -47,7 +50,6 @@ src_prepare() { -i src/pam/Makefile.am || die "sed failed" sed -e 's#/var/run#/run#g' -i configure.in || die "sed failed" - eapply_user eautoreconf }