From owner-svn-ports-all@freebsd.org Tue Jul 31 12:45:48 2018 Return-Path: Delivered-To: svn-ports-all@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 DC83210594C8 for ; Tue, 31 Jul 2018 12:45:47 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8D1FB8952B for ; Tue, 31 Jul 2018 12:45:47 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: from mail-it0-f42.google.com (mail-it0-f42.google.com [209.85.214.42]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) (Authenticated sender: sunpoet) by smtp.freebsd.org (Postfix) with ESMTPSA id 4C2A013811 for ; Tue, 31 Jul 2018 12:45:47 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: by mail-it0-f42.google.com with SMTP id v71-v6so4133374itb.3 for ; Tue, 31 Jul 2018 05:45:47 -0700 (PDT) X-Gm-Message-State: AOUpUlGUOjyHco5K3tKDysqpbagQa7AECYBVVTKRVUB9NLlgVN22i1qL HSSUIxwakMj2bSRfB0kplUI9VKLX+14JSI3C8czGTA== X-Google-Smtp-Source: AAOMgperlVt0JUKigggMQFaerQwSbi+Lvfu/4+jHNML+D/auJSmqbfT6P9SX05UtS/9BMPApMdPwDw41sLRrEAteZfY= X-Received: by 2002:a02:41d8:: with SMTP id n85-v6mr20310834jad.108.1533041146643; Tue, 31 Jul 2018 05:45:46 -0700 (PDT) MIME-Version: 1.0 References: <201807311239.w6VCd73n070432@repo.freebsd.org> In-Reply-To: <201807311239.w6VCd73n070432@repo.freebsd.org> From: Po-Chuan Hsieh Date: Tue, 31 Jul 2018 20:45:10 +0800 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r475996 - branches/2018Q3/www/py-notebook To: Ruslan Mahmatkhanov Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.27 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 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: Tue, 31 Jul 2018 12:45:48 -0000 On Tue, Jul 31, 2018 at 8:39 PM Ruslan Makhmatkhanov wrote: > Author: rm > Date: Tue Jul 31 12:39:07 2018 > New Revision: 475996 > URL: https://svnweb.freebsd.org/changeset/ports/475996 > > Log: > MFH: r475992 r475993 > > www/py-notebook: add missing dependencies > > Fix runtime by adding missing dependencies: prometheus-client is > required for > all versions and ipaddress is required for python 2.7. Bump PORTREVISION > to > chase a dependency change. > > With hat: python > > www/py-notebook: correct typo > > Approved by: portmgr (miwi) > > Modified: > branches/2018Q3/www/py-notebook/Makefile > Directory Properties: > branches/2018Q3/ (props changed) > > Modified: branches/2018Q3/www/py-notebook/Makefile > > ============================================================================== > --- branches/2018Q3/www/py-notebook/Makefile Tue Jul 31 12:32:45 2018 > (r475995) > +++ branches/2018Q3/www/py-notebook/Makefile Tue Jul 31 12:39:07 2018 > (r475996) > @@ -2,6 +2,7 @@ > > PORTNAME= notebook > PORTVERSION= 5.5.0 > Hello, The newly-added dependencies are for notebook 5.6.0, not 5.5.0. Regards, sunpoet +PORTREVISION= 1 > CATEGORIES= www python > MASTER_SITES= CHEESESHOP > PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} > @@ -23,10 +24,17 @@ RUN_DEPENDS= > ${PYTHON_PKGNAMEPREFIX}Jinja2>=0:devel/py > > ${PYTHON_PKGNAMEPREFIX}send2trash>=0:deskutils/py-send2trash@${PY_FLAVOR} > \ > ${PYTHON_PKGNAMEPREFIX}terminado>=0.8.1:net/py-terminado@${PY_FLAVOR} > \ > ${PYTHON_PKGNAMEPREFIX}tornado>=4:www/py-tornado@${PY_FLAVOR} > \ > - ${PYTHON_PKGNAMEPREFIX}traitlets>=4.2.1:devel/py-traitlets@ > ${PY_FLAVOR} > + ${PYTHON_PKGNAMEPREFIX}traitlets>=4.2.1:devel/py-traitlets@${PY_FLAVOR} > \ > + > ${PYTHON_PKGNAMEPREFIX}prometheus-client>0:net-mgmt/py-prometheus-client@ > ${PY_FLAVOR} > > NO_ARCH= yes > USES= python > USE_PYTHON= autoplist concurrent distutils > > -.include > +.include > + > +.if ${PYTHON_REL} < 3000 > +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}ipaddress>0:net/py-ipaddress@ > ${PY_FLAVOR} > +.endif > + > +.include > >