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 39B2E138334 for ; Mon, 18 Feb 2019 21:00:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFC2DE0830; Mon, 18 Feb 2019 21:00:40 +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 B699EE0830 for ; Mon, 18 Feb 2019 21:00:39 +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 0D507335CEE for ; Mon, 18 Feb 2019 21:00:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68191501 for ; Mon, 18 Feb 2019 21:00:35 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1550523618.674c26ca8fd885341bfa3eebf72fa2e6d710b247.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r2.ebuild net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild X-VCS-Directories: net-mail/qmail-autoresponder/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 674c26ca8fd885341bfa3eebf72fa2e6d710b247 X-VCS-Branch: master Date: Mon, 18 Feb 2019 21:00:35 +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: 9ec26d76-65ff-4998-9bb6-3574cdddca3a X-Archives-Hash: 3138deb178e16e18bb99773f740d1a49 commit: 674c26ca8fd885341bfa3eebf72fa2e6d710b247 Author: Brian Evans gentoo org> AuthorDate: Mon Feb 18 21:00:18 2019 +0000 Commit: Brian Evans gentoo org> CommitDate: Mon Feb 18 21:00:18 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=674c26ca net-mail/qmail-autoresponder: Revbump for EAPI and dependency change Non-maintainer commit Bug: https://bugs.gentoo.org/665998 Package-Manager: Portage-2.3.61, Repoman-2.3.12 Signed-off-by: Brian Evans gentoo.org> ...2.ebuild => qmail-autoresponder-0.97-r3.ebuild} | 23 +++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r2.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild similarity index 68% rename from net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r2.ebuild rename to net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild index 6950af0af69..d27b7bd9ce5 100644 --- a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r2.ebuild +++ b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="2" +EAPI=7 -inherit toolchain-funcs eutils multilib +inherit toolchain-funcs DESCRIPTION="Rate-limited autoresponder for qmail" HOMEPAGE="http://untroubled.org/qmail-autoresponder/" @@ -15,7 +15,7 @@ KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86" IUSE="mysql" DEPEND=">=dev-libs/bglibs-1.106 - mysql? ( virtual/mysql )" + mysql? ( dev-db/mysql-connector-c:0= )" RDEPEND=" ${DEPEND} virtual/qmail @@ -23,14 +23,15 @@ RDEPEND=" " src_prepare() { - use mysql || epatch "${FILESDIR}/${PN}-0.97-remove-mysql.h.diff" + use mysql || eapply "${FILESDIR}/${PN}-0.97-remove-mysql.h.diff" + default } src_configure() { - echo "/usr/include/bglibs" > conf-bgincs - echo "/usr/$(get_libdir)/bglibs" > conf-bglibs - echo "$(tc-getCC) ${CFLAGS}" > conf-cc - echo "$(tc-getCC) ${LDFLAGS}" > conf-ld + echo "/usr/include/bglibs" > conf-bgincs || die + echo "/usr/$(get_libdir)/bglibs" > conf-bglibs || die + echo "$(tc-getCC) ${CFLAGS}" > conf-cc || die + echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die } src_compile() { @@ -42,10 +43,10 @@ src_compile() { } src_install () { - dobin qmail-autoresponder || die + dobin qmail-autoresponder doman qmail-autoresponder.1 if use mysql; then - dobin qmail-autoresponder-mysql || die + dobin qmail-autoresponder-mysql dodoc schema.mysql fi