From owner-svn-ports-all@freebsd.org Thu Mar 10 21:53:58 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 23CB8ACB173; Thu, 10 Mar 2016 21:53:58 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F39C1DF6; Thu, 10 Mar 2016 21:53:56 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [192.168.1.21] (108.Red-83-36-0.dynamicIP.rima-tde.net [83.36.0.108]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 0720243C43; Thu, 10 Mar 2016 15:53:47 -0600 (CST) Subject: Re: svn commit: r410501 - in head/www/py-praw: . files To: Kubilay Kocak , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201603070533.u275X04c083767@repo.freebsd.org> Reply-To: marino@freebsd.org From: John Marino Message-ID: <56E1ECE5.4050806@marino.st> Date: Thu, 10 Mar 2016 22:53:41 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0 MIME-Version: 1.0 In-Reply-To: <201603070533.u275X04c083767@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 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: Thu, 10 Mar 2016 21:53:58 -0000 On 3/7/2016 6:33 AM, Kubilay Kocak wrote: > Author: koobs > Date: Mon Mar 7 05:33:00 2016 > New Revision: 410501 > URL: https://svnweb.freebsd.org/changeset/ports/410501 > > Log: > www/py-praw: Update to 3.4.0, Modernize > > - Update PORTVERSION and distinfo checksum (3.4.0) > - Add LICENSE_FILE > - Update RUN_DEPENDS > - Update TEST_DEPENDS and test target. > - Enable "concurrent" Python version installation > - Patch setup.py to relax dependency versions > > Changes: > > https://praw.readthedocs.org/en/stable/pages/changelog.html > > Added: > head/www/py-praw/files/ > head/www/py-praw/files/patch-setup.py (contents, props changed) > Modified: > head/www/py-praw/Makefile > head/www/py-praw/distinfo > > Modified: head/www/py-praw/Makefile > ============================================================================== > --- head/www/py-praw/Makefile Mon Mar 7 05:23:22 2016 (r410500) > +++ head/www/py-praw/Makefile Mon Mar 7 05:33:00 2016 (r410501) > @@ -2,9 +2,8 @@ > # $FreeBSD$ > > PORTNAME= praw > -PORTVERSION= 2.1.11 > +PORTVERSION= 3.4.0 > DISTVERSIONPREFIX= v > -PORTREVISION= 2 > CATEGORIES= www python > PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} > > @@ -12,18 +11,26 @@ MAINTAINER= koobs@FreeBSD.org > COMMENT= Python Reddit API Wrapper > > LICENSE= GPLv3 > +LICENSE_FILE= ${WRKSRC}/COPYING > > -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests1>=1.2.0:${PORTSDIR}/www/py-requests1 \ > - ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six > -TEST_DEPENDS:= ${RUN_DEPENDS} > +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}decorator>=4.0.9:${PORTSDIR}/devel/py-decorator \ ^^^ Is it possible you forgot to update devel/py-decorator first? py-decorator is at version 4.0.6, so it's impossible for py-praw to be built. It's failing everywhere. Regards, John