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 95600138335 for ; Thu, 7 Jun 2018 19:22:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D22FFE0B65; Thu, 7 Jun 2018 19:22:50 +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 85364E0B5D for ; Thu, 7 Jun 2018 19:22:50 +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 27E76335CD1 for ; Thu, 7 Jun 2018 19:22:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA69B2CD for ; Thu, 7 Jun 2018 19:22:45 +0000 (UTC) From: "Aaron Bauman" 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" Message-ID: <1528399225.0f7064b41afe9d217c58b2a257ebf7fa4b6ee5ef.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/postgresql/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/postgresql/postgresql-10.3.ebuild dev-db/postgresql/postgresql-10.4.ebuild dev-db/postgresql/postgresql-9.3.22.ebuild dev-db/postgresql/postgresql-9.3.23.ebuild dev-db/postgresql/postgresql-9.4.17.ebuild dev-db/postgresql/postgresql-9.4.18.ebuild dev-db/postgresql/postgresql-9.5.12.ebuild dev-db/postgresql/postgresql-9.5.13.ebuild dev-db/postgresql/postgresql-9.6.8.ebuild dev-db/postgresql/postgresql-9.6.9.ebuild dev-db/postgresql/postgresql-9999.ebuild X-VCS-Directories: dev-db/postgresql/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 0f7064b41afe9d217c58b2a257ebf7fa4b6ee5ef X-VCS-Branch: master Date: Thu, 7 Jun 2018 19:22:45 +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: cc9a8593-5578-4993-a79b-10b067444f81 X-Archives-Hash: 071c803f3db00c2f593b33725c9a101f commit: 0f7064b41afe9d217c58b2a257ebf7fa4b6ee5ef Author: Michael Mair-Keimberger gmail com> AuthorDate: Mon Jun 4 20:04:39 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Thu Jun 7 19:20:25 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f7064b4 dev-db/postgresql: use HTTPs dev-db/postgresql/postgresql-10.3.ebuild | 8 ++++---- dev-db/postgresql/postgresql-10.4.ebuild | 8 ++++---- dev-db/postgresql/postgresql-9.3.22.ebuild | 8 ++++---- dev-db/postgresql/postgresql-9.3.23.ebuild | 8 ++++---- dev-db/postgresql/postgresql-9.4.17.ebuild | 8 ++++---- dev-db/postgresql/postgresql-9.4.18.ebuild | 8 ++++---- dev-db/postgresql/postgresql-9.5.12.ebuild | 8 ++++---- dev-db/postgresql/postgresql-9.5.13.ebuild | 8 ++++---- dev-db/postgresql/postgresql-9.6.8.ebuild | 8 ++++---- dev-db/postgresql/postgresql-9.6.9.ebuild | 8 ++++---- dev-db/postgresql/postgresql-9999.ebuild | 6 +++--- 11 files changed, 43 insertions(+), 43 deletions(-) diff --git a/dev-db/postgresql/postgresql-10.3.ebuild b/dev-db/postgresql/postgresql-10.3.ebuild index 73c9fb3fe9a..7170883aee5 100644 --- a/dev-db/postgresql/postgresql-10.3.ebuild +++ b/dev-db/postgresql/postgresql-10.3.ebuild @@ -19,7 +19,7 @@ SRC_URI="mirror://postgresql/source/v${MY_PV}/postgresql-${MY_PV}.tar.bz2" LICENSE="POSTGRESQL GPL-2" DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" +HOMEPAGE="https://www.postgresql.org/" IUSE="doc kerberos kernel_linux ldap libressl nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib" @@ -291,7 +291,7 @@ pkg_postinst() { elog "https://wiki.gentoo.org/wiki/PostgreSQL" elog elog "Official documentation:" - elog "http://www.postgresql.org/docs/${SLOT}/static/index.html" + elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" elog elog "The default location of the Unix-domain socket is:" elog " ${EROOT%/}/run/postgresql/" @@ -356,8 +356,8 @@ pkg_config() { einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" einfo einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" einfo einfo "PG_INITDB_OPTS is currently set to:" if [[ -z "${PG_INITDB_OPTS}" ]] ; then diff --git a/dev-db/postgresql/postgresql-10.4.ebuild b/dev-db/postgresql/postgresql-10.4.ebuild index aeb8a7a0850..50f0472a566 100644 --- a/dev-db/postgresql/postgresql-10.4.ebuild +++ b/dev-db/postgresql/postgresql-10.4.ebuild @@ -19,7 +19,7 @@ SRC_URI="mirror://postgresql/source/v${MY_PV}/postgresql-${MY_PV}.tar.bz2" LICENSE="POSTGRESQL GPL-2" DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" +HOMEPAGE="https://www.postgresql.org/" IUSE="doc kerberos kernel_linux ldap libressl nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib" @@ -291,7 +291,7 @@ pkg_postinst() { elog "https://wiki.gentoo.org/wiki/PostgreSQL" elog elog "Official documentation:" - elog "http://www.postgresql.org/docs/${SLOT}/static/index.html" + elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" elog elog "The default location of the Unix-domain socket is:" elog " ${EROOT%/}/run/postgresql/" @@ -356,8 +356,8 @@ pkg_config() { einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" einfo einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" einfo einfo "PG_INITDB_OPTS is currently set to:" if [[ -z "${PG_INITDB_OPTS}" ]] ; then diff --git a/dev-db/postgresql/postgresql-9.3.22.ebuild b/dev-db/postgresql/postgresql-9.3.22.ebuild index 7d174a46977..e1ed1641a5f 100644 --- a/dev-db/postgresql/postgresql-9.3.22.ebuild +++ b/dev-db/postgresql/postgresql-9.3.22.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://postgresql/source/v${PV}/postgresql-${PV}.tar.bz2" LICENSE="POSTGRESQL GPL-2" DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" +HOMEPAGE="https://www.postgresql.org/" IUSE="doc kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib" @@ -286,7 +286,7 @@ pkg_postinst() { elog "https://wiki.gentoo.org/wiki/PostgreSQL" elog elog "Official documentation:" - elog "http://www.postgresql.org/docs/${SLOT}/static/index.html" + elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" elog elog "The default location of the Unix-domain socket is:" elog " ${EROOT%/}/run/postgresql/" @@ -351,8 +351,8 @@ pkg_config() { einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" einfo einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" einfo einfo "PG_INITDB_OPTS is currently set to:" if [[ -z "${PG_INITDB_OPTS}" ]] ; then diff --git a/dev-db/postgresql/postgresql-9.3.23.ebuild b/dev-db/postgresql/postgresql-9.3.23.ebuild index 9bd6eb22b92..b102a6c5fab 100644 --- a/dev-db/postgresql/postgresql-9.3.23.ebuild +++ b/dev-db/postgresql/postgresql-9.3.23.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://postgresql/source/v${PV}/postgresql-${PV}.tar.bz2" LICENSE="POSTGRESQL GPL-2" DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" +HOMEPAGE="https://www.postgresql.org/" IUSE="doc kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib" @@ -286,7 +286,7 @@ pkg_postinst() { elog "https://wiki.gentoo.org/wiki/PostgreSQL" elog elog "Official documentation:" - elog "http://www.postgresql.org/docs/${SLOT}/static/index.html" + elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" elog elog "The default location of the Unix-domain socket is:" elog " ${EROOT%/}/run/postgresql/" @@ -351,8 +351,8 @@ pkg_config() { einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" einfo einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" einfo einfo "PG_INITDB_OPTS is currently set to:" if [[ -z "${PG_INITDB_OPTS}" ]] ; then diff --git a/dev-db/postgresql/postgresql-9.4.17.ebuild b/dev-db/postgresql/postgresql-9.4.17.ebuild index f40cb53ae05..6e9dd5d11fe 100644 --- a/dev-db/postgresql/postgresql-9.4.17.ebuild +++ b/dev-db/postgresql/postgresql-9.4.17.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://postgresql/source/v${PV}/postgresql-${PV}.tar.bz2" LICENSE="POSTGRESQL GPL-2" DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" +HOMEPAGE="https://www.postgresql.org/" IUSE="doc kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib" @@ -318,7 +318,7 @@ pkg_postinst() { elog "https://wiki.gentoo.org/wiki/PostgreSQL" elog elog "Official documentation:" - elog "http://www.postgresql.org/docs/${SLOT}/static/index.html" + elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" elog elog "The default location of the Unix-domain socket is:" elog " ${EROOT%/}/run/postgresql/" @@ -383,8 +383,8 @@ pkg_config() { einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" einfo einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" einfo einfo "PG_INITDB_OPTS is currently set to:" if [[ -z "${PG_INITDB_OPTS}" ]] ; then diff --git a/dev-db/postgresql/postgresql-9.4.18.ebuild b/dev-db/postgresql/postgresql-9.4.18.ebuild index 2f448ba1c0c..7243cdb0dd4 100644 --- a/dev-db/postgresql/postgresql-9.4.18.ebuild +++ b/dev-db/postgresql/postgresql-9.4.18.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://postgresql/source/v${PV}/postgresql-${PV}.tar.bz2" LICENSE="POSTGRESQL GPL-2" DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" +HOMEPAGE="https://www.postgresql.org/" IUSE="doc kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib" @@ -318,7 +318,7 @@ pkg_postinst() { elog "https://wiki.gentoo.org/wiki/PostgreSQL" elog elog "Official documentation:" - elog "http://www.postgresql.org/docs/${SLOT}/static/index.html" + elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" elog elog "The default location of the Unix-domain socket is:" elog " ${EROOT%/}/run/postgresql/" @@ -383,8 +383,8 @@ pkg_config() { einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" einfo einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" einfo einfo "PG_INITDB_OPTS is currently set to:" if [[ -z "${PG_INITDB_OPTS}" ]] ; then diff --git a/dev-db/postgresql/postgresql-9.5.12.ebuild b/dev-db/postgresql/postgresql-9.5.12.ebuild index af7b5fab106..003f5398f4e 100644 --- a/dev-db/postgresql/postgresql-9.5.12.ebuild +++ b/dev-db/postgresql/postgresql-9.5.12.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://postgresql/source/v${PV}/postgresql-${PV}.tar.bz2" LICENSE="POSTGRESQL GPL-2" DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" +HOMEPAGE="https://www.postgresql.org/" IUSE="doc kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib" @@ -324,7 +324,7 @@ pkg_postinst() { elog "https://wiki.gentoo.org/wiki/PostgreSQL" elog elog "Official documentation:" - elog "http://www.postgresql.org/docs/${SLOT}/static/index.html" + elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" elog elog "The default location of the Unix-domain socket is:" elog " ${EROOT%/}/run/postgresql/" @@ -389,8 +389,8 @@ pkg_config() { einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" einfo einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" einfo einfo "PG_INITDB_OPTS is currently set to:" if [[ -z "${PG_INITDB_OPTS}" ]] ; then diff --git a/dev-db/postgresql/postgresql-9.5.13.ebuild b/dev-db/postgresql/postgresql-9.5.13.ebuild index 4e1148a89f3..fd41b7ff330 100644 --- a/dev-db/postgresql/postgresql-9.5.13.ebuild +++ b/dev-db/postgresql/postgresql-9.5.13.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://postgresql/source/v${PV}/postgresql-${PV}.tar.bz2" LICENSE="POSTGRESQL GPL-2" DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" +HOMEPAGE="https://www.postgresql.org/" IUSE="doc kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib" @@ -324,7 +324,7 @@ pkg_postinst() { elog "https://wiki.gentoo.org/wiki/PostgreSQL" elog elog "Official documentation:" - elog "http://www.postgresql.org/docs/${SLOT}/static/index.html" + elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" elog elog "The default location of the Unix-domain socket is:" elog " ${EROOT%/}/run/postgresql/" @@ -389,8 +389,8 @@ pkg_config() { einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" einfo einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" einfo einfo "PG_INITDB_OPTS is currently set to:" if [[ -z "${PG_INITDB_OPTS}" ]] ; then diff --git a/dev-db/postgresql/postgresql-9.6.8.ebuild b/dev-db/postgresql/postgresql-9.6.8.ebuild index 136a3759b71..c5669d4179f 100644 --- a/dev-db/postgresql/postgresql-9.6.8.ebuild +++ b/dev-db/postgresql/postgresql-9.6.8.ebuild @@ -19,7 +19,7 @@ SRC_URI="mirror://postgresql/source/v${MY_PV}/postgresql-${MY_PV}.tar.bz2" LICENSE="POSTGRESQL GPL-2" DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" +HOMEPAGE="https://www.postgresql.org/" IUSE="doc kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib" @@ -324,7 +324,7 @@ pkg_postinst() { elog "https://wiki.gentoo.org/wiki/PostgreSQL" elog elog "Official documentation:" - elog "http://www.postgresql.org/docs/${SLOT}/static/index.html" + elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" elog elog "The default location of the Unix-domain socket is:" elog " ${EROOT%/}/run/postgresql/" @@ -389,8 +389,8 @@ pkg_config() { einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" einfo einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" einfo einfo "PG_INITDB_OPTS is currently set to:" if [[ -z "${PG_INITDB_OPTS}" ]] ; then diff --git a/dev-db/postgresql/postgresql-9.6.9.ebuild b/dev-db/postgresql/postgresql-9.6.9.ebuild index 1d5a335c590..1297819d3de 100644 --- a/dev-db/postgresql/postgresql-9.6.9.ebuild +++ b/dev-db/postgresql/postgresql-9.6.9.ebuild @@ -19,7 +19,7 @@ SRC_URI="mirror://postgresql/source/v${MY_PV}/postgresql-${MY_PV}.tar.bz2" LICENSE="POSTGRESQL GPL-2" DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" +HOMEPAGE="https://www.postgresql.org/" IUSE="doc kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib" @@ -324,7 +324,7 @@ pkg_postinst() { elog "https://wiki.gentoo.org/wiki/PostgreSQL" elog elog "Official documentation:" - elog "http://www.postgresql.org/docs/${SLOT}/static/index.html" + elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" elog elog "The default location of the Unix-domain socket is:" elog " ${EROOT%/}/run/postgresql/" @@ -389,8 +389,8 @@ pkg_config() { einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" einfo einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" einfo einfo "PG_INITDB_OPTS is currently set to:" if [[ -z "${PG_INITDB_OPTS}" ]] ; then diff --git a/dev-db/postgresql/postgresql-9999.ebuild b/dev-db/postgresql/postgresql-9999.ebuild index 151af8e7d57..c63f1facc0e 100644 --- a/dev-db/postgresql/postgresql-9999.ebuild +++ b/dev-db/postgresql/postgresql-9999.ebuild @@ -17,7 +17,7 @@ EGIT_REPO_URI="https://git.postgresql.org/git/postgresql.git" LICENSE="POSTGRESQL GPL-2" DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" +HOMEPAGE="https://www.postgresql.org/" IUSE="kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib" @@ -338,8 +338,8 @@ pkg_config() { einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" einfo einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" + einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" einfo einfo "PG_INITDB_OPTS is currently set to:" if [[ -z "${PG_INITDB_OPTS}" ]] ; then