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 518D7138330 for ; Wed, 24 Aug 2016 14:44:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30E65E08F8; Wed, 24 Aug 2016 14:44:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C6873E08F8 for ; Wed, 24 Aug 2016 14:44:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7FF98340917 for ; Wed, 24 Aug 2016 14:44:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 27A792453 for ; Wed, 24 Aug 2016 14:43:58 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1472049771.8ece1ec40436bc9267699613e0d6585ebf6f6ebc.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/dial/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dialup/dial/dial-1.2-r2.ebuild X-VCS-Directories: net-dialup/dial/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 8ece1ec40436bc9267699613e0d6585ebf6f6ebc X-VCS-Branch: master Date: Wed, 24 Aug 2016 14:43:58 +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: a746eaab-bf56-4997-8a47-c76f362274e4 X-Archives-Hash: 2583434124a639a3c38a11fe5ca01867 commit: 8ece1ec40436bc9267699613e0d6585ebf6f6ebc Author: Michael Orlitzky gentoo org> AuthorDate: Wed Aug 24 14:42:27 2016 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Wed Aug 24 14:42:51 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ece1ec4 net-dialup/dial: new revision with EAPI=6. By moving to EAPI=6, this new revision (-r2) allows us to drop the eutils eclass, and the src_prepare/src_install phases. As a byproduct, einstall is no longer used. Gentoo-Bug: 521578 Package-Manager: portage-2.2.28 net-dialup/dial/dial-1.2-r2.ebuild | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/net-dialup/dial/dial-1.2-r2.ebuild b/net-dialup/dial/dial-1.2-r2.ebuild new file mode 100644 index 00000000..e20bae9 --- /dev/null +++ b/net-dialup/dial/dial-1.2-r2.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="A simple client for DWUN" +HOMEPAGE="http://dwun.sourceforge.net/" +SRC_URI="mirror://sourceforge/dwun/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="net-dialup/dwun" + +PATCHES=( "${FILESDIR}/${P}-gcc3.3.patch" )