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 E3867138335 for ; Wed, 20 Mar 2019 20:33:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4BEEE089A; Wed, 20 Mar 2019 20:33:06 +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 BEB30E089A for ; Wed, 20 Mar 2019 20:33:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 78D6D335D1A for ; Wed, 20 Mar 2019 20:33:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E583A571 for ; Wed, 20 Mar 2019 20:33:03 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1553113977.dac9c7f9221dda759667f0e8de3793b2e3e10404.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/murmur/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/murmur/murmur-9999.ebuild X-VCS-Directories: media-sound/murmur/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: dac9c7f9221dda759667f0e8de3793b2e3e10404 X-VCS-Branch: master Date: Wed, 20 Mar 2019 20:33:03 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 539feb1a-dd3c-4dee-9b57-4137362186b3 X-Archives-Hash: 00460296df0292df48eaea9c4d1520b6 commit: dac9c7f9221dda759667f0e8de3793b2e3e10404 Author: Lars Wendler gentoo org> AuthorDate: Wed Mar 20 20:26:08 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Mar 20 20:32:57 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dac9c7f9 media-sound/murmur: Prepare live ebuild for 1.3.0_rc* releases. Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler gentoo.org> media-sound/murmur/murmur-9999.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/media-sound/murmur/murmur-9999.ebuild b/media-sound/murmur/murmur-9999.ebuild index 9795d40d383..4ee163ac142 100644 --- a/media-sound/murmur/murmur-9999.ebuild +++ b/media-sound/murmur/murmur-9999.ebuild @@ -16,12 +16,14 @@ else if [[ "${PV}" == *_pre* ]] ; then MY_P="${MY_PN}-${PV}" SRC_URI="https://dev.gentoo.org/~polynomial-c/dist/${MY_P}.tar.xz" + S="${WORKDIR}/${MY_P}" else - MY_P="${MY_PN}-${PV/_/~}" - SRC_URI="https://mumble.info/snapshot/${MY_P}.tar.gz" + MY_PV="${PV/_/-}" + MY_P="${MY_PN}-${MY_PV}" + SRC_URI="https://github.com/mumble-voip/mumble/releases/download/${MY_PV}/${MY_P}.tar.gz" + S="${WORKDIR}/${MY_PN}-${PV/_*}" fi KEYWORDS="~amd64 ~arm ~x86" - S="${WORKDIR}/${MY_P}" fi LICENSE="BSD"