Compare commits

...

9 Commits

Author SHA1 Message Date
Hubert Pham a88f867130 Add package maker for PyAudio 0.2.8. 2014-02-16 18:27:55 -08:00
Hubert Pham d89fe5a9ae Merge branch 'master' into bdist 2014-02-16 16:05:00 -08:00
Hubert Pham 09fdc77f3a Add support for Python 3.3. 2012-10-20 22:57:52 -04:00
Hubert Pham d1040e9636 Mac OS X: Add package maker for PyAudio 0.2.7. 2012-10-20 22:57:52 -04:00
Hubert Pham a956fd1974 Merge branch 'master' into bdist
Conflicts:
	Makefile
2012-10-20 21:43:43 -04:00
Hubert Pham 9a4ca96592 Update Mac OS X packaging. 2012-09-01 23:01:44 -04:00
Hubert Pham 7b88f611dd Binaries: for Mac OS X, set the minimum OS to 10.6. 2012-09-01 23:01:44 -04:00
Hubert Pham 6966b35cea Merge branch 'master' into bdist 2012-09-01 23:01:05 -04:00
Hubert Pham c7468753fe Add packaging for binary installers. 2010-09-01 15:28:41 -04:00
71 changed files with 741 additions and 0 deletions

View File

@ -45,3 +45,5 @@ docs: build
######################################################################
tarball: docs $(SRCFILES) $(EXAMPLES) MANIFEST.in
@$(PYTHON) setup.py sdist
include bdist.mk

208
bdist.mk Normal file
View File

@ -0,0 +1,208 @@
distclean: clean
@rm -rf $(PYAUDIODIR)/PyAudio.egg-info
######################################################################
# Binary Distribution
######################################################################
PYAUDIODIR := src
BUILDDIR := build
DISTDIR := dist
PACKAGINGDIR := packaging
OUTPUT := $(DISTDIR)
PORTAUDIODIR ?= portaudio-v19
SRCFILES = $(addprefix $(PYAUDIODIR)/,\
_portaudiomodule.c \
_portaudiomodule.h \
pyaudio.py) \
setup.py
# windows / mingw
WIN32_PYTHON26 := /cygdrive/c/Python26/python.exe
WIN32_PYTHON27 := /cygdrive/c/Python27/python.exe
WIN32_PYTHON32 := /cygdrive/c/Python32/python.exe
WIN32_PYTHON33 := /cygdrive/c/Python33/python.exe
# distribution output:
WIN32_PKG := PyAudio-$(VERSION).win32.exe
WIN32_PYTHON26_PKG := $(OUTPUT)/pyaudio-$(VERSION).py26.exe
WIN32_PYTHON27_PKG := $(OUTPUT)/pyaudio-$(VERSION).py27.exe
WIN32_PYTHON32_PKG := $(OUTPUT)/pyaudio-$(VERSION).py32.exe
WIN32_PYTHON33_PKG := $(OUTPUT)/pyaudio-$(VERSION).py33.exe
# mac os x:
CLEAN_MPKG := $(PACKAGINGDIR)/remove-macosx-mpkg-rules.py
SYS_PYTHON26_DIR := /System/Library/Frameworks/Python.framework/Versions/2.6/
SYS_PYTHON27_DIR := /System/Library/Frameworks/Python.framework/Versions/2.7/
MAC_PYTHON27_DIR := /Library/Frameworks/Python.framework/Versions/2.7/
MAC_PYTHON32_DIR := /Library/Frameworks/Python.framework/Versions/3.2/
MAC_PYTHON33_DIR := /Library/Frameworks/Python.framework/Versions/3.3/
# targets
SYS_PYTHON26_PKG := $(OUTPUT)/PyAudio-$(VERSION)-sys-py2.6-macosx10.9.mpkg
SYS_PYTHON27_PKG := $(OUTPUT)/PyAudio-$(VERSION)-sys-py2.7-macosx10.9.mpkg
MAC_PYTHON27_PKG := $(OUTPUT)/PyAudio-$(VERSION)-mac-py2.7-macosx10.9.mpkg
MAC_PYTHON32_PKG := $(OUTPUT)/PyAudio-$(VERSION)-mac-py3.2-macosx10.9.mpkg
MAC_PYTHON33_PKG := $(OUTPUT)/PyAudio-$(VERSION)-mac-py3.3-macosx10.9.mpkg
# meta package containing all installers
MPKG_INSTALLER := $(OUTPUT)/pyaudio-$(VERSION).mpkg
PACKAGEMAKER := /Applications/Xcode.app/Contents/Applications/PackageMaker.app/Contents/MacOS/PackageMaker
PACKAGEDOC := packaging/pyaudio-$(VERSION)-mpkg.pmdoc
VOLNAME_FILENAME := pyaudio-$(VERSION)
VOLNAME := PyAudio\ $(VERSION)
DS_STORE := DS_Store-$(VERSION)
# add 20480 sectors (~10MB) for safety; we'll shrink it later
SECTORS = `du -s $(MPKG_INSTALLER) | awk '{print $$1 + 20480}'`
HDIUTIL = hdiutil
MAC_SNAKEY = snakey.tif
# final dmg:
DMG := $(DISTDIR)/$(VOLNAME_FILENAME).dmg
######################################################################
# Mac OS X
######################################################################
$(MAC_PYTHON27_PKG): PYTHON_DIR=$(MAC_PYTHON27_DIR)
$(MAC_PYTHON27_PKG): BDIST_MPKG_DIR=$(PYTHON_DIR)/bin
$(MAC_PYTHON27_PKG): PYTHON=python
$(MAC_PYTHON27_PKG): CC=/usr/bin/gcc
$(MAC_PYTHON27_PKG):
$(call _build_mac_package,$@)
$(MAC_PYTHON32_PKG): PYTHON_DIR=$(MAC_PYTHON32_DIR)
$(MAC_PYTHON32_PKG): BDIST_MPKG_DIR=$(PYTHON_DIR)/bin
$(MAC_PYTHON32_PKG): PYTHON=python3.2
$(MAC_PYTHON32_PKG): CC=/usr/bin/gcc
$(MAC_PYTHON32_PKG):
$(call _build_mac_package,$@)
$(MAC_PYTHON33_PKG): PYTHON_DIR=$(MAC_PYTHON33_DIR)
$(MAC_PYTHON33_PKG): BDIST_MPKG_DIR=$(PYTHON_DIR)/bin
$(MAC_PYTHON33_PKG): PYTHON=python3.3
$(MAC_PYTHON33_PKG): CC=/usr/bin/gcc
$(MAC_PYTHON33_PKG):
$(call _build_mac_package,$@)
$(SYS_PYTHON26_PKG): PYTHON_DIR=$(SYS_PYTHON26_DIR)
$(SYS_PYTHON26_PKG): BDIST_MPKG_DIR=$(PYTHON_DIR)/Extras/bin/
$(SYS_PYTHON26_PKG): CC=/usr/bin/gcc
$(SYS_PYTHON26_PKG): PYTHON=python
$(SYS_PYTHON26_PKG):
$(call _build_mac_package,$@)
$(call _fix_bundle_id,$@)
$(SYS_PYTHON27_PKG): PYTHON_DIR=$(SYS_PYTHON27_DIR)
$(SYS_PYTHON27_PKG): BDIST_MPKG_DIR=$(PYTHON_DIR)/Extras/bin/
$(SYS_PYTHON27_PKG): PYTHON=python
$(SYS_PYTHON27_PKG): CC=/usr/bin/gcc
$(SYS_PYTHON27_PKG):
$(call _build_mac_package,$@)
$(call _fix_bundle_id,$@)
_build_mac_package = \
SYSROOT_PATH=$(SYSROOT_PATH) \
PORTAUDIO_PATH=$(PORTAUDIODIR) \
$(PYTHON_DIR)/bin/$(PYTHON) setup.py build --static-link && \
$(BDIST_MPKG_DIR)/bdist_mpkg && \
sleep 2 && \
mv $(DISTDIR)/$(notdir $(subst -mac-,-,$(subst -sys-,-,$(1)))) \
$(1) && \
$(PYTHON_DIR)/bin/$(PYTHON) $(CLEAN_MPKG) -i \
$(1)/Contents/Packages/PyAudio-platlib-$(VERSION)-*/Contents/Info.plist -o $(1)/Contents/Packages/PyAudio-platlib-$(VERSION)-*/Contents/Info.plist
# Change the default system python bundle ID to include .systemdefault
# so as to not conflict with the MacPython bundles (they are
# identically named). PackageMaker will fail in mysterious ways if
# bundle IDs are not unique.
_fix_bundle_id = \
sed -i .backup -e 's/org\.pythonmac/org\.pythonmac\.systemdefault/g' \
$(1)/Contents/Packages/PyAudio-platlib-$(VERSION)-*/Contents/Info.plist
$(MPKG_INSTALLER): $(OUTPUT) $(SYS_PYTHON26_PKG) \
$(SYS_PYTHON27_PKG) $(MAC_PYTHON27_PKG) \
$(MAC_PYTHON32_PKG) $(MAC_PYTHON33_PKG)
@echo "Making Meta Package"
@$(PACKAGEMAKER) --doc $(PACKAGEDOC) --out $(MPKG_INSTALLER)
$(DMG): $(MPKG_INSTALLER)
@rm -f $(OUTPUT)/$(VOLNAME_FILENAME).dmg
@echo "Creating a DMG with $(SECTORS) sectors"
@$(HDIUTIL) create -sectors $(SECTORS) -fs HFS+ \
-volname $(VOLNAME) $(OUTPUT)/$(VOLNAME_FILENAME).dmg
@$(HDIUTIL) attach $(OUTPUT)/$(VOLNAME_FILENAME).dmg
@echo "Copying Data"
@mkdir /Volumes/$(VOLNAME)/.packaging
@cp $(PACKAGINGDIR)/$(MAC_SNAKEY) \
/Volumes/$(VOLNAME)/.packaging/$(MAC_SNAKEY)
@cp -r $(MPKG_INSTALLER) /Volumes/$(VOLNAME)/Install\ PyAudio.mpkg
@SetFile -a E /Volumes/$(VOLNAME)/Install\ PyAudio.mpkg
@cat $(PACKAGINGDIR)/setup_dmg | osascript
@echo "Done Copying"
@$(HDIUTIL) detach /Volumes/$(VOLNAME)
cp $(OUTPUT)/$(VOLNAME_FILENAME).dmg $(OUTPUT)/$(VOLNAME_FILENAME).rw.dmg
@echo "Resizing DMG"
@$(HDIUTIL) resize -sectors \
`$(HDIUTIL) resize $(OUTPUT)/$(VOLNAME_FILENAME).dmg | awk '{print $$1}'` $(OUTPUT)/$(VOLNAME_FILENAME).dmg
@echo "Compressing DMG"
@$(HDIUTIL) convert -imagekey zlib-level=9 -format UDZO \
$(OUTPUT)/$(VOLNAME_FILENAME).dmg \
-o $(OUTPUT)/$(VOLNAME_FILENAME).tmp.dmg
@mv $(OUTPUT)/$(VOLNAME_FILENAME).tmp.dmg \
$(OUTPUT)/$(VOLNAME_FILENAME).dmg
macosx: $(DMG)
######################################################################
# Win32
######################################################################
$(WIN32_PYTHON26_PKG): $(SRCFILES)
$(WIN32_PYTHON26_PKG): PYTHON=$(WIN32_PYTHON26)
$(WIN32_PYTHON26_PKG):
$(call _build_win_package,$@)
$(WIN32_PYTHON27_PKG): $(SRCFILES)
$(WIN32_PYTHON27_PKG): PYTHON=$(WIN32_PYTHON27)
$(WIN32_PYTHON27_PKG):
$(call _build_win_package,$@)
$(WIN32_PYTHON32_PKG): $(SRCFILES)
$(WIN32_PYTHON32_PKG): PYTHON=$(WIN32_PYTHON32)
$(WIN32_PYTHON32_PKG):
$(call _build_win_package,$@)
$(WIN32_PYTHON33_PKG): $(SRCFILES)
$(WIN32_PYTHON33_PKG): PYTHON=$(WIN32_PYTHON33)
$(WIN32_PYTHON33_PKG):
$(call _build_win_package,$@)
_build_win_package = \
PACKAGING_PATH=$(PACKAGINGDIR) \
PORTAUDIO_PATH=$(PORTAUDIODIR) \
$(PYTHON) setup.py build -cmingw32 --static-link && \
$(PYTHON) setup.py bdist_wininst --skip-build -t PyAudio \
--bitmap=$(PACKAGINGDIR)/win-background.bmp && \
mv $(DISTDIR)/$(WIN32_PKG) $(1)
win32: $(OUTPUT) $(WIN32_PYTHON26_PKG) $(WIN32_PYTHON27_PKG) \
$(WIN32_PYTHON32_PKG) $(WIN32_PYTHON33_PKG)
$(OUTPUT):
@mkdir -p $(OUTPUT)

