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 63A18139085 for ; Wed, 1 Feb 2017 11:42:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9AEADE0DAC; Wed, 1 Feb 2017 11:42:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 78F2CE0DA9 for ; Wed, 1 Feb 2017 11:42:24 +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 4E6D734112A for ; Wed, 1 Feb 2017 11:42:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D2C43D2B for ; Wed, 1 Feb 2017 11:42:21 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1485948897.a872f045bbd68349c22ae7591620aa14504eadd8.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libva/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/libva/libva-9999.ebuild X-VCS-Directories: x11-libs/libva/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: a872f045bbd68349c22ae7591620aa14504eadd8 X-VCS-Branch: master Date: Wed, 1 Feb 2017 11:42:21 +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: 66f0a8b9-b331-459a-b3e1-7e92db0b0ad1 X-Archives-Hash: 4493e2c53724cc2c8cd81b2f0afc4134 commit: a872f045bbd68349c22ae7591620aa14504eadd8 Author: Alexis Ballier gentoo org> AuthorDate: Wed Feb 1 11:34:57 2017 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Wed Feb 1 11:34:57 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a872f045 x11-libs/libva: Update git source, use git-r3.eclass, switch to github for releases, bug #607758 Package-Manager: Portage-2.3.3, Repoman-2.3.1 x11-libs/libva/libva-9999.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/x11-libs/libva/libva-9999.ebuild b/x11-libs/libva/libva-9999.ebuild index 2d53da1..e906139 100644 --- a/x11-libs/libva/libva-9999.ebuild +++ b/x11-libs/libva/libva-9999.ebuild @@ -6,9 +6,9 @@ EAPI=5 SCM="" if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild - SCM=git-2 + SCM=git-r3 EGIT_BRANCH=master - EGIT_REPO_URI="git://anongit.freedesktop.org/vaapi/libva" + EGIT_REPO_URI="https://github.com/01org/libva" fi AUTOTOOLS_AUTORECONF="yes" @@ -18,9 +18,9 @@ DESCRIPTION="Video Acceleration (VA) API for Linux" HOMEPAGE="https://01.org/linuxmedia/vaapi" if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild SRC_URI="" - S="${WORKDIR}/${PN}" else - SRC_URI="https://www.freedesktop.org/software/vaapi/releases/libva/${P}.tar.bz2" + SRC_URI="https://github.com/01org/libva/archive/${P}.tar.gz" + S="${WORKDIR}/${PN}-${P}" fi LICENSE="MIT"