From owner-svn-ports-all@freebsd.org Tue Feb 2 11:35:58 2021 Return-Path: Delivered-To: svn-ports-all@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 0B13352E531; Tue, 2 Feb 2021 11:35:58 +0000 (UTC) (envelope-from tagattie@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DVN6j6k6Pz4rcN; Tue, 2 Feb 2021 11:35:57 +0000 (UTC) (envelope-from tagattie@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 D939B5B04; Tue, 2 Feb 2021 11:35:57 +0000 (UTC) (envelope-from tagattie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 112BZvW0018331; Tue, 2 Feb 2021 11:35:57 GMT (envelope-from tagattie@FreeBSD.org) Received: (from tagattie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 112BZvlp018327; Tue, 2 Feb 2021 11:35:57 GMT (envelope-from tagattie@FreeBSD.org) Message-Id: <202102021135.112BZvlp018327@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tagattie set sender to tagattie@FreeBSD.org using -f From: Hiroki Tagato Date: Tue, 2 Feb 2021 11:35:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r563795 - in head/audio: . py-pulsectl X-SVN-Group: ports-head X-SVN-Commit-Author: tagattie X-SVN-Commit-Paths: in head/audio: . py-pulsectl X-SVN-Commit-Revision: 563795 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.34 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, 02 Feb 2021 11:35:58 -0000 Author: tagattie Date: Tue Feb 2 11:35:56 2021 New Revision: 563795 URL: https://svnweb.freebsd.org/changeset/ports/563795 Log: Add a new port audio/py-pulsectl Python (3.x and 2.x) high-level interface and ctypes-based bindings for PulseAudio (libpulse), mostly focused on mixer-like controls and introspection-related operations (as opposed to e.g. submitting sound samples to play, player-like client). Originally forked from pulsemixer project, which had this code bundled. WWW: https://pypi.python.org/pypi/pulsectl Added: head/audio/py-pulsectl/ head/audio/py-pulsectl/Makefile (contents, props changed) head/audio/py-pulsectl/distinfo (contents, props changed) head/audio/py-pulsectl/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Tue Feb 2 10:53:01 2021 (r563794) +++ head/audio/Makefile Tue Feb 2 11:35:56 2021 (r563795) @@ -672,6 +672,7 @@ SUBDIR += py-musicbrainzngs SUBDIR += py-mutagen SUBDIR += py-opuslib + SUBDIR += py-pulsectl SUBDIR += py-pyacoustid SUBDIR += py-pyaudio SUBDIR += py-pylast Added: head/audio/py-pulsectl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-pulsectl/Makefile Tue Feb 2 11:35:56 2021 (r563795) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= pulsectl +DISTVERSION= 20.5.1 +CATEGORIES= audio python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= tagattie@FreeBSD.org +COMMENT= Python high-level interface and ctypes-based bindings for PulseAudio + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libpulse.so:audio/pulseaudio + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/audio/py-pulsectl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-pulsectl/distinfo Tue Feb 2 11:35:56 2021 (r563795) @@ -0,0 +1,3 @@ +TIMESTAMP = 1612165845 +SHA256 (pulsectl-20.5.1.tar.gz) = 39b0a0e7974a7d6468d826a838822f78b00ac9c3803f0d7bfa9b1cad08ee22db +SIZE (pulsectl-20.5.1.tar.gz) = 40050 Added: head/audio/py-pulsectl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-pulsectl/pkg-descr Tue Feb 2 11:35:56 2021 (r563795) @@ -0,0 +1,9 @@ +Python (3.x and 2.x) high-level interface and ctypes-based bindings +for PulseAudio (libpulse), mostly focused on mixer-like controls and +introspection-related operations (as opposed to e.g. submitting sound +samples to play, player-like client). + +Originally forked from pulsemixer project, which had this code +bundled. + +WWW: https://pypi.python.org/pypi/pulsectl