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 D2DFD138334 for ; Fri, 12 Apr 2019 22:09:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A870E0830; Fri, 12 Apr 2019 22:09:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 D56F7E0830 for ; Fri, 12 Apr 2019 22:09:10 +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 BF5B6340EE3 for ; Fri, 12 Apr 2019 22:09:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74D7C452 for ; Fri, 12 Apr 2019 22:09:06 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1555106940.d84fc82f3c12794444c02955594e2cdc3bbe8a88.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/libmilter/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/libmilter/libmilter-1.0.2.ebuild X-VCS-Directories: mail-filter/libmilter/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: d84fc82f3c12794444c02955594e2cdc3bbe8a88 X-VCS-Branch: master Date: Fri, 12 Apr 2019 22:09:06 +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: 8192baa8-cf99-4f12-9a2e-f501a241ec96 X-Archives-Hash: 30badb5bdd5ff04913a6d1cdc3340f47 commit: d84fc82f3c12794444c02955594e2cdc3bbe8a88 Author: Andreas K. Hüttel gentoo org> AuthorDate: Fri Apr 12 22:08:52 2019 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Fri Apr 12 22:09:00 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d84fc82f mail-filter/libmilter: EAPI bump Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Andreas K. Hüttel gentoo.org> mail-filter/libmilter/libmilter-1.0.2.ebuild | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/mail-filter/libmilter/libmilter-1.0.2.ebuild b/mail-filter/libmilter/libmilter-1.0.2.ebuild index a804150cb01..326d780d483 100644 --- a/mail-filter/libmilter/libmilter-1.0.2.ebuild +++ b/mail-filter/libmilter/libmilter-1.0.2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="2" +EAPI=7 -inherit eutils multilib toolchain-funcs +inherit multilib toolchain-funcs # This library is part of sendmail, but it does not share the version number with it. # In order to find the right libmilter version number, check SMFI_VERSION definition @@ -27,8 +27,9 @@ RDEPEND="!mail-mta/sendmail" S="${WORKDIR}/sendmail-${SENDMAIL_VER}" src_prepare() { - epatch "${FILESDIR}"/${PN}-build-system.patch - epatch "${FILESDIR}"/${PN}-sharedlib.patch + eapply "${FILESDIR}"/${PN}-build-system.patch + eapply "${FILESDIR}"/${PN}-sharedlib.patch + default local CC="$(tc-getCC)" local ENVDEF="-DNETUNIX -DNETINET" @@ -45,7 +46,7 @@ src_prepare() { src_compile() { pushd libmilter - emake -j1 MILTER_SOVER=${PV} || die "libmilter compilation failed" + emake -j1 MILTER_SOVER=${PV} popd } @@ -58,9 +59,8 @@ src_install () { MANOWN=root MANGRP=0 INCOWN=root INCGRP=0 \ MSPQOWN=root CFOWN=root CFGRP=0 \ MILTER_SOVER=${PV} \ - install -C obj.*/libmilter \ - || die "install failed" + install -C obj.*/libmilter dodoc libmilter/README - dohtml libmilter/docs/* + dodoc libmilter/docs/* }