Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=N24otD4T; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=0dMAUteR Received: by mail.netbsd.org (Postfix, from userid 605) id AE36D84F4E; Tue, 14 May 2024 18:10:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715710253; bh=lt67iYMvGr/hXCMhkjWJQLO7zipZryiNuOK+2BoQxmk=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=N24otD4TjwVqLGepdHqQnVaijNkuB6PE2hSY8+d9CobifUHjMbj8vBqAtU77AY6WQ Wr0W8n1w6eaIo95DINyVwhgxqpAhv96WFX9f5wWPO7tvuAe9VUZD2OoJdBnd5qfCXa Ptl2vg++69L41cHC71G1GbSE+RQOrnEqaZ8/Cdmc= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9DDC784F43 for ; Tue, 14 May 2024 18:10:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id B-4IJm4DHKtM for ; Tue, 14 May 2024 18:10:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 7881484F3A for ; Tue, 14 May 2024 18:10:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715710251; bh=lt67iYMvGr/hXCMhkjWJQLO7zipZryiNuOK+2BoQxmk=; h=Date:From:Subject:To:Reply-To; b=0dMAUteRoz9Cw6Xgm9oGqEs5222Irn1Ug7OBFVryUH2sdlto667PCxc+i4G0e/mHm QGw4s6hZOTW8p71zy3K49gfQFgNkNeg5MiIyNQHuAwC8XXkljh5iVcYqhuImbWaaaq KuT+l5tdSGeNt/pY9JpDhjSGg+QWObQ0rtFXrWMU= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6A025FA2C; Tue, 14 May 2024 18:10:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1715710251114200" MIME-Version: 1.0 Date: Tue, 14 May 2024 18:10:51 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/comms/asterisk16 To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20240514181051.6A025FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1715710251114200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Tue May 14 18:10:51 UTC 2024 Modified Files: pkgsrc/comms/asterisk16: Makefile Log Message: comms/asterisk16: Fix MASTER_SITES to https (needs doing on rest of comms/asteriskNN) To generate a diff of this commit: cvs rdiff -u -r1.108 -r1.109 pkgsrc/comms/asterisk16/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1715710251114200 Content-Disposition: inline Content-Length: 1169 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/comms/asterisk16/Makefile diff -u pkgsrc/comms/asterisk16/Makefile:1.108 pkgsrc/comms/asterisk16/Makefile:1.109 --- pkgsrc/comms/asterisk16/Makefile:1.108 Sun Apr 7 07:33:40 2024 +++ pkgsrc/comms/asterisk16/Makefile Tue May 14 18:10:51 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.108 2024/04/07 07:33:40 wiz Exp $ +# $NetBSD: Makefile,v 1.109 2024/05/14 18:10:51 gdt Exp $ # # NOTE: when updating this package, there are two places that sound # tarballs need to be checked; look in ${WRKSRC}/sounds/Makefile @@ -7,9 +7,9 @@ DISTNAME= asterisk-16.29.1 PKGREVISION= 11 CATEGORIES= comms net audio -MASTER_SITES= http://downloads.asterisk.org/pub/telephony/asterisk/ -MASTER_SITES+= http://downloads.asterisk.org/pub/telephony/asterisk/old-releases/ -MASTER_SITES+= http://downloads.asterisk.org/pub/telephony/sounds/releases/ +MASTER_SITES= https://downloads.asterisk.org/pub/telephony/asterisk/ +MASTER_SITES+= https://downloads.asterisk.org/pub/telephony/asterisk/old-releases/ +MASTER_SITES+= https://downloads.asterisk.org/pub/telephony/sounds/releases/ DIST_SUBDIR= ${PKGNAME_NOREV} DISTFILES= ${DEFAULT_DISTFILES} --_----------=_1715710251114200--