Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Feb 2021 11:35:57 +0000 (UTC)
From:      Hiroki Tagato <tagattie@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r563795 - in head/audio: . py-pulsectl
Message-ID:  <202102021135.112BZvlp018327@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102021135.112BZvlp018327>