BIN
packaging/DS_Store-0.2.0 Normal file

Binary file not shown.

BIN
packaging/DS_Store-0.2.3 Normal file

Binary file not shown.

BIN
packaging/DS_Store-0.2.4 Normal file

Binary file not shown.

1
packaging/postinst.py Executable file
View File

@ -0,0 +1 @@
print "Installation Completed Successfully."

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.0-py2.5.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1 @@
<pkgref spec="1.12" uuid="8532508D-DE23-450B-81FD-48CBF54DB99A"><config><identifier>csail.mit.edu.pyaudio020.pyaudioplatlib020py25macosx105.pkg</identifier><version>0.2</version><description/><post-install type="none"/><requireAuthorization/><installTo mod="true">/Library/Python/2.5/site-packages</installTo><flags/><packageStore type="internal"/><mod>parent</mod><mod>version</mod><mod>installTo.path</mod><mod>postInstall</mod><mod>installTo</mod></config><contents><file-list>01pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath>/Users/hubert/projects/portaudio/pyaudio-0.2.0/dist/PyAudio-0.2.0-sys-py2.5-macosx10.5.mpkg/Contents/Packages/PyAudio-platlib-0.2.0-py2.5-macosx10.5.pkg</packagePath><title>PyAudio-platlib-0.2.0-py2.5-macosx10.5</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.0-py2.5.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1 @@
<pkgref spec="1.12" uuid="9ECD1352-4655-4CD7-8EAB-64DC197FF285"><config><identifier>csail.mit.edu.pyaudio020.pyaudioplatlib020py25macosx105-1.pkg</identifier><version>0.2</version><description/><post-install type="none"/><requireAuthorization/><installTo mod="true">/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages</installTo><flags/><packageStore type="internal"/><mod>parent</mod><mod>version</mod><mod>installTo.path</mod><mod>postInstall</mod><mod>installTo</mod></config><contents><file-list>02pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath>/Users/hubert/projects/portaudio/pyaudio-0.2.0/dist/PyAudio-0.2.0-mac-py2.5-macosx10.5.mpkg/Contents/Packages/PyAudio-platlib-0.2.0-py2.5-macosx10.5.pkg</packagePath><title>PyAudio-platlib-0.2.0-py2.5-macosx10.5</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.0-py2.4.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1 @@
<pkgref spec="1.12" uuid="CEDEDA2F-4FF3-4E48-8D33-26E2B7026233"><config><identifier>csail.mit.edu.pyaudio020.pyaudioplatlib020py24macosx105.pkg</identifier><version>0.2</version><description/><post-install type="none"/><requireAuthorization/><installTo mod="true">/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages</installTo><flags/><packageStore type="internal"/><mod>parent</mod><mod>version</mod><mod>installTo.path</mod><mod>postInstall</mod><mod>installTo</mod></config><contents><file-list>03pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath>/Users/hubert/projects/portaudio/pyaudio-0.2.0/dist/PyAudio-0.2.0-py2.4-macosx10.5.mpkg/Contents/Packages/PyAudio-platlib-0.2.0-py2.4-macosx10.5.pkg</packagePath><title>PyAudio-platlib-0.2.0-py2.4-macosx10.5</title></extra></pkgref>

