From owner-svn-ports-all@freebsd.org Sun Jan 3 23:05:38 2016 Return-Path: Delivered-To: svn-ports-all@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 91CB6A61502; Sun, 3 Jan 2016 23:05:38 +0000 (UTC) (envelope-from kubito@gmail.com) Received: from mail-wm0-x22d.google.com (mail-wm0-x22d.google.com [IPv6:2a00:1450:400c:c09::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2F6A91D20; Sun, 3 Jan 2016 23:05:38 +0000 (UTC) (envelope-from kubito@gmail.com) Received: by mail-wm0-x22d.google.com with SMTP id f206so190832344wmf.0; Sun, 03 Jan 2016 15:05:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=D+y+C5xU0Wte5b5e1ehzjj+84gC7HIsGKnslIxm1LYY=; b=jkW4qeHnfvZrrVFwZoknLwCiqZ0P0i59lQL5g+W8d09O9k0JUgg8kSdqDtcri2ZUCL q5JyJFSrdKvZT1f/kgLeCvLgW++/NGb8POtUsimtDWSUfFuLjX0WXrwMc3ivEAVr6oUI tYMCapSmbyaFViEBQkOCUn9/QIn64SO9RPIEP/q69BedkGI8oR7eRkCXD4Kq4qFsX4in UXp/6J/JtqshelW0wv8dasVE+7vZxDIm8o674WfL9xhh9/1ItSh6XCfIWle5lAaUq9xL 6muZXHvAg61wtBHb0zkB6AzEEYxJiV5TAp1ykxUhk2yGxZmpYavCdgbXeV9iMoa7tftk qIkw== X-Received: by 10.28.97.11 with SMTP id v11mr83418315wmb.42.1451862336602; Sun, 03 Jan 2016 15:05:36 -0800 (PST) Received: from orwell.gmail.com (dhcp-077-248-147-050.chello.nl. [77.248.147.50]) by smtp.gmail.com with ESMTPSA id e136sm75319166wma.23.2016.01.03.15.05.35 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 03 Jan 2016 15:05:35 -0800 (PST) Sender: Raphael Kubo da Costa From: Raphael Kubo da Costa To: "Vanilla I. Shu" Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, koobs@FreeBSD.org Subject: Re: svn commit: r404408 - head/devel/py-cycler References: <201512250919.tBP9Jhga021187@repo.freebsd.org> Date: Mon, 04 Jan 2016 00:05:28 +0100 In-Reply-To: <201512250919.tBP9Jhga021187@repo.freebsd.org> (Vanilla I. Shu's message of "Fri, 25 Dec 2015 09:19:43 +0000 (UTC)") Message-ID: <86bn92qn5z.fsf@FreeBSD.org> User-Agent: Gnus/5.130014 (Ma Gnus v0.14) Emacs/24.5 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 23:05:38 -0000 "Vanilla I. Shu" writes: > Author: vanilla > Date: Fri Dec 25 09:19:42 2015 > New Revision: 404408 > URL: https://svnweb.freebsd.org/changeset/ports/404408 > > Log: > Set DISTNAME to preclude overwriting of MASTER_SITE_SUBDIR. > > Approved by: koobs@ This actually broke `make fetch'. Due to how MASTER_SITE_SUBDIRS is set for CHEESESHOP (bug 205762), MASTER_SITE now looks like https://pypi.python.org/packages/source/c/cycler/cycler-0.9.0.tar.gz but the "cycler" directory is actually called "Cycler". > Modified: > head/devel/py-cycler/Makefile > > Modified: head/devel/py-cycler/Makefile > ============================================================================== > --- head/devel/py-cycler/Makefile Fri Dec 25 07:47:01 2015 (r404407) > +++ head/devel/py-cycler/Makefile Fri Dec 25 09:19:42 2015 (r404408) > @@ -1,12 +1,12 @@ > # Created by: Yuri Victorovich > # $FreeBSD$ > > -PORTNAME= cycler > +PORTNAME= Cycler > PORTVERSION= 0.9.0 > CATEGORIES= devel python > MASTER_SITES= CHEESESHOP > -MASTER_SITE_SUBDIR= source/C/Cycler > PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} > +DISTNAME= cycler-${PORTVERSION} > > MAINTAINER= yuri@rawbw.com > COMMENT= Composable style cycles > _______________________________________________ > svn-ports-all@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/svn-ports-all > To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"