Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 22 Jun 2018 13:20:47
Message-Id: 1529673637.b2786a9854a7a3cbffced9a4683d31fa730bf3a4.whissi@gentoo
1 commit: b2786a9854a7a3cbffced9a4683d31fa730bf3a4
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Jun 10 09:10:49 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 22 13:20:37 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2786a98
7
8 eclass/mysql-v2: use HTTPs, fix HOMEPAGE Link
9
10 Closes: https://github.com/gentoo/gentoo/pull/8778
11
12 eclass/mysql-v2.eclass | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/eclass/mysql-v2.eclass b/eclass/mysql-v2.eclass
16 index 766d5641014..a0305989c78 100644
17 --- a/eclass/mysql-v2.eclass
18 +++ b/eclass/mysql-v2.eclass
19 @@ -189,17 +189,17 @@ if [[ ${MY_EXTRAS_VER} != "live" && ${MY_EXTRAS_VER} != "none" ]]; then
20 fi
21
22 DESCRIPTION="A fast, multi-threaded, multi-user SQL database server"
23 -HOMEPAGE="http://www.mysql.com/"
24 +HOMEPAGE="https://www.mysql.com/"
25 if [[ ${PN} == "mariadb" ]]; then
26 - HOMEPAGE="http://mariadb.org/"
27 + HOMEPAGE="https://mariadb.org/"
28 DESCRIPTION="An enhanced, drop-in replacement for MySQL"
29 fi
30 if [[ ${PN} == "mariadb-galera" ]]; then
31 - HOMEPAGE="http://mariadb.org/"
32 + HOMEPAGE="https://mariadb.org/"
33 DESCRIPTION="An enhanced, drop-in replacement for MySQL with Galera Replication"
34 fi
35 if [[ ${PN} == "percona-server" ]]; then
36 - HOMEPAGE="http://www.percona.com/software/percona-server"
37 + HOMEPAGE="https://www.percona.com/software/mysql-database/percona-server"
38 DESCRIPTION="An enhanced, drop-in replacement for MySQL from the Percona team"
39 fi
40 LICENSE="GPL-2"