View File

@ -0,0 +1,57 @@
<pkmkdoc spec="1.12"><properties><title>PyAudio 0.2.0</title><organization>csail.mit.edu</organization><userSees ui="both"/><min-target os="2"/><domain system="true"/></properties><distribution><versions min-spec="1.000000"/><scripts></scripts></distribution><description>PyAudio v0.2.0: Python Bindings for PortAudio.
Copyright (c) 2006-2008 Hubert Pham
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.
</description><contents><choice title="PyAudio 0.2.0 for System Python 2.5" id="choice8" description="System Python 2.5 is installed by default in Leopard." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="csail.mit.edu.pyaudio020.pyaudioplatlib020py25macosx105.pkg"/></choice><choice title="PyAudio 0.2.0 for MacPython 2.5" id="choice11" description="MacPython 2.5 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/.
" starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="csail.mit.edu.pyaudio020.pyaudioplatlib020py25macosx105-1.pkg"/></choice><choice title="PyAudio 0.2.0 for MacPython 2.4" id="choice12" description="MacPython 2.4 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="csail.mit.edu.pyaudio020.pyaudioplatlib020py24macosx105.pkg"/></choice></contents><resources bg-scale="none" bg-align="topleft"><locale lang="en"><resource mime-type="text/rtf" kind="embedded" type="license"><![CDATA[{\rtf1\ansi\ansicpg1252\cocoartf949\cocoasubrtf270
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural
\f0\fs24 \cf0 PyAudio v0.2.0: Python Bindings for PortAudio.\
\
Copyright (c) 2006-2008 Hubert Pham\
\
Permission is hereby granted, free of charge, to any person obtaining\
a copy of this software and associated documentation files (the\
"Software"), to deal in the Software without restriction, including\
without limitation the rights to use, copy, modify, merge, publish,\
distribute, sublicense, and/or sell copies of the Software, and to\
permit persons to whom the Software is furnished to do so, subject to\
the following conditions:\
\
The above copyright notice and this permission notice shall be\
included in all copies or substantial portions of the Software.\
\
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY\
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\
LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\
FITNESS FOR A PARTICULAR PURPOSE AND\
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\
USE OR OTHER DEALINGS IN THE SOFTWARE.\
}]]></resource></locale></resources><flags/><item type="pkgref">01pyaudio.xml</item><item type="pkgref">02pyaudio.xml</item><item type="pkgref">03pyaudio.xml</item><mod>properties.customizeOption</mod><mod>properties.title</mod><mod>description</mod><mod>properties.systemDomain</mod><mod>properties.anywhereDomain</mod></pkmkdoc>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.3-py2.4.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1 @@
<pkgref spec="1.12" uuid="06B5F833-4169-4987-921F-FC888D569E7F"><config><identifier>csail.mit.edu.pyaudio023.pyaudioplatlib023py24macosx105.pkg</identifier><version></version><description></description><post-install type="none"/><requireAuthorization/><installTo mod="true">/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages</installTo><flags/><packageStore type="internal"></packageStore><mod>parent</mod><mod>installTo.path</mod><mod>postInstall</mod><mod>installTo</mod></config><contents><file-list>01pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath mod="true">/Users/hubert/sync/projects/pyaudio/pyaudio/pyaudio/dist/PyAudio-0.2.3-mac-py2.4-macosx10.5.mpkg/Contents/Packages/PyAudio-platlib-0.2.3-py2.4-macosx10.5.pkg</packagePath><title>PyAudio-platlib-0.2.3-py2.4-macosx10.5</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"/>

View File

@ -0,0 +1 @@
<pkgref spec="1.12" uuid="E6536ADE-3652-4893-9929-7A3FAD8957F2"><config><identifier>csail.mit.edu.pyaudio023.pyaudioplatlib023py25macosx105.pkg</identifier><version></version><description></description><post-install type="none"/><requireAuthorization/><installTo mod="true">/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages</installTo><flags/><packageStore type="internal"></packageStore><mod>parent</mod><mod>requireAuthorization</mod><mod>installTo.path</mod><mod>postInstall</mod><mod>installTo</mod></config><extra><packagePath>/Users/hubert/sync/projects/pyaudio/pyaudio/pyaudio/dist/PyAudio-0.2.3-mac-py2.5-macosx10.5.mpkg/Contents/Packages/PyAudio-platlib-0.2.3-py2.5-macosx10.5.pkg</packagePath><title>PyAudio-platlib-0.2.3-py2.5-macosx10.5</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"/>

View File

@ -0,0 +1 @@
<pkgref spec="1.12" uuid="14793237-1CBC-4469-AF98-A1D5B7586FFE"><config><identifier>csail.mit.edu.pyaudio023.pyaudioplatlib023py25macosx105-1.pkg</identifier><version></version><description></description><post-install type="none"/><requireAuthorization/><installTo mod="true">/Library/Python/2.5/site-packages/</installTo><flags/><packageStore type="internal"></packageStore><mod>parent</mod><mod>installTo.path</mod><mod>postInstall</mod><mod>installTo</mod></config><extra><packagePath>/Users/hubert/sync/projects/pyaudio/pyaudio/pyaudio/dist/PyAudio-0.2.3-sys-py2.5-macosx10.5.mpkg/Contents/Packages/PyAudio-platlib-0.2.3-py2.5-macosx10.5.pkg</packagePath><title>PyAudio-platlib-0.2.3-py2.5-macosx10.5</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"/>

View File

