From owner-svn-ports-head@freebsd.org Sat Feb 22 15:56:04 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DDD11241E9B; Sat, 22 Feb 2020 15:56:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48PtGX0KQCz42P0; Sat, 22 Feb 2020 15:56:03 +0000 (UTC) (envelope-from sunpoet@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 B27BD25E3A; Sat, 22 Feb 2020 15:56:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 01MFu3Ui054659; Sat, 22 Feb 2020 15:56:03 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01MFu3ue054657; Sat, 22 Feb 2020 15:56:03 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202002221556.01MFu3ue054657@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Feb 2020 15:56:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r526791 - in head/audio/py-pyliblo: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/audio/py-pyliblo: . files X-SVN-Commit-Revision: 526791 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.29 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: Sat, 22 Feb 2020 15:56:04 -0000 Author: sunpoet Date: Sat Feb 22 15:56:03 2020 New Revision: 526791 URL: https://svnweb.freebsd.org/changeset/ports/526791 Log: Use USE_PYTHON=autoplist - Change MASTER_SITES to CHEESESHOP - Simplify Makefile and setup.py patch after r523104 and r523220 - Take maintainership Deleted: head/audio/py-pyliblo/files/ head/audio/py-pyliblo/pkg-plist Modified: head/audio/py-pyliblo/Makefile head/audio/py-pyliblo/pkg-descr Modified: head/audio/py-pyliblo/Makefile ============================================================================== --- head/audio/py-pyliblo/Makefile Sat Feb 22 15:55:57 2020 (r526790) +++ head/audio/py-pyliblo/Makefile Sat Feb 22 15:56:03 2020 (r526791) @@ -5,10 +5,10 @@ PORTNAME= pyliblo DISTVERSION= 0.10.0 PORTREVISION= 2 CATEGORIES= audio python -MASTER_SITES= http://das.nasophon.de/download/ +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Python wrapper for the Liblo OSC Library LICENSE= LGPL21 @@ -16,16 +16,10 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= liblo.so:audio/liblo -USES= python -USE_PYTHON= distutils concurrent cython -MAKE_ENV+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} +USES= localbase python +USE_PYTHON= autoplist concurrent cython distutils -post-patch: - ${REINPLACE_CMD} -e 's#%%LOCALBASE%%#${LOCALBASE}#g' ${WRKSRC}/setup.py - post-install: ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/liblo.so - ${INSTALL_MAN} ${WRKSRC}/scripts/dump_osc.1 ${STAGEDIR}${PREFIX}/share/man/man1 - ${INSTALL_MAN} ${WRKSRC}/scripts/send_osc.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include Modified: head/audio/py-pyliblo/pkg-descr ============================================================================== --- head/audio/py-pyliblo/pkg-descr Sat Feb 22 15:55:57 2020 (r526790) +++ head/audio/py-pyliblo/pkg-descr Sat Feb 22 15:56:03 2020 (r526791) @@ -1,9 +1,8 @@ -pyliblo is a Python wrapper for the liblo OSC library. It -supports almost the complete functionality of liblo, allowing -you to send and receive OSC messages using a nice and simple -Python API. +pyliblo is a Python wrapper for the liblo OSC library. It supports almost the +complete functionality of liblo, allowing you to send and receive OSC messages +using a nice and simple Python API. -Also included are the command line utilities send_osc and -dump_osc. +Also included are the command line utilities send_osc and dump_osc. WWW: http://das.nasophon.de/pyliblo/ +WWW: https://github.com/dsacre/pyliblo