From owner-freebsd-perl@freebsd.org Wed Jun 24 15:03:44 2015 Return-Path: Delivered-To: freebsd-perl@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6E309157DD for ; Wed, 24 Jun 2015 15:03:44 +0000 (UTC) (envelope-from citrin+bsd@citrin.ru) Received: from ost.citrin.ru (servers-nat.spylog.net [193.169.234.5]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 61F2615FA for ; Wed, 24 Jun 2015 15:03:43 +0000 (UTC) (envelope-from citrin+bsd@citrin.ru) Received: from citrin.office.vega.ru (office-nat.spylog.net [193.169.234.6]) (Authenticated sender: citrin@citrin.ru) by ost.citrin.ru (Postfix) with ESMTPSA id 7483D6C12606 for ; Wed, 24 Jun 2015 15:03:39 +0000 (UTC) Message-ID: <558AC6CA.3010308@citrin.ru> Date: Wed, 24 Jun 2015 18:03:38 +0300 From: Anton Yuzhaninov User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/20130516 Thunderbird/17.0.6 MIME-Version: 1.0 To: freebsd-perl@freebsd.org Subject: Re: MASTER_SITE_SUBDIR References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=citrin.ru; s=s0; t=1435158219; bh=6AdgSyIpNd2SBxYz0PQqhLJFS0UA79soCdmNFKj5/KU=; h=Message-ID:Date:From:MIME-Version:To:Subject:References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=wh+bUmNr7OfNgDPODReveILuWXckdLALSRj49/4wc4vLv6lQ1WEsWEnxEQnblMgWzy2/nOqx+9c6w1gEWueRNunWmKleJzBD8XE5mXIF1dLG80XxhGMT2fRaBwF+OuuQL0kpDEexr402jrEd7eOFMIGGuXSozhs2mV3CHquJqJw= X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 15:03:44 -0000 On 06/24/15 17:29, Adam Weinberger wrote:] > Given that all these ports fetch just fine with just MASTER_SITES= CPAN, I'd > like to remove all the MASTER_SITE_SUBDIR=CPAN:USERNAME lines from the perl@ > ports. > > Is there a reason not to do this? Yes, there are. 1. Many modules is not included in by-module index. First found example is devel/p5-CommitBit I don't know why. 2. In CPAN only one user/author can be namespace owner. Bot perl module with same name can be uploded by other authors: http://www.cpan.org/modules/04pause.html In most cases we want to use in ports code from primary maintainer and it is better to use: MASTER_SITES= CPAN But in case when module no longer supported by original author and there is newer version by other author (who don't bother with resetting namespace ownership) module in MASTER_SITES= CPAN:USERNAME can be newer (and preferred to use) than module in MASTER_SITES= CPAN So please don't blindly change CPAN:USERNAME to CPAN - test in each case, that you will fetch same code.