From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1021639-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 9813C138332
	for <garchives@archives.gentoo.org>; Tue,  1 May 2018 18:40:22 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id EE601E0A6F;
	Tue,  1 May 2018 18:40:21 +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-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id B472FE0A6F
	for <gentoo-commits@lists.gentoo.org>; Tue,  1 May 2018 18:40:21 +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 2A465335C90
	for <gentoo-commits@lists.gentoo.org>; Tue,  1 May 2018 18:40:20 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id B4C782A6
	for <gentoo-commits@lists.gentoo.org>; Tue,  1 May 2018 18:40:18 +0000 (UTC)
From: "Michał Górny" <mgorny@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, "Michał Górny" <mgorny@gentoo.org>
Message-ID: <1525199994.cea7e093da67264f0ea1a88cd61c56263450ba6d.mgorny@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/twisted/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/twisted/twisted-16.6.0-r3.ebuild dev-python/twisted/twisted-17.1.0-r2.ebuild dev-python/twisted/twisted-17.9.0.ebuild
X-VCS-Directories: dev-python/twisted/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: cea7e093da67264f0ea1a88cd61c56263450ba6d
X-VCS-Branch: master
Date: Tue,  1 May 2018 18:40:18 +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: 12ac3988-6d1a-4f52-bb9c-b8af18e08c30
X-Archives-Hash: a6f33a5af7d8b740b7c8bd1b26917a00

commit:     cea7e093da67264f0ea1a88cd61c56263450ba6d
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sun Apr 29 13:51:37 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May  1 18:39:54 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cea7e093

dev-python/twisted: use HTTPS

 dev-python/twisted/twisted-16.6.0-r3.ebuild | 6 +++---
 dev-python/twisted/twisted-17.1.0-r2.ebuild | 8 ++++----
 dev-python/twisted/twisted-17.9.0.ebuild    | 6 +++---
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/dev-python/twisted/twisted-16.6.0-r3.ebuild b/dev-python/twisted/twisted-16.6.0-r3.ebuild
index 069753121eb..d63d82996b2 100644
--- a/dev-python/twisted/twisted-16.6.0-r3.ebuild
+++ b/dev-python/twisted/twisted-16.6.0-r3.ebuild
@@ -12,8 +12,8 @@ TWISTED_P="${TWISTED_PN}-${PV}"
 TWISTED_RELEASE=$(get_version_component_range 1-2 "${PV}")
 
 DESCRIPTION="An asynchronous networking framework written in Python"
-HOMEPAGE="http://www.twistedmatrix.com/"
-SRC_URI="http://twistedmatrix.com/Releases/${TWISTED_PN}"
+HOMEPAGE="https://www.twistedmatrix.com/trac/"
+SRC_URI="https://twistedmatrix.com/Releases/${TWISTED_PN}"
 SRC_URI="${SRC_URI}/${TWISTED_RELEASE}/${TWISTED_P}.tar.bz2
 	https://dev.gentoo.org/~mgorny/dist/twisted-regen-cache.gz"
 
@@ -96,7 +96,7 @@ python_prepare_all() {
 python_compile() {
 	if ! python_is_python3; then
 		# Needed to make the sendmsg extension work
-		# (see http://twistedmatrix.com/trac/ticket/5701 )
+		# (see https://twistedmatrix.com/trac/ticket/5701 )
 		local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
 		local -x CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
 	fi

diff --git a/dev-python/twisted/twisted-17.1.0-r2.ebuild b/dev-python/twisted/twisted-17.1.0-r2.ebuild
index 13b750e8a74..a3283137b4c 100644
--- a/dev-python/twisted/twisted-17.1.0-r2.ebuild
+++ b/dev-python/twisted/twisted-17.1.0-r2.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
@@ -12,8 +12,8 @@ TWISTED_P="${TWISTED_PN}-${PV}"
 TWISTED_RELEASE=$(get_version_component_range 1-2 "${PV}")
 
 DESCRIPTION="An asynchronous networking framework written in Python"
-HOMEPAGE="http://www.twistedmatrix.com/"
-SRC_URI="http://twistedmatrix.com/Releases/${TWISTED_PN}"
+HOMEPAGE="https://www.twistedmatrix.com/trac/"
+SRC_URI="https://twistedmatrix.com/Releases/${TWISTED_PN}"
 SRC_URI="${SRC_URI}/${TWISTED_RELEASE}/${TWISTED_P}.tar.bz2
 	https://dev.gentoo.org/~mgorny/dist/twisted-regen-cache.gz"
 
@@ -97,7 +97,7 @@ python_prepare_all() {
 python_compile() {
 	if ! python_is_python3; then
 		# Needed to make the sendmsg extension work
-		# (see http://twistedmatrix.com/trac/ticket/5701 )
+		# (see https://twistedmatrix.com/trac/ticket/5701 )
 		local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
 		local -x CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
 	fi

diff --git a/dev-python/twisted/twisted-17.9.0.ebuild b/dev-python/twisted/twisted-17.9.0.ebuild
index d6a8eadca42..04ba3d76736 100644
--- a/dev-python/twisted/twisted-17.9.0.ebuild
+++ b/dev-python/twisted/twisted-17.9.0.ebuild
@@ -12,8 +12,8 @@ TWISTED_P="${TWISTED_PN}-${PV}"
 TWISTED_RELEASE=$(get_version_component_range 1-2 "${PV}")
 
 DESCRIPTION="An asynchronous networking framework written in Python"
-HOMEPAGE="http://www.twistedmatrix.com/"
-SRC_URI="http://twistedmatrix.com/Releases/${TWISTED_PN}"
+HOMEPAGE="https://www.twistedmatrix.com/trac/"
+SRC_URI="https://twistedmatrix.com/Releases/${TWISTED_PN}"
 SRC_URI="${SRC_URI}/${TWISTED_RELEASE}/${TWISTED_P}.tar.bz2
 	https://dev.gentoo.org/~mgorny/dist/twisted-regen-cache.gz"
 
@@ -103,7 +103,7 @@ python_prepare_all() {
 python_compile() {
 	if ! python_is_python3; then
 		# Needed to make the sendmsg extension work
-		# (see http://twistedmatrix.com/trac/ticket/5701 )
+		# (see https://twistedmatrix.com/trac/ticket/5701 )
 		local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
 		local -x CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
 	fi