From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1024960-garchives=archives.gentoo.org@lists.gentoo.org> 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 C6127138331 for <garchives@archives.gentoo.org>; Sun, 20 May 2018 00:16:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB291E0935; Sun, 20 May 2018 00:16:52 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 83474E092E for <gentoo-commits@lists.gentoo.org>; Sun, 20 May 2018 00:16:52 +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 22E98335CA6 for <gentoo-commits@lists.gentoo.org>; Sun, 20 May 2018 00:16:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12F8C2BF for <gentoo-commits@lists.gentoo.org>; Sun, 20 May 2018 00:16:48 +0000 (UTC) From: "Aaron Bauman" <bman@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" <bman@gentoo.org> Message-ID: <1526775276.ce9aedb01cca00067e6170905865226d59eb10d6.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/vpnc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/vpnc/vpnc-0.5.3_p550.ebuild X-VCS-Directories: net-vpn/vpnc/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: ce9aedb01cca00067e6170905865226d59eb10d6 X-VCS-Branch: master Date: Sun, 20 May 2018 00:16:48 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d0baf868-b040-429d-bbb1-34f4f9d2d89a X-Archives-Hash: c2dc2e5e0b787cf6bba060ba44c9d30f commit: ce9aedb01cca00067e6170905865226d59eb10d6 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com> AuthorDate: Sat May 19 07:51:07 2018 +0000 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org> CommitDate: Sun May 20 00:14:36 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce9aedb0 net-vpn/vpnc: use HTTPS Closes: https://github.com/gentoo/gentoo/pull/8477 net-vpn/vpnc/vpnc-0.5.3_p550.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/net-vpn/vpnc/vpnc-0.5.3_p550.ebuild b/net-vpn/vpnc/vpnc-0.5.3_p550.ebuild index 3962719c290..b3b6de8c287 100644 --- a/net-vpn/vpnc/vpnc-0.5.3_p550.ebuild +++ b/net-vpn/vpnc/vpnc-0.5.3_p550.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -6,7 +6,7 @@ EAPI=5 inherit eutils linux-info systemd toolchain-funcs DESCRIPTION="Free client for Cisco VPN routing software" -HOMEPAGE="http://www.unix-ag.uni-kl.de/~massar/vpnc/" +HOMEPAGE="https://www.unix-ag.uni-kl.de/~massar/vpnc/" SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz" LICENSE="GPL-2 BSD" @@ -32,12 +32,12 @@ CONFIG_CHECK="~TUN" src_prepare() { if use gnutls; then elog "Will build with GnuTLS (default) instead of OpenSSL so you may even redistribute binaries." - elog "See the Makefile itself and http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=440318" + elog "See the Makefile itself and https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=440318" else sed -i -e '/^#OPENSSL_GPL_VIOLATION/s:#::g' "${S}"/Makefile || die ewarn "Building SSL support with OpenSSL instead of GnuTLS. This means that" ewarn "you are not allowed to re-distibute the binaries due to conflicts between BSD license and GPL," - ewarn "see the vpnc Makefile and http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=440318" + ewarn "see the vpnc Makefile and https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=440318" fi sed -e 's:test/cert0.pem::g' -i Makefile || die