@ -0,0 +1 @@
<pkgref spec="1.12" uuid="30D5A341-97B1-46E5-946A-D62472C212A9"><config><identifier>csail.mit.edu.pyaudio023.pyaudioplatlib023py26macosx105.pkg</identifier><version></version><description></description><post-install type="none"/><requireAuthorization/><installTo mod="true">/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages</installTo><flags/><packageStore type="internal"></packageStore><mod>parent</mod><mod>installTo.path</mod><mod>postInstall</mod><mod>installTo</mod></config><extra><packagePath>/Users/hubert/sync/projects/pyaudio/pyaudio/pyaudio/dist/PyAudio-0.2.3-mac-py2.6-macosx10.5.mpkg/Contents/Packages/PyAudio-platlib-0.2.3-py2.6-macosx10.5.pkg</packagePath><title>PyAudio-platlib-0.2.3-py2.6-macosx10.5</title></extra></pkgref>

View File

@ -0,0 +1,56 @@
<pkmkdoc spec="1.12"><properties><title>PyAudio 0.2.3</title><build>/Users/hubert/sync/projects/pyaudio/pyaudio/pyaudio/dist/PyAudio 0.2.3.mpkg</build><organization>csail.mit.edu</organization><userSees ui="both"/><min-target os="2"/><domain system="true"/></properties><distribution><versions min-spec="1.000000"/><scripts></scripts></distribution><description>PyAudio v0.2.3: Python Bindings for PortAudio.
Copyright (c) 2006-2008 Hubert Pham
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.
</description><contents><choice title="PyAudio 0.2.3 for MacPython 2.4" id="choice2" description="MacPython 2.4 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="csail.mit.edu.pyaudio023.pyaudioplatlib023py24macosx105.pkg"/></choice><choice title="PyAudio 0.2.3 for MacPython 2.5" id="choice3" description="MacPython 2.5 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/. " starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="csail.mit.edu.pyaudio023.pyaudioplatlib023py25macosx105.pkg"/></choice><choice title="PyAudio 0.2.3 for System Python 2.5" id="choice1" description="System Python 2.5 is installed by default in Leopard." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="csail.mit.edu.pyaudio023.pyaudioplatlib023py25macosx105-1.pkg"/></choice><choice title="PyAudio 0.2.3 for MacPython 2.6" id="choice4" description="MacPython 2.6 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="csail.mit.edu.pyaudio023.pyaudioplatlib023py26macosx105.pkg"/></choice></contents><resources bg-scale="none" bg-align="topleft"><locale lang="en"><resource mime-type="text/rtf" kind="embedded" type="license"><![CDATA[{\rtf1\ansi\ansicpg1252\cocoartf949\cocoasubrtf350
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural
\f0\fs24 \cf0 PyAudio v0.2.3: Python Bindings for PortAudio.\
\
Copyright (c) 2006-2008 Hubert Pham\
\
Permission is hereby granted, free of charge, to any person obtaining\
a copy of this software and associated documentation files (the\
"Software"), to deal in the Software without restriction, including\
without limitation the rights to use, copy, modify, merge, publish,\
distribute, sublicense, and/or sell copies of the Software, and to\
permit persons to whom the Software is furnished to do so, subject to\
the following conditions:\
\
The above copyright notice and this permission notice shall be\
included in all copies or substantial portions of the Software.\
\
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY\
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\
LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\
FITNESS FOR A PARTICULAR PURPOSE AND\
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\
USE OR OTHER DEALINGS IN THE SOFTWARE.\
}]]></resource></locale></resources><flags/><item type="pkgref">01pyaudio.xml</item><item type="pkgref">02pyaudio.xml</item><item type="pkgref">03pyaudio.xml</item><item type="pkgref">04pyaudio.xml</item><mod>properties.customizeOption</mod><mod>properties.title</mod><mod>description</mod><mod>properties.systemDomain</mod><mod>properties.anywhereDomain</mod></pkmkdoc>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.4-py2.4.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/><mod>owner</mod></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"><mod>owner</mod></f><f n="pyaudio.py" o="hubert" g="admin" p="33204"><mod>owner</mod></f><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"><mod>owner</mod></f><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"><mod>owner</mod></f><mod>name</mod><mod>owner</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="D53D1F32-3F4B-4186-9517-59CC7852B3F9"><config><identifier>org.pythonmac.PyAudio-platlib-py2.4-macosx10.6</identifier><version>0.2.4</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"></packageStore><mod>installTo</mod><mod>parent</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.4-mac-py2.4-macosx10.6.mpkg/Contents/Packages/PyAudio-platlib-0.2.4-py2.4-macosx10.6.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>01pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath relative="true">../dist/PyAudio-0.2.4-mac-py2.4-macosx10.6.mpkg/Contents/Packages/PyAudio-platlib-0.2.4-py2.4-macosx10.6.pkg</packagePath><title>PyAudio-platlib-py2.4-macosx10.6</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.4-py2.5.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/><mod>owner</mod></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"><mod>owner</mod></f><f n="pyaudio.py" o="hubert" g="admin" p="33204"><mod>owner</mod></f><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"><mod>owner</mod></f><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"><mod>owner</mod></f><mod>name</mod><mod>owner</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="5FDD7FD2-50D0-491A-8B1C-2CD5774A084B"><config><identifier>org.pythonmac.PyAudio-platlib-py2.5-macosx10.6</identifier><version>0.2.4</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"></packageStore><mod>installTo</mod><mod>parent</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.4-mac-py2.5-macosx10.6.mpkg/Contents/Packages/PyAudio-platlib-0.2.4-py2.5-macosx10.6.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>02pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath relative="true" mod="true">../dist/PyAudio-0.2.4-mac-py2.5-macosx10.6.mpkg/Contents/Packages/PyAudio-platlib-0.2.4-py2.5-macosx10.6.pkg</packagePath><title>PyAudio-platlib-py2.5-macosx10.6</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.4-py2.6.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="868766F0-6141-4AE8-8E10-FDFA9C1413E4"><config><identifier>org.pythonmac.PyAudio-platlib-py2.6-macosx10.6</identifier><version>0.2.4</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"></packageStore><mod>installTo</mod><mod>parent</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.4-mac-py2.6-macosx10.6.mpkg/Contents/Packages/PyAudio-platlib-0.2.4-py2.6-macosx10.6.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>03pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath relative="true" mod="true">../dist/PyAudio-0.2.4-mac-py2.6-macosx10.6.mpkg/Contents/Packages/PyAudio-platlib-0.2.4-py2.6-macosx10.6.pkg</packagePath><title>PyAudio-platlib-py2.6-macosx10.6</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.4-py2.7.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="B5E9CC07-7255-42CA-8AFC-A54CF28DF671"><config><identifier>org.pythonmac.PyAudio-platlib-py2.7-macosx10.6</identifier><version>0.2.4</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"></packageStore><mod>installTo</mod><mod>parent</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.4-mac-py2.7-macosx10.6.mpkg/Contents/Packages/PyAudio-platlib-0.2.4-py2.7-macosx10.6.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>04pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath relative="true">../dist/PyAudio-0.2.4-mac-py2.7-macosx10.6.mpkg/Contents/Packages/PyAudio-platlib-0.2.4-py2.7-macosx10.6.pkg</packagePath><title>PyAudio-platlib-py2.7-macosx10.6</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.4-py2.5.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="97DF981A-2465-4CB8-8B1E-28B4F6EF99A9"><config><identifier>org.pythonmac.systemdefault.PyAudio-platlib-py2.5-macosx10.6</identifier><version>0.2.4</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Python/2.5/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Python/2.5/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"/><mod>parent</mod><mod>installTo</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.4-sys-py2.5-macosx10.6.mpkg/Contents/Packages/PyAudio-platlib-0.2.4-py2.5-macosx10.6.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>05pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath relative="true">../dist/PyAudio-0.2.4-sys-py2.5-macosx10.6.mpkg/Contents/Packages/PyAudio-platlib-0.2.4-py2.5-macosx10.6.pkg</packagePath><title>PyAudio-platlib-py2.5-macosx10.6</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.4-py2.6.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="8F8BDBBA-CEA7-4816-8EEE-28C7B8AD7F77"><config><identifier>org.pythonmac.systemdefault.PyAudio-platlib-py2.6-macosx10.6</identifier><version>0.2.4</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Python/2.6/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Python/2.6/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"/><mod>parent</mod><mod>installTo</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.4-sys-py2.6-macosx10.6.mpkg/Contents/Packages/PyAudio-platlib-0.2.4-py2.6-macosx10.6.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>06pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath relative="true">../dist/PyAudio-0.2.4-sys-py2.6-macosx10.6.mpkg/Contents/Packages/PyAudio-platlib-0.2.4-py2.6-macosx10.6.pkg</packagePath><title>PyAudio-platlib-py2.6-macosx10.6</title></extra></pkgref>

