From owner-svn-ports-all@freebsd.org Mon Jan 22 01:11:56 2018 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 E5BB8EC613A; Mon, 22 Jan 2018 01:11:56 +0000 (UTC) (envelope-from bmah@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 BEA96E2F; Mon, 22 Jan 2018 01:11:56 +0000 (UTC) (envelope-from bmah@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 E2D7D1363A; Mon, 22 Jan 2018 01:11:55 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0M1BthF041865; Mon, 22 Jan 2018 01:11:55 GMT (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0M1Bt0X041864; Mon, 22 Jan 2018 01:11:55 GMT (envelope-from bmah@FreeBSD.org) Message-Id: <201801220111.w0M1Bt0X041864@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bmah set sender to bmah@FreeBSD.org using -f From: "Bruce A. Mah" Date: Mon, 22 Jan 2018 01:11:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r459633 - head/multimedia/py-soco X-SVN-Group: ports-head X-SVN-Commit-Author: bmah X-SVN-Commit-Paths: head/multimedia/py-soco X-SVN-Commit-Revision: 459633 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 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: Mon, 22 Jan 2018 01:11:57 -0000 Author: bmah Date: Mon Jan 22 01:11:55 2018 New Revision: 459633 URL: https://svnweb.freebsd.org/changeset/ports/459633 Log: Add required but formerly-missing dependency on xmltodict. Pet PORTREVISION because it packaged before, but didn't always run correctly. PR: 225303 Approved by: Conall O'Brien (maintainer) Modified: head/multimedia/py-soco/Makefile Modified: head/multimedia/py-soco/Makefile ============================================================================== --- head/multimedia/py-soco/Makefile Mon Jan 22 00:14:28 2018 (r459632) +++ head/multimedia/py-soco/Makefile Mon Jan 22 01:11:55 2018 (r459633) @@ -2,6 +2,7 @@ PORTNAME= soco PORTVERSION= 0.13 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= multimedia python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,7 +13,8 @@ COMMENT= Python library to control Sonos speakers LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.rst -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xmltodict>0:devel/py-xmltodict@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} USE_GITHUB= yes GH_ACCOUNT= SoCo