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 572CC1396D1 for ; Thu, 31 Aug 2017 13:21:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3471BE0C7A; Thu, 31 Aug 2017 13:21:24 +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 0B37BE0C7A for ; Thu, 31 Aug 2017 13:21:24 +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 EE85034105A for ; Thu, 31 Aug 2017 13:21:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CC8A890E for ; Thu, 31 Aug 2017 13:21:21 +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: <1504185602.0d52b37c6e3be7179b2260d12727de038c3a372d.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/opus-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/opus-tools/opus-tools-0.1.10.ebuild X-VCS-Directories: media-sound/opus-tools/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 0d52b37c6e3be7179b2260d12727de038c3a372d X-VCS-Branch: master Date: Thu, 31 Aug 2017 13:21: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: 52e9d520-7bec-410c-a4f1-bd3bd45616cb X-Archives-Hash: 92ea9201c1c5a0b001808a08af3388f8 commit: 0d52b37c6e3be7179b2260d12727de038c3a372d Author: Tim Harder gentoo org> AuthorDate: Thu Aug 31 13:20:02 2017 +0000 Commit: Tim Harder gentoo org> CommitDate: Thu Aug 31 13:20:02 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d52b37c media-sound/opus-tools: use https for HOMEPAGE, SRC_URI, and git repo media-sound/opus-tools/opus-tools-0.1.10.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/media-sound/opus-tools/opus-tools-0.1.10.ebuild b/media-sound/opus-tools/opus-tools-0.1.10.ebuild index aaca61a106f..652f98ca969 100644 --- a/media-sound/opus-tools/opus-tools-0.1.10.ebuild +++ b/media-sound/opus-tools/opus-tools-0.1.10.ebuild @@ -5,15 +5,15 @@ EAPI=6 inherit autotools DESCRIPTION="Royalty-free, highly versatile audio codec" -HOMEPAGE="http://opus-codec.org/" +HOMEPAGE="https://opus-codec.org/" if [[ ${PV} == *9999 ]] ; then - inherit git-2 - EGIT_REPO_URI="git://git.opus-codec.org/${PN}.git" + inherit git-r3 + EGIT_REPO_URI="https://git.xiph.org/opus-tools.git" elif [[ ${PV%_p*} != ${PV} ]] ; then # Gentoo snapshot SRC_URI="https://dev.gentoo.org/~lu_zero/${PN}/${P}.tar.xz" else # Official release - SRC_URI="http://downloads.xiph.org/releases/opus/${P}.tar.gz" + SRC_URI="https://downloads.xiph.org/releases/opus/${P}.tar.gz" fi LICENSE="BSD-2"