View File

@ -0,0 +1,56 @@
<pkmkdoc spec="1.12"><properties><title>PyAudio 0.2.4</title><organization>edu.mit.csail</organization><userSees ui="both"/><min-target os="2"/><domain system="true"/></properties><distribution><versions min-spec="1.000000"/><scripts></scripts></distribution><description>PyAudio v0.2.4: Python Bindings for PortAudio.
Copyright (c) 2006-2010 Hubert Pham
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.
</description><contents><choice title="PyAudio 0.2.4 for MacPython 2.4" id="choice14" description="MacPython 2.4 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.PyAudio-platlib-py2.4-macosx10.6"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/Library/Frameworks/Python.framework/Versions/2.4</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.4 for MacPython 2.5" id="choice15" description="MacPython 2.5 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.PyAudio-platlib-py2.5-macosx10.6"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/Library/Frameworks/Python.framework/Versions/2.5</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.4 for MacPython 2.6" id="choice16" description="MacPython 2.6 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.PyAudio-platlib-py2.6-macosx10.6"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/Library/Frameworks/Python.framework/Versions/2.6</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.4 for MacPython 2.7" id="choice17" description="MacPython 2.7 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.PyAudio-platlib-py2.7-macosx10.6"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/Library/Frameworks/Python.framework/Versions/2.7</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.4 for System Python 2.5" id="choice20" description="System Python 2.5 is installed by default in Mac OS X (Snow) Leopard." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.systemdefault.PyAudio-platlib-py2.5-macosx10.6"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/System/Library/Frameworks/Python.framework/Versions/2.5</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.4 for System Python 2.6" id="choice21" description="System Python 2.6 is installed by default in Mac OS X (Snow) Leopard." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.systemdefault.PyAudio-platlib-py2.6-macosx10.6"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/System/Library/Frameworks/Python.framework/Versions/2.6</file></requirement></choice-reqs></choice></contents><resources bg-scale="none" bg-align="topleft"><locale lang="en"><resource mime-type="text/rtf" kind="embedded" type="license"><![CDATA[{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf320
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural
\f0\fs24 \cf0 PyAudio v0.2.4: Python Bindings for PortAudio.\
\
Copyright (c) 2006-2010 Hubert Pham\
\
Permission is hereby granted, free of charge, to any person obtaining\
a copy of this software and associated documentation files (the\
"Software"), to deal in the Software without restriction, including\
without limitation the rights to use, copy, modify, merge, publish,\
distribute, sublicense, and/or sell copies of the Software, and to\
permit persons to whom the Software is furnished to do so, subject to\
the following conditions:\
\
The above copyright notice and this permission notice shall be\
included in all copies or substantial portions of the Software.\
\
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY\
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\
LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\
FITNESS FOR A PARTICULAR PURPOSE AND\
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\
USE OR OTHER DEALINGS IN THE SOFTWARE.\
}]]></resource></locale></resources><flags/><item type="pkgref">01pyaudio.xml</item><item type="pkgref">02pyaudio.xml</item><item type="pkgref">03pyaudio.xml</item><item type="pkgref">04pyaudio.xml</item><item type="pkgref">05pyaudio.xml</item><item type="pkgref">06pyaudio.xml</item><mod>properties.title</mod><mod>properties.customizeOption</mod><mod>description</mod><mod>properties.anywhereDomain</mod><mod>properties.systemDomain</mod></pkmkdoc>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.6-py3.2.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="__pycache__" o="hubert" g="admin" p="16893"><f n="pyaudio.cpython-32.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.cpython-32.pyo" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="B0F9229A-B947-42C2-AD99-73BB6F3DF773"><config><identifier>org.pythonmac.PyAudio-platlib-py3.2-macosx10.8</identifier><version>0.2.6</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"/><mod>parent</mod><mod>installTo</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.6-mac-py3.2-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.6-py3.2-macosx10.8.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>01pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath relative="true">../dist/PyAudio-0.2.6-mac-py3.2-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.6-py3.2-macosx10.8.pkg</packagePath><title>PyAudio-platlib-py3.2-macosx10.8</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.6-py2.7.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="40ABE8F0-C9E3-4879-8026-68529E7211BB"><config><identifier>org.pythonmac.PyAudio-platlib-py2.7-macosx10.8</identifier><version>0.2.6</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"/><mod>parent</mod><mod>installTo</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.6-mac-py2.7-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.6-py2.7-macosx10.8.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>02pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath relative="true">../dist/PyAudio-0.2.6-mac-py2.7-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.6-py2.7-macosx10.8.pkg</packagePath><title>PyAudio-platlib-py2.7-macosx10.8</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.6-py2.7.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="E6650362-E54D-4405-871B-822EAD14D900"><config><identifier>org.pythonmac.systemdefault.PyAudio-platlib-py2.7-macosx10.8</identifier><version>0.2.6</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Python/2.7/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Python/2.7/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"/><mod>parent</mod><mod>installTo</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.6-sys-py2.7-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.6-py2.7-macosx10.8.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>03pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath relative="true">../dist/PyAudio-0.2.6-sys-py2.7-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.6-py2.7-macosx10.8.pkg</packagePath><title>PyAudio-platlib-py2.7-macosx10.8</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.6-py2.6.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="DFE5FF62-448B-4C08-8DEA-87E81313A4AD"><config><identifier>org.pythonmac.systemdefault.PyAudio-platlib-py2.6-macosx10.8</identifier><version>0.2.6</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Python/2.6/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Python/2.6/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"/><mod>parent</mod><mod>installTo</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.6-sys-py2.6-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.6-py2.6-macosx10.8.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>04pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath relative="true">../dist/PyAudio-0.2.6-sys-py2.6-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.6-py2.6-macosx10.8.pkg</packagePath><title>PyAudio-platlib-py2.6-macosx10.8</title></extra></pkgref>

View File

