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 D043E1396D1 for ; Wed, 23 Aug 2017 14:46:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D381E0CCD; Wed, 23 Aug 2017 14:46:29 +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 E4F1BE0CCD for ; Wed, 23 Aug 2017 14:46:28 +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 C63D5341CC2 for ; Wed, 23 Aug 2017 14:46:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 126F37FDB for ; Wed, 23 Aug 2017 14:46:26 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1503499538.c946018d82fefa18b7b453e376c53d4387d7742e.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mkvtoolnix/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/mkvtoolnix/mkvtoolnix-15.0.0-r1.ebuild media-video/mkvtoolnix/mkvtoolnix-9999.ebuild X-VCS-Directories: media-video/mkvtoolnix/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: c946018d82fefa18b7b453e376c53d4387d7742e X-VCS-Branch: master Date: Wed, 23 Aug 2017 14:46:26 +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: ddf5433f-f90c-48ad-97df-1f55ed6dc2db X-Archives-Hash: 5b3cd5610380cb11225cbb7bd22f9fce commit: c946018d82fefa18b7b453e376c53d4387d7742e Author: Tim Harder gentoo org> AuthorDate: Wed Aug 23 13:26:45 2017 +0000 Commit: Tim Harder gentoo org> CommitDate: Wed Aug 23 14:45:38 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c946018d media-video/mkvtoolnix: add live ebuild media-video/mkvtoolnix/mkvtoolnix-15.0.0-r1.ebuild | 14 ++++++++++---- ...{mkvtoolnix-15.0.0-r1.ebuild => mkvtoolnix-9999.ebuild} | 14 ++++++++++---- 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/media-video/mkvtoolnix/mkvtoolnix-15.0.0-r1.ebuild b/media-video/mkvtoolnix/mkvtoolnix-15.0.0-r1.ebuild index cecc4e7454d..6afdf102386 100644 --- a/media-video/mkvtoolnix/mkvtoolnix-15.0.0-r1.ebuild +++ b/media-video/mkvtoolnix/mkvtoolnix-15.0.0-r1.ebuild @@ -2,15 +2,21 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit toolchain-funcs versionator multiprocessing autotools +inherit toolchain-funcs versionator multiprocessing + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/mbunkus/mkvtoolnix.git" + inherit git-r3 +else + SRC_URI="https://mkvtoolnix.download/sources/${P}.tar.xz" + KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +fi DESCRIPTION="Tools to create, alter, and inspect Matroska files" HOMEPAGE="https://mkvtoolnix.download/ https://github.com/mbunkus/mkvtoolnix" -SRC_URI="https://mkvtoolnix.download/sources/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="debug pch test qt5" # check NEWS.md for build system changes entries for boost/libebml/libmatroska @@ -59,7 +65,7 @@ pkg_pretend() { src_prepare() { default - eautoreconf + [[ ${PV} == "9999" ]] && { ./autogen.sh || die; } } src_configure() { diff --git a/media-video/mkvtoolnix/mkvtoolnix-15.0.0-r1.ebuild b/media-video/mkvtoolnix/mkvtoolnix-9999.ebuild similarity index 86% copy from media-video/mkvtoolnix/mkvtoolnix-15.0.0-r1.ebuild copy to media-video/mkvtoolnix/mkvtoolnix-9999.ebuild index cecc4e7454d..6afdf102386 100644 --- a/media-video/mkvtoolnix/mkvtoolnix-15.0.0-r1.ebuild +++ b/media-video/mkvtoolnix/mkvtoolnix-9999.ebuild @@ -2,15 +2,21 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit toolchain-funcs versionator multiprocessing autotools +inherit toolchain-funcs versionator multiprocessing + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/mbunkus/mkvtoolnix.git" + inherit git-r3 +else + SRC_URI="https://mkvtoolnix.download/sources/${P}.tar.xz" + KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +fi DESCRIPTION="Tools to create, alter, and inspect Matroska files" HOMEPAGE="https://mkvtoolnix.download/ https://github.com/mbunkus/mkvtoolnix" -SRC_URI="https://mkvtoolnix.download/sources/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="debug pch test qt5" # check NEWS.md for build system changes entries for boost/libebml/libmatroska @@ -59,7 +65,7 @@ pkg_pretend() { src_prepare() { default - eautoreconf + [[ ${PV} == "9999" ]] && { ./autogen.sh || die; } } src_configure() {