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 2CDB013832E for ; Wed, 10 Aug 2016 06:35:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59976E0B22; Wed, 10 Aug 2016 06:35:37 +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 08466E0B22 for ; Wed, 10 Aug 2016 06:35:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 01CD434087F for ; Wed, 10 Aug 2016 06:35:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49DCB7DD for ; Wed, 10 Aug 2016 06:35:34 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1470810765.2cba5f5bba2b116c6f7ee7a00d1dc1fa29651a30.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/lzop/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/lzop/lzop-1.03.ebuild X-VCS-Directories: app-arch/lzop/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 2cba5f5bba2b116c6f7ee7a00d1dc1fa29651a30 X-VCS-Branch: master Date: Wed, 10 Aug 2016 06:35:34 +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: 77d3f181-5786-4dbb-8cdc-6dac4dc5db99 X-Archives-Hash: d39a15e296e4167bf14cc222da8d46cd commit: 2cba5f5bba2b116c6f7ee7a00d1dc1fa29651a30 Author: Mike Frysinger gentoo org> AuthorDate: Wed Aug 10 06:31:55 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Aug 10 06:32:45 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cba5f5b app-arch/lzop: upgrade to EAPI=6 app-arch/lzop/lzop-1.03.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/app-arch/lzop/lzop-1.03.ebuild b/app-arch/lzop/lzop-1.03.ebuild index 20f76fe..cec129d 100644 --- a/app-arch/lzop/lzop-1.03.ebuild +++ b/app-arch/lzop/lzop-1.03.ebuild @@ -1,8 +1,7 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Id$ -EAPI=2 +EAPI="6" DESCRIPTION="Utility for fast (even real-time) compression/decompression" HOMEPAGE="http://www.lzop.org/" @@ -25,8 +24,7 @@ src_test() { } src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README THANKS + default dodoc doc/lzop.{txt,ps} dohtml doc/*.html }