@ -0,0 +1,57 @@
<pkmkdoc spec="1.12"><properties><title>PyAudio 0.2.6</title><build>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/pyaudio-0.2.6.mpkg</build><organization>edu.mit.csail</organization><userSees ui="both"/><min-target os="2"/><domain system="true"/></properties><distribution><versions min-spec="1.000000"/><scripts></scripts></distribution><description>PyAudio v0.2.6: Python Bindings for PortAudio.
Copyright (c) 2006-2012 Hubert Pham
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.
</description><contents><choice title="PyAudio 0.2.6 for MacPython 3.2" id="choice22" description="MacPython 3.2 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.PyAudio-platlib-py3.2-macosx10.8"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.6 for MacPython 2.7" id="choice23" description="MacPython 2.7 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/.
" starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.PyAudio-platlib-py2.7-macosx10.8"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.6 for System Python 2.7" id="choice24" description="System Python 2.7 is installed by default in Mac OS X." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.systemdefault.PyAudio-platlib-py2.7-macosx10.8"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.6 for System Python 2.6" id="choice25" description="System Python 2.6 is installed by default in Mac OS X." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.systemdefault.PyAudio-platlib-py2.6-macosx10.8"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/</file></requirement></choice-reqs></choice></contents><resources bg-scale="none" bg-align="topleft"><locale lang="en"><resource mime-type="text/rtf" kind="embedded" type="license"><![CDATA[{\rtf1\ansi\ansicpg1252\cocoartf1187
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural
\f0\fs24 \cf0 PyAudio v0.2.6: Python Bindings for PortAudio.\
\
Copyright (c) 2006-2012 Hubert Pham\
\
Permission is hereby granted, free of charge, to any person obtaining\
a copy of this software and associated documentation files (the\
"Software"), to deal in the Software without restriction, including\
without limitation the rights to use, copy, modify, merge, publish,\
distribute, sublicense, and/or sell copies of the Software, and to\
permit persons to whom the Software is furnished to do so, subject to\
the following conditions:\
\
The above copyright notice and this permission notice shall be\
included in all copies or substantial portions of the Software.\
\
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY\
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\
LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\
FITNESS FOR A PARTICULAR PURPOSE AND\
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\
USE OR OTHER DEALINGS IN THE SOFTWARE.\
}]]></resource></locale></resources><flags/><item type="pkgref">01pyaudio.xml</item><item type="pkgref">02pyaudio.xml</item><item type="pkgref">03pyaudio.xml</item><item type="pkgref">04pyaudio.xml</item><mod>properties.title</mod><mod>properties.customizeOption</mod><mod>description</mod><mod>properties.anywhereDomain</mod><mod>properties.systemDomain</mod></pkmkdoc>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.7-py3.2.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="__pycache__" o="hubert" g="admin" p="16893"><f n="pyaudio.cpython-32.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.cpython-32.pyo" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="B0F9229A-B947-42C2-AD99-73BB6F3DF773"><config><identifier>org.pythonmac.PyAudio-platlib-py3.2-macosx10.8</identifier><version>0.2.7</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Frameworks/Python.framework/Versions</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Frameworks/Python.framework/Versions</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"></packageStore><mod>installTo</mod><mod>scripts.scriptsDirectoryPath.isRelativeType</mod><mod>parent</mod></config><scripts><scripts-dir relative="true">../dist/PyAudio-0.2.7-mac-py3.2-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.7-py3.2-macosx10.8.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>01pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath relative="true">../dist/PyAudio-0.2.7-mac-py3.2-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.7-py3.2-macosx10.8.pkg</packagePath><title>PyAudio-platlib-py3.2-macosx10.8</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.7-py2.7.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="40ABE8F0-C9E3-4879-8026-68529E7211BB"><config><identifier>org.pythonmac.PyAudio-platlib-py2.7-macosx10.8</identifier><version>0.2.7</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"></packageStore><mod>installTo</mod><mod>scripts.scriptsDirectoryPath.isRelativeType</mod><mod>parent</mod></config><scripts><scripts-dir relative="true">../dist/PyAudio-0.2.7-mac-py2.7-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.7-py2.7-macosx10.8.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>02pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath relative="true">../dist/PyAudio-0.2.7-mac-py2.7-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.7-py2.7-macosx10.8.pkg</packagePath><title>PyAudio-platlib-py2.7-macosx10.8</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.7-py2.7.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="E6650362-E54D-4405-871B-822EAD14D900"><config><identifier>org.pythonmac.systemdefault.PyAudio-platlib-py2.7-macosx10.8</identifier><version>0.2.7</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Python/2.7/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Python/2.7/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"></packageStore><mod>installTo</mod><mod>scripts.scriptsDirectoryPath.isRelativeType</mod><mod>parent</mod></config><scripts><scripts-dir relative="true">../dist/PyAudio-0.2.7-sys-py2.7-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.7-py2.7-macosx10.8.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>03pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath relative="true">../dist/PyAudio-0.2.7-sys-py2.7-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.7-py2.7-macosx10.8.pkg</packagePath><title>PyAudio-platlib-py2.7-macosx10.8</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.7-py2.6.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="DFE5FF62-448B-4C08-8DEA-87E81313A4AD"><config><identifier>org.pythonmac.systemdefault.PyAudio-platlib-py2.6-macosx10.8</identifier><version>0.2.7</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Python/2.6/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Python/2.6/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"></packageStore><mod>installTo</mod><mod>scripts.scriptsDirectoryPath.isRelativeType</mod><mod>parent</mod></config><scripts><scripts-dir relative="true">../dist/PyAudio-0.2.7-sys-py2.6-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.7-py2.6-macosx10.8.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>04pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath relative="true">../dist/PyAudio-0.2.7-sys-py2.6-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.7-py2.6-macosx10.8.pkg</packagePath><title>PyAudio-platlib-py2.6-macosx10.8</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.7-py3.3.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="__pycache__" o="hubert" g="admin" p="16893"><f n="pyaudio.cpython-33.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.cpython-33.pyo" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="A282C0E8-28FF-42E8-8AB2-BB08F6A682D7"><config><identifier>org.pythonmac.PyAudio-platlib-py3.3-macosx10.8</identifier><version>0.2.7</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"/><mod>parent</mod><mod>scripts.scriptsDirectoryPath.isRelativeType</mod><mod>installTo</mod></config><scripts><scripts-dir relative="true">../dist/PyAudio-0.2.7-mac-py3.3-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.7-py3.3-macosx10.8.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>05pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.7-mac-py3.3-macosx10.8.mpkg/Contents/Packages/PyAudio-platlib-0.2.7-py3.3-macosx10.8.pkg</packagePath><title>PyAudio-platlib-py3.3-macosx10.8</title></extra></pkgref>

View File

