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 41FEC138334 for ; Fri, 22 Jun 2018 13:22:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CA8FE0835; Fri, 22 Jun 2018 13:22:45 +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 45E57E0835 for ; Fri, 22 Jun 2018 13:22:45 +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 EDA17335C81 for ; Fri, 22 Jun 2018 13:22:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1CA4D2D6 for ; Fri, 22 Jun 2018 13:22:42 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1529673724.9133c827163ccb5ca724df2ca77d85a626daa88e.whissi@gentoo> Subject: [gentoo-commits] proj/mysql:master commit in: eclass/ X-VCS-Repository: proj/mysql X-VCS-Files: eclass/mysql-v2.eclass X-VCS-Directories: eclass/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 9133c827163ccb5ca724df2ca77d85a626daa88e X-VCS-Branch: master Date: Fri, 22 Jun 2018 13:22:42 +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: 6d819fcc-dfdc-42a2-a055-fe66cfb7cbf9 X-Archives-Hash: 9812fbf7582b7a09df9babcc5440ffa5 commit: 9133c827163ccb5ca724df2ca77d85a626daa88e Author: Michael Mair-Keimberger gmail com> AuthorDate: Sun Jun 10 09:10:49 2018 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Fri Jun 22 13:22:04 2018 +0000 URL: https://gitweb.gentoo.org/proj/mysql.git/commit/?id=9133c827 eclass/mysql-v2: use HTTPs, fix HOMEPAGE Link eclass/mysql-v2.eclass | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eclass/mysql-v2.eclass b/eclass/mysql-v2.eclass index 3734e19..9c61dae 100644 --- a/eclass/mysql-v2.eclass +++ b/eclass/mysql-v2.eclass @@ -188,17 +188,17 @@ if [[ ${MY_EXTRAS_VER} != "live" && ${MY_EXTRAS_VER} != "none" ]]; then fi DESCRIPTION="A fast, multi-threaded, multi-user SQL database server" -HOMEPAGE="http://www.mysql.com/" +HOMEPAGE="https://www.mysql.com/" if [[ ${PN} == "mariadb" ]]; then - HOMEPAGE="http://mariadb.org/" + HOMEPAGE="https://mariadb.org/" DESCRIPTION="An enhanced, drop-in replacement for MySQL" fi if [[ ${PN} == "mariadb-galera" ]]; then - HOMEPAGE="http://mariadb.org/" + HOMEPAGE="https://mariadb.org/" DESCRIPTION="An enhanced, drop-in replacement for MySQL with Galera Replication" fi if [[ ${PN} == "percona-server" ]]; then - HOMEPAGE="http://www.percona.com/software/percona-server" + HOMEPAGE="https://www.percona.com/software/mysql-database/percona-server" DESCRIPTION="An enhanced, drop-in replacement for MySQL from the Percona team" fi LICENSE="GPL-2"