Received: by mail.netbsd.org (Postfix, from userid 605) id 2C2FD84D6E; Wed, 10 Apr 2019 10:34:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A6F0584D6C for ; Wed, 10 Apr 2019 10:34:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id q8uxHBnYxcWf for ; Wed, 10 Apr 2019 10:34:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 03B3384CE9 for ; Wed, 10 Apr 2019 10:34:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F26A8FB16; Wed, 10 Apr 2019 10:34:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155489248159760" MIME-Version: 1.0 Date: Wed, 10 Apr 2019 10:34:41 +0000 From: "Benny Siegert" Subject: CVS commit: [pkgsrc-2019Q1] pkgsrc/lang/php To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20190410103441.F26A8FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_155489248159760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Wed Apr 10 10:34:41 UTC 2019 Modified Files: pkgsrc/lang/php [pkgsrc-2019Q1]: common.mk Log Message: Pullup ticket #5935 - requested by taca lang/php: build fix Revisions pulled up: - lang/php/common.mk 1.6 --- Module Name: pkgsrc Committed By: taca Date: Sun Apr 7 05:03:41 UTC 2019 Modified Files: pkgsrc/lang/php: common.mk Log Message: lang/php: swtch to use https sites Switch to use https sites. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.5.24.1 pkgsrc/lang/php/common.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155489248159760 Content-Disposition: inline Content-Length: 1119 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/php/common.mk diff -u pkgsrc/lang/php/common.mk:1.5 pkgsrc/lang/php/common.mk:1.5.24.1 --- pkgsrc/lang/php/common.mk:1.5 Sun Sep 11 17:14:46 2016 +++ pkgsrc/lang/php/common.mk Wed Apr 10 10:34:41 2019 @@ -1,4 +1,4 @@ -# $NetBSD: common.mk,v 1.5 2016/09/11 17:14:46 taca Exp $ +# $NetBSD: common.mk,v 1.5.24.1 2019/04/10 10:34:41 bsiegert Exp $ # used by lang/php56/Makefile.common # used by lang/php70/Makefile.common # used by lang/php71/Makefile.common @@ -9,14 +9,14 @@ PHPCOMMON_MK= defined DISTNAME?= php-${PHP_VERSION} .if !defined(PECL_VERSION) -MASTER_SITES?= http://www.php.net/distributions/ \ - http://uk.php.net/distributions/ \ - http://de.php.net/distributions/ \ - http://us.php.net/distributions/ +MASTER_SITES?= https://www.php.net/distributions/ \ + https://uk.php.net/distributions/ \ + https://de.php.net/distributions/ \ + https://us.php.net/distributions/ EXTRACT_SUFX?= .tar.bz2 .endif -HOMEPAGE?= http://www.php.net/ +HOMEPAGE?= https://www.php.net/ PLIST_SUBST+= PHP_EXTENSION_DIR=${PHP_EXTENSION_DIR} PKG_SYSCONFVAR?= php --_----------=_155489248159760--