From owner-svn-ports-head@freebsd.org Tue Mar 27 21:06:16 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 38512F5C2AF; Tue, 27 Mar 2018 21:06:16 +0000 (UTC) (envelope-from dvl@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CBD1B815A0; Tue, 27 Mar 2018 21:06:15 +0000 (UTC) (envelope-from dvl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C4A6C2168A; Tue, 27 Mar 2018 21:06:15 +0000 (UTC) (envelope-from dvl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2RL6FIh073971; Tue, 27 Mar 2018 21:06:15 GMT (envelope-from dvl@FreeBSD.org) Received: (from dvl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2RL6F9s073970; Tue, 27 Mar 2018 21:06:15 GMT (envelope-from dvl@FreeBSD.org) Message-Id: <201803272106.w2RL6F9s073970@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dvl set sender to dvl@FreeBSD.org using -f From: Dan Langille Date: Tue, 27 Mar 2018 21:06:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465754 - head/sysutils/py-hared X-SVN-Group: ports-head X-SVN-Commit-Author: dvl X-SVN-Commit-Paths: head/sysutils/py-hared X-SVN-Commit-Revision: 465754 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Tue, 27 Mar 2018 21:06:16 -0000 Author: dvl Date: Tue Mar 27 21:06:15 2018 New Revision: 465754 URL: https://svnweb.freebsd.org/changeset/ports/465754 Log: Add @${PY_FLAVOR} to RUN_DEPENDS (thanks lifanov) While here: * use PORTVERSION not DISTVERSION * bump PORTREVSION Reported by: lifanov Modified: head/sysutils/py-hared/Makefile Modified: head/sysutils/py-hared/Makefile ============================================================================== --- head/sysutils/py-hared/Makefile Tue Mar 27 21:05:47 2018 (r465753) +++ head/sysutils/py-hared/Makefile Tue Mar 27 21:06:15 2018 (r465754) @@ -1,7 +1,8 @@ # $FreeBSD$ PORTNAME= hared -DISTVERSION= 1.0 +PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -10,14 +11,13 @@ MAINTAINER= dvl@FreeBSD.org COMMENT= Small Python server for inserting notications into mtqq LICENSE= MIT -LICENSE_FILE= LICENSE USES= python USE_PYTHON= distutils autoplist ETCDIR= ${PREFIX}/etc -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}paho-mqtt>0:net/py-paho-mqtt +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}paho-mqtt>0:net/py-paho-mqtt@${PY_FLAVOR} PLIST_FILES+= "@sample %%ETCDIR%%/hared.ini.sample"