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 CD83A139696 for ; Thu, 16 Feb 2017 23:45:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EDD6221C08F; Thu, 16 Feb 2017 23:45: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 B933721C08E for ; Thu, 16 Feb 2017 23:45:04 +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 AA713340C97 for ; Thu, 16 Feb 2017 23:45:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74D674A5C for ; Thu, 16 Feb 2017 23:45:02 +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: <1487288689.9f0cd16cde9c14a818362307bcb6fcced4528a15.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/pixz/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/pixz/pixz-1.0.6.ebuild app-arch/pixz/pixz-9999.ebuild X-VCS-Directories: app-arch/pixz/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 9f0cd16cde9c14a818362307bcb6fcced4528a15 X-VCS-Branch: master Date: Thu, 16 Feb 2017 23:45:02 +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: 206e1044-633b-4769-b75a-3301205505fe X-Archives-Hash: fc4d70596ba7b71051a565bef5edc278 commit: 9f0cd16cde9c14a818362307bcb6fcced4528a15 Author: Mike Frysinger gentoo org> AuthorDate: Thu Feb 16 23:16:06 2017 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu Feb 16 23:44:49 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f0cd16c app-arch/pixz: clean up style a bit Make the ebuild look more like other ebuilds by moving the KEYWORDS/SRC_URI settings up to the top. app-arch/pixz/pixz-1.0.6.ebuild | 23 +++++++++++------------ app-arch/pixz/pixz-9999.ebuild | 23 +++++++++++------------ 2 files changed, 22 insertions(+), 24 deletions(-) diff --git a/app-arch/pixz/pixz-1.0.6.ebuild b/app-arch/pixz/pixz-1.0.6.ebuild index fe9d1a813c..edba404e0d 100644 --- a/app-arch/pixz/pixz-1.0.6.ebuild +++ b/app-arch/pixz/pixz-1.0.6.ebuild @@ -1,13 +1,21 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Id$ -EAPI=6 +EAPI="6" inherit flag-o-matic +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/vasi/${PN}.git" + inherit git-r3 autotools +else + SRC_URI="https://github.com/vasi/pixz/releases/download/v${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~x86" +fi + DESCRIPTION="Parallel Indexed XZ compressor" HOMEPAGE="https://github.com/vasi/pixz" + LICENSE="BSD-2" SLOT="0" IUSE="static" @@ -19,15 +27,6 @@ DEPEND="${RDEPEND} static? ( ${LIB_DEPEND} )" [[ ${PV} == "9999" ]] && DEPEND+=" app-text/asciidoc" -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://github.com/vasi/${PN}.git" - inherit git-r3 autotools - KEYWORDS="" -else - SRC_URI="https://github.com/vasi/pixz/releases/download/v${PV}/${P}.tar.xz" - KEYWORDS="~amd64 ~arm ~x86" -fi - src_prepare() { default [[ ${PV} == "9999" ]] && eautoreconf diff --git a/app-arch/pixz/pixz-9999.ebuild b/app-arch/pixz/pixz-9999.ebuild index fe9d1a813c..edba404e0d 100644 --- a/app-arch/pixz/pixz-9999.ebuild +++ b/app-arch/pixz/pixz-9999.ebuild @@ -1,13 +1,21 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Id$ -EAPI=6 +EAPI="6" inherit flag-o-matic +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/vasi/${PN}.git" + inherit git-r3 autotools +else + SRC_URI="https://github.com/vasi/pixz/releases/download/v${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~x86" +fi + DESCRIPTION="Parallel Indexed XZ compressor" HOMEPAGE="https://github.com/vasi/pixz" + LICENSE="BSD-2" SLOT="0" IUSE="static" @@ -19,15 +27,6 @@ DEPEND="${RDEPEND} static? ( ${LIB_DEPEND} )" [[ ${PV} == "9999" ]] && DEPEND+=" app-text/asciidoc" -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://github.com/vasi/${PN}.git" - inherit git-r3 autotools - KEYWORDS="" -else - SRC_URI="https://github.com/vasi/pixz/releases/download/v${PV}/${P}.tar.xz" - KEYWORDS="~amd64 ~arm ~x86" -fi - src_prepare() { default [[ ${PV} == "9999" ]] && eautoreconf