@ -0,0 +1,56 @@
<pkmkdoc spec="1.12"><properties><title>PyAudio 0.2.7</title><build>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/pyaudio-0.2.7.mpkg</build><organization>edu.mit.csail</organization><userSees ui="both"/><min-target os="2"/><domain system="true"/></properties><distribution><versions min-spec="1.000000"/><scripts></scripts></distribution><description>PyAudio v0.2.7: Python Bindings for PortAudio.
Copyright (c) 2006-2012 Hubert Pham
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.
</description><contents><choice title="PyAudio 0.2.7 for MacPython 3.2" id="choice22" description="MacPython 3.2 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.PyAudio-platlib-py3.2-macosx10.8"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.7 for MacPython 2.7" id="choice23" description="MacPython 2.7 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/. " starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.PyAudio-platlib-py2.7-macosx10.8"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.7 for System Python 2.7" id="choice24" description="System Python 2.7 is installed by default in Mac OS X." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.systemdefault.PyAudio-platlib-py2.7-macosx10.8"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.7 for System Python 2.6" id="choice25" description="System Python 2.6 is installed by default in Mac OS X." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.systemdefault.PyAudio-platlib-py2.6-macosx10.8"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.7 for MacPython 3.3" id="choice21" description="MacPython 3.3 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.PyAudio-platlib-py3.3-macosx10.8"/></choice></contents><resources bg-scale="none" bg-align="topleft"><locale lang="en"><resource mime-type="text/rtf" kind="embedded" type="license"><![CDATA[{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf340
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural
\f0\fs24 \cf0 PyAudio v0.2.7: Python Bindings for PortAudio.\
\
Copyright (c) 2006-2012 Hubert Pham\
\
Permission is hereby granted, free of charge, to any person obtaining\
a copy of this software and associated documentation files (the\
"Software"), to deal in the Software without restriction, including\
without limitation the rights to use, copy, modify, merge, publish,\
distribute, sublicense, and/or sell copies of the Software, and to\
permit persons to whom the Software is furnished to do so, subject to\
the following conditions:\
\
The above copyright notice and this permission notice shall be\
included in all copies or substantial portions of the Software.\
\
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY\
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\
LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\
FITNESS FOR A PARTICULAR PURPOSE AND\
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\
USE OR OTHER DEALINGS IN THE SOFTWARE.\
}]]></resource></locale></resources><flags/><item type="pkgref">01pyaudio.xml</item><item type="pkgref">02pyaudio.xml</item><item type="pkgref">03pyaudio.xml</item><item type="pkgref">04pyaudio.xml</item><item type="pkgref">05pyaudio.xml</item><mod>properties.title</mod><mod>properties.customizeOption</mod><mod>description</mod><mod>properties.anywhereDomain</mod><mod>properties.systemDomain</mod></pkmkdoc>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.8-py3.3.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="__pycache__" o="hubert" g="admin" p="16893"><f n="pyaudio.cpython-33.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.cpython-33.pyo" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="F2E92B23-3C6D-4D10-B99A-0C0B1E93BF7F"><config><identifier>org.pythonmac.PyAudio-platlib-py3.3-macosx10.9</identifier><version>0.2.8</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"></packageStore><mod>parent</mod><mod>installTo</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.8-mac-py3.3-macosx10.9.mpkg/Contents/Packages/PyAudio-platlib-0.2.8-py3.3-macosx10.9.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>01pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.8-mac-py3.3-macosx10.9.mpkg/Contents/Packages/PyAudio-platlib-0.2.8-py3.3-macosx10.9.pkg</packagePath><title>PyAudio-platlib-py3.3-macosx10.9</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.8-py2.6.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="AAD2F01F-60DA-4429-81C4-97D897B4851E"><config><identifier>org.pythonmac.systemdefault.PyAudio-platlib-py2.6-macosx10.9</identifier><version>0.2.8</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Python/2.6/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Python/2.6/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"></packageStore><mod>installTo</mod><mod>parent</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.8-sys-py2.6-macosx10.9.mpkg/Contents/Packages/PyAudio-platlib-0.2.8-py2.6-macosx10.9.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>02pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.8-sys-py2.6-macosx10.9.mpkg/Contents/Packages/PyAudio-platlib-0.2.8-py2.6-macosx10.9.pkg</packagePath><title>PyAudio-platlib-py2.6-macosx10.9</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.8-py3.2.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="__pycache__" o="hubert" g="admin" p="16893"><f n="pyaudio.cpython-32.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.cpython-32.pyo" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="257A7430-20E9-4A46-9D6D-70315CBB85FB"><config><identifier>org.pythonmac.PyAudio-platlib-py3.2-macosx10.9</identifier><version>0.2.8</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"/><mod>parent</mod><mod>installTo</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.8-mac-py3.2-macosx10.9.mpkg/Contents/Packages/PyAudio-platlib-0.2.8-py3.2-macosx10.9.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>03pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.8-mac-py3.2-macosx10.9.mpkg/Contents/Packages/PyAudio-platlib-0.2.8-py3.2-macosx10.9.pkg</packagePath><title>PyAudio-platlib-py3.2-macosx10.9</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.8-py2.7.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="52248D16-32E5-42A2-93D0-3487777E6024"><config><identifier>org.pythonmac.PyAudio-platlib-py2.7-macosx10.9</identifier><version>0.2.8</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"/><mod>parent</mod><mod>installTo</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.8-mac-py2.7-macosx10.9.mpkg/Contents/Packages/PyAudio-platlib-0.2.8-py2.7-macosx10.9.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>04pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.8-mac-py2.7-macosx10.9.mpkg/Contents/Packages/PyAudio-platlib-0.2.8-py2.7-macosx10.9.pkg</packagePath><title>PyAudio-platlib-py2.7-macosx10.9</title></extra></pkgref>

View File

@ -0,0 +1 @@
<pkg-contents spec="1.12"><f n="PackageRoot" o="hubert" g="admin" p="16893" pt="." m="true" t="bom"><f n="PyAudio-0.2.8-py2.7.egg-info" o="hubert" g="admin" p="16893"><f n="PKG-INFO" o="hubert" g="admin" p="33204"/><f n="SOURCES.txt" o="hubert" g="admin" p="33204"/><f n="dependency_links.txt" o="hubert" g="admin" p="33204"/><f n="top_level.txt" o="hubert" g="admin" p="33204"/></f><f n="_portaudio.so" o="hubert" g="admin" p="33277" c="true"/><f n="pyaudio.py" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyc" o="hubert" g="admin" p="33204"/><f n="pyaudio.pyo" o="hubert" g="admin" p="33204"/><mod>name</mod></f></pkg-contents>

View File

@ -0,0 +1,2 @@
<pkgref spec="1.12" uuid="00721604-991D-41D3-904C-7A25E30A6962"><config><identifier>org.pythonmac.systemdefault.PyAudio-platlib-py2.7-macosx10.9</identifier><version>0.2.8</version><description>(Required) Python modules, extensions, and packages
Installed to: /Library/Python/2.7/site-packages</description><post-install type="none"/><requireAuthorization/><installTo>/Library/Python/2.7/site-packages</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"/><mod>parent</mod><mod>installTo</mod></config><scripts><scripts-dir>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.8-sys-py2.7-macosx10.9.mpkg/Contents/Packages/PyAudio-platlib-0.2.8-py2.7-macosx10.9.pkg/Contents/Resources</scripts-dir></scripts><contents><file-list>05pyaudio-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra><packagePath>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/PyAudio-0.2.8-sys-py2.7-macosx10.9.mpkg/Contents/Packages/PyAudio-platlib-0.2.8-py2.7-macosx10.9.pkg</packagePath><title>PyAudio-platlib-py2.7-macosx10.9</title></extra></pkgref>

View File

