From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1596613888F for ; Fri, 23 Oct 2015 20:34:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCFF3E07F0; Fri, 23 Oct 2015 20:34:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76862E07F0 for ; Fri, 23 Oct 2015 20:34:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3FC40340AC8 for ; Fri, 23 Oct 2015 20:34:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3CF3F16BB for ; Fri, 23 Oct 2015 20:34:32 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1445632013.d0753f81463ceb3e99bd6baf12eb2f3c6399a5b9.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/spl/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-kernel/spl/spl-9999.ebuild X-VCS-Directories: sys-kernel/spl/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: d0753f81463ceb3e99bd6baf12eb2f3c6399a5b9 X-VCS-Branch: master Date: Fri, 23 Oct 2015 20:34:32 +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: f24ab8f8-cb4b-45ce-9668-7ec2788f3eeb X-Archives-Hash: 703102758a2768f40a89d6d5926f3262 commit: d0753f81463ceb3e99bd6baf12eb2f3c6399a5b9 Author: Jason Zaman gentoo org> AuthorDate: Fri Oct 23 20:20:31 2015 +0000 Commit: Jason Zaman gentoo org> CommitDate: Fri Oct 23 20:26:53 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0753f81 sys-kernel/spl: update live ebuild - update to EAPI 5 - update to git-r3 eclass - change src_uri to release tarballs sys-kernel/spl/spl-9999.ebuild | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/sys-kernel/spl/spl-9999.ebuild b/sys-kernel/spl/spl-9999.ebuild index 43c6711..02bef88 100644 --- a/sys-kernel/spl/spl-9999.ebuild +++ b/sys-kernel/spl/spl-9999.ebuild @@ -2,21 +2,19 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="4" -AUTOTOOLS_AUTORECONF="1" - -inherit flag-o-matic linux-info linux-mod autotools-utils +EAPI="5" if [[ ${PV} == "9999" ]] ; then - inherit git-2 + AUTOTOOLS_AUTORECONF="1" EGIT_REPO_URI="https://github.com/zfsonlinux/${PN}.git" + inherit git-r3 else - inherit eutils versionator - SRC_URI="https://github.com/zfsonlinux/${PN}/archive/${P}.tar.gz" - S="${WORKDIR}/${PN}-${P}" + SRC_URI="https://github.com/zfsonlinux/zfs/releases/download/zfs-${PV}/${P}.tar.gz" KEYWORDS="~amd64 ~arm ~ppc ~ppc64" fi +inherit flag-o-matic linux-info linux-mod autotools-utils + DESCRIPTION="The Solaris Porting Layer is a Linux kernel module which provides many of the Solaris kernel APIs" HOMEPAGE="http://zfsonlinux.org/" @@ -35,6 +33,7 @@ RDEPEND="${COMMON_DEPEND} AT_M4DIR="config" AUTOTOOLS_IN_SOURCE_BUILD="1" +DOCS=( AUTHORS DISCLAIMER README.markdown ) pkg_setup() { linux-info_pkg_setup @@ -96,7 +95,6 @@ src_configure() { src_install() { autotools-utils_src_install INSTALL_MOD_PATH="${INSTALL_MOD_PATH:-$EROOT}" - dodoc AUTHORS DISCLAIMER README.markdown } pkg_postinst() {