From owner-svn-ports-head@FreeBSD.ORG Thu Jun 11 03:12:54 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB27DBCD; Thu, 11 Jun 2015 03:12:54 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pa0-x22c.google.com (mail-pa0-x22c.google.com [IPv6:2607:f8b0:400e:c03::22c]) (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 BAEA51DF7; Thu, 11 Jun 2015 03:12:54 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by pabqy3 with SMTP id qy3so45245683pab.3; Wed, 10 Jun 2015 20:12:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=nbxlxJ7g3ck6x7l2Tqa0Jx9NbBlSHLhHMqDwfzIV8Tk=; b=txG8GejvrQ2sTPL0XYUhqiZIe4WpOhHBWNLQUugOzpHcKR1+SdoPBz6invfuWmse3P tLJpxsmuNSFWPXV7wutdCJiiwCTEkbtyCnVw02+eFZiWFDKIuQBQkKHIFa1tpFjo2Ed7 sgcOsNmXNACMYHxNsDdx4KCwDDb8vxYTp9NcuSVKtd3amNU0bbi9rCiuZVlQg0S0Gb3z 0OIG9sCfaVKC1MmFFgj4I2OLtxnTocBIGkf4paU7tvDz0UF3ZpoQMRIbxaQpv6rXPG/V emM4uJkG3POfcjJELQesloZ5JF+fpuy8p2oagdKWC+pFx1IE+zDaZOfAF9qZpMvBKtRP DvAQ== X-Received: by 10.66.150.196 with SMTP id uk4mr11172420pab.54.1433992374166; Wed, 10 Jun 2015 20:12:54 -0700 (PDT) Received: from [192.168.1.104] (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPSA id gp1sm9850128pbd.64.2015.06.10.20.12.51 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 10 Jun 2015 20:12:53 -0700 (PDT) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: svn commit: r389121 - head/archivers/py-lz4 References: <201506101814.t5AIESmI078385@svn.freebsd.org> To: Jung-uk Kim , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Kubilay Kocak Message-ID: <5578FCAD.6010201@FreeBSD.org> Date: Thu, 11 Jun 2015 13:12:45 +1000 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.0 MIME-Version: 1.0 In-Reply-To: <201506101814.t5AIESmI078385@svn.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 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: Thu, 11 Jun 2015 03:12:55 -0000 On 11/06/2015 4:14 AM, Jung-uk Kim wrote: > Author: jkim > Date: Wed Jun 10 18:14:28 2015 > New Revision: 389121 > URL: https://svnweb.freebsd.org/changeset/ports/389121 > > Log: > Fix build dependency. > > Modified: > head/archivers/py-lz4/Makefile > > Modified: head/archivers/py-lz4/Makefile > ============================================================================== > --- head/archivers/py-lz4/Makefile Wed Jun 10 18:12:35 2015 (r389120) > +++ head/archivers/py-lz4/Makefile Wed Jun 10 18:14:28 2015 (r389121) > @@ -11,6 +11,8 @@ COMMENT= Python binding for the LZ4 comp > > LICENSE= BSD3CLAUSE > > +BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/nose/__init__.py:${PORTSDIR}/devel/py-nose > + > USE_PYTHON= autoplist distutils > USES= python > > It's *very* likely setup_requires in setup.py adding a build dependency on nose [1] is a typo, and supposed to be tests_require I would recommend patching setup.py to say: setup_requires=["nose>=1.0"], And submitting the patch upstream in a PR. [1] https://github.com/steeve/python-lz4/blob/master/setup.py#L34 ./koobs