@ -0,0 +1,56 @@
<pkmkdoc spec="1.12"><properties><title>PyAudio 0.2.8</title><build>/Users/hubert/sync/projects/pyaudio/pyaudio/dist/pyaudio-0.2.8.mpkg</build><organization>edu.mit.csail</organization><userSees ui="both"/><min-target os="2"/><domain system="true"/></properties><distribution><versions min-spec="1.000000"/><scripts></scripts></distribution><description>PyAudio v0.2.8: Python Bindings for PortAudio.
Copyright (c) 2006-2012 Hubert Pham
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.
</description><contents><choice title="PyAudio 0.2.8 for MacPython 3.2" id="choice22" description="MacPython 3.2 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.PyAudio-platlib-py3.2-macosx10.9"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.8 for MacPython 2.7" id="choice23" description="MacPython 2.7 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/. " starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.PyAudio-platlib-py2.7-macosx10.9"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.8 for System Python 2.7" id="choice24" description="System Python 2.7 is installed by default in Mac OS X." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.systemdefault.PyAudio-platlib-py2.7-macosx10.9"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.8 for System Python 2.6" id="choice25" description="System Python 2.6 is installed by default in Mac OS X." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.systemdefault.PyAudio-platlib-py2.6-macosx10.9"/><choice-reqs><requirement id="file" operator="eq" value="true" selected="no" enabled="no" hidden="unchanged" startSelected="unchanged" startEnabled="unchanged" startHidden="unchanged"><file>/</file></requirement></choice-reqs></choice><choice title="PyAudio 0.2.8 for MacPython 3.3" id="choice21" description="MacPython 3.3 is available from python.org and is typically installed in /Library/Frameworks/Python.framework/." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.pythonmac.PyAudio-platlib-py3.3-macosx10.9"/></choice></contents><resources bg-scale="none" bg-align="topleft"><locale lang="en"><resource mime-type="text/rtf" kind="embedded" type="license"><![CDATA[{\rtf1\ansi\ansicpg1252\cocoartf1265
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural
\f0\fs24 \cf0 PyAudio v0.2.8: Python Bindings for PortAudio.\
\
Copyright (c) 2006-2014 Hubert Pham\
\
Permission is hereby granted, free of charge, to any person obtaining\
a copy of this software and associated documentation files (the\
"Software"), to deal in the Software without restriction, including\
without limitation the rights to use, copy, modify, merge, publish,\
distribute, sublicense, and/or sell copies of the Software, and to\
permit persons to whom the Software is furnished to do so, subject to\
the following conditions:\
\
The above copyright notice and this permission notice shall be\
included in all copies or substantial portions of the Software.\
\
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY\
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\
LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\
FITNESS FOR A PARTICULAR PURPOSE AND\
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\
USE OR OTHER DEALINGS IN THE SOFTWARE.\
}]]></resource></locale></resources><flags/><item type="pkgref">01pyaudio.xml</item><item type="pkgref">02pyaudio.xml</item><item type="pkgref">03pyaudio.xml</item><item type="pkgref">04pyaudio.xml</item><item type="pkgref">05pyaudio.xml</item><mod>properties.title</mod><mod>properties.customizeOption</mod><mod>description</mod><mod>properties.anywhereDomain</mod><mod>properties.systemDomain</mod></pkmkdoc>

View File

@ -0,0 +1,93 @@
"""
Remove requirements section in Info.plist for Mac OS X Installer package.
Background: There is a bug in the command-line version of PackageMaker
v3.0.4 (179). When creating a meta-package (bundle of packages), if
any of constituent packages specify installation requirements,
PackageMaker will crash. The reason is probably that PackageMaker
needs to ask the user (via the GUI, which in this case doesn't exist
from the command line) how to handle each constituents' requirements.
The solution is to bake those requirements into the global
meta-package template (pmdoc) and then remove the requirements from
each constituent package. This script does the latter by removing a
known key and value from the specified package's Info.plist file.
"""
import sys
from xml.dom.minidom import parse
from optparse import OptionParser
def main():
parser = OptionParser()
parser.add_option("-i", "--input", dest="input")
parser.add_option("-o", "--output", dest="output")
(options, args) = parser.parse_args()
if not options.input:
print("No input given.")
parser.print_help()
return -1
try:
dom = parse(options.input)
except Exception as err:
print("Error: ", err)
return -1
# XML looks something like this:
# <plist />
# <dict>
# <key> ... </key>
# <string> ... </string> # this is the value
# <key> ... </key>
# <string> ... </string>
# ...
# <key>IFRequirementDicts</key> # REMOVE THIS
# <array> # ...AND THIS
# <dict>
# ...
# </dict>
# </array>
# ...
# </dict>
# </plist>
plist = dom.getElementsByTagName("key")
for k in plist:
if ((k.firstChild.nodeType is k.TEXT_NODE) and
(k.firstChild.data.strip() == "IFRequirementDicts")):
sibling = k.nextSibling
# Skip all whitespace between this key and the upcoming
# <array>
while sibling.nodeType is k.TEXT_NODE:
sibling = sibling.nextSibling
assert sibling.tagName == "array", "Could not find <array>"
# Remove nodes
parent = k.parentNode
parent.removeChild(k)
parent.removeChild(sibling)
k.unlink()
sibling.unlink()
break
xml = dom.toxml()
if options.output:
try:
f = open(options.output, "w")
except IOError as err:
print("Error: ", err)
return -1
f.write(xml)
f.close()
else:
print(xml)
if __name__ == "__main__":
sys.exit(main())

19
packaging/setup_dmg Normal file
View File

@ -0,0 +1,19 @@
-- http://stackoverflow.com/questions/96882/how-do-i-create-a-nice-looking-dmg-for-mac-os-x-using-command-line-tools
tell application "Finder"
tell disk "PyAudio 0.2.8"
open
set current view of container window to icon view
set toolbar visible of container window to false
set statusbar visible of container window to false
set the bounds of container window to {0, 0, 635, 385}
set theViewOptions to the icon view options of container window
set arrangement of theViewOptions to not arranged
set icon size of theViewOptions to 148
set background picture of theViewOptions to file ".packaging:snakey.tif"
set position of item "Install PyAudio" of container window to {460, 240}
close
open
update without registering applications
delay 5
end tell
end tell

BIN
packaging/snakey.tif Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

View File

@ -53,6 +53,7 @@ if "--static-link" in sys.argv:
sys.argv.remove("--static-link")
portaudio_path = os.environ.get("PORTAUDIO_PATH", "./portaudio-v19")
packaging_path = os.environ.get("PACKAGING_PATH", None)
mac_sysroot_path = os.environ.get("SYSROOT_PATH", None)
pyaudio_module_sources = ['src/_portaudiomodule.c']
@ -77,6 +78,9 @@ else:
if sys.platform == 'darwin':
defines += [('MACOSX', '1')]
extra_compile_args += ["-mmacosx-version-min=10.6"]
extra_link_args += ["-mmacosx-version-min=10.6"]
if mac_sysroot_path:
extra_compile_args += ["-isysroot", mac_sysroot_path]
extra_link_args += ["-isysroot", mac_sysroot_path]
@ -99,6 +103,8 @@ if STATIC_LINKING:
# run: python setup.py build -cmingw32
external_libraries += ['winmm']
extra_link_args += ['-lwinmm']
if packaging_path:
scripts += [os.path.join(packaging_path, 'postinst.py')]
elif sys.platform == 'linux2':
extra_link_args += ['-lrt', '-lm', '-lpthread']