From owner-svn-ports-head@freebsd.org Sat Feb 10 09:55:09 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E263F0D40B; Sat, 10 Feb 2018 09:55:09 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from toco-domains.de (mail.toco-domains.de [IPv6:2a01:4f8:150:50a5::6]) (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 B85B6761CC; Sat, 10 Feb 2018 09:55:08 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from phantomias.home.jochen-neumeister.de (p5B0FD0CC.dip0.t-ipconnect.de [91.15.208.204]) by toco-domains.de (Postfix) with ESMTPA id 676BC1AAF019; Sat, 10 Feb 2018 10:55:07 +0100 (CET) Subject: Re: svn commit: r461360 - head/net/py-kafka-python From: Jochen Neumeister To: Yuri Victorovich , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201802100716.w1A7GP3Z087747@repo.freebsd.org> <729dddb3-be17-ea4e-55fe-e069d2dc2dc9@FreeBSD.org> Message-ID: Date: Sat, 10 Feb 2018 10:54:59 +0100 MIME-Version: 1.0 In-Reply-To: <729dddb3-be17-ea4e-55fe-e069d2dc2dc9@FreeBSD.org> Content-Language: de-DE Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.25 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Feb 2018 09:55:09 -0000 Ah, fixed in r461365, sorry Am 10.02.2018 um 10:52 schrieb Jochen Neumeister: > > > > Am 10.02.2018 um 08:16 schrieb Yuri Victorovich: >> Author: yuri >> Date: Sat Feb 10 07:16:25 2018 >> New Revision: 461360 >> URL:https://svnweb.freebsd.org/changeset/ports/461360 >> >> Log: >> net/py-kafka-python: Update to 1.4.1 >> >> Changelogs: >> https://github.com/dpkp/kafka-python/releases/tag/1.4.1 (and similar URLs) >> >> Additional port changes: >> * MASTER_SITES changed to the upstream github URL due to >> failure to download from CHEESESHOP. >> * Reordered the USES section. >> * Removed USES=shebangfix since it makes no difference. >> * Updated WWW with new github account. >> >> PR: 223989 >> Submitted by: Sergey Akhmatov >> Approved by: christer.edwards@gmail.com (maintainer), tcberner (mentor, implicit) >> >> Modified: >> head/net/py-kafka-python/Makefile >> head/net/py-kafka-python/distinfo >> head/net/py-kafka-python/pkg-descr >> >> Modified: head/net/py-kafka-python/Makefile >> ============================================================================== >> --- head/net/py-kafka-python/Makefile Sat Feb 10 01:14:19 2018 (r461359) >> +++ head/net/py-kafka-python/Makefile Sat Feb 10 07:16:25 2018 (r461360) >> @@ -2,9 +2,9 @@ >> # $FreeBSD$ >> >> PORTNAME= kafka-python >> -PORTVERSION= 1.3.4 >> +PORTVERSION= 1.4.1 >> CATEGORIES= net python >> -MASTER_SITES= CHEESESHOP >> +MASTER_SITES= https://github.com/dpkp/${PORTNAME}/archive/${PORTVERSION}.tar.gz?dummy=/ > > Do not work USE_GITHUB here? > See 5.4.3: > https://www.freebsd.org/doc/en/books/porters-handbook/makefile-distfiles.html > > joneum