non port: audio/py-pyaudio/Makefile |
SVNWeb
|
Number of commits found: 23 |
Wed, 11 Jan 2023
|
[ 15:58 Dmitry Marakasov (amdmi3) ] 77d6847 (Only the first 10 of 3335 ports in this commit are shown above. )
*/*: rename CHEESESHOP to PYPI in MASTER_SITES
PR: 267994
Differential revision: D37518
Approved by: bapt
|
Thu, 29 Dec 2022
|
[ 06:06 Li-Wen Hsu (lwhsu) Author: Jaap Akkerhuis ] 72b7cb3
audio/py-pyaudio: Update to 0.2.13
While here, pet portlint(1)
PR: 268614
|
Tue, 22 Nov 2022
|
[ 23:36 Guangyuan Yang (ygy) Author: Jaap Akkerhuis ] 5fa414e
audio/py-pyaudio: Update to 0.2.12
Changelog: https://people.csail.mit.edu/hubert/pyaudio/
PR: 267923
|
Wed, 7 Sep 2022
|
[ 21:10 Stefan Eßer (se) ] b7f0544 (Only the first 10 of 27931 ports in this commit are shown above. )
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above )
|
Wed, 20 Jul 2022
|
[ 14:20 Tobias C. Berner (tcberner) ] 213b0b7 (Only the first 10 of 561 ports in this commit are shown above. )
audio: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* <dmagda+libsamplerate@ee.ryerson.ca>
* <trasz@FreeBSD.org>
* Adam Weinberger
* Adam Weinberger <adamw@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Aleksander Fafula <alex@bsdguru.org>
* Alex Allan <alex@kamaz.org.uk>
* Alexander Botero-Lowry <alex@foxybanana.com>
* Alexander Kojevnikov <alexander@kojevnikov.com>
* Alexander Nedotsukov <bland@FreeBSD.org>
* Alexander Vereeken <Alexander88207@protonmail.com> (Only the first 15 lines of the commit message are shown above )
|
Tue, 6 Apr 2021
|
[ 14:31 Mathieu Arnold (mat) ] 305f148 (Only the first 10 of 29333 ports in this commit are shown above. )
Remove # $FreeBSD$ from Makefiles.
|
Thu, 14 Jan 2021
|
[ 14:34 dbaio ] (Only the first 10 of 85 ports in this commit are shown above. )
Remove PY_SPHINX from ports using Python 3
Approved by: portmgr blanket
Differential Revision: https://reviews.freebsd.org/D28093
|
Mon, 28 Dec 2020
|
[ 23:02 antoine ] (Only the first 10 of 1942 ports in this commit are shown above. )
Drop python 2.7 support from a few ports
With hat: portmgr
|
Thu, 24 Dec 2020
|
[ 13:46 kai ] (Only the first 10 of 166 ports in this commit are shown above. )
Relax hardcoded paths to fix build with Python 3.8.7
Since r558913 Python 3.8 incorporates BPO-42604 [1] which changed the
shared libs naming scheme. This means "EXT_SUFFIX" is now derived from
SOABI and yields with Python 3.8 to ".cpython-38.so" instead of ".so".
The affected ports strip the libaries in the "post-install" target via
hardcoded path(s) and the build fails at the end because the new extension
is not expected at this place.
Remedy the issue by adding wildcards to these paths. This should also
prepare the ports for future Python releases, which will use the new shared
libs naming scheme.
[1] https://bugs.python.org/issue42604
PR: 252057
Reported by: John Kennedy
Reviewed by: fluffy, koobs
Approved by: koobs (python)
|
Mon, 11 May 2020
|
[ 23:51 dbaio ] (Only the first 10 of 144 ports in this commit are shown above. )
Update Sphinx
- Repocopy textproc/py-sphinx to textproc/py-sphinx18
Update it to 1.8.5 (latest version from 1.8.X).
This version supports Python 2 and 3.
Add test target.
- textproc/py-sphinx: Update to 3.0.2
Python 3 only (3.5+).
Add test target.
- Mk/Uses/python.mk: Add PY_SPHINX
(Only the first 15 lines of the commit message are shown above )
|
Sun, 4 Mar 2018
|
[ 19:57 yuri ]
audio/py-pyaudio: Add USE_PYTHON=concurrent
PR: 226343
Submitted by: owk <freebsd_ports@k-worx.org>
Approved by: tcberner (mentor, implicit)
Approved by: portmgr blanket
|
Mon, 26 Feb 2018
|
[ 15:27 jhale ]
Fix stage-qa errors when building a non-default Python flavor when DOCS option
is enabled. (e.g. py27 default, try to build py36)
===> Checking for items in STAGEDIR missing from pkg-plist
Error: Orphaned: %%PYTHON_SITELIBDIR%%/pyaudio.pyc
===> Checking for items in pkg-plist which are not in STAGEDIR
===> Error: Plist issues found.
textproc/py-sphinx is only needed for DOCS here and should be the same flavor as
the port being built to avoid bytecode leftovers.
Do DOCS build in the build stage and simplify DOCS installation
Approved by: portmgr (blanket)
|
Fri, 14 Apr 2017
|
[ 16:03 riggs ]
Update to upstream version 0.2.11, fixes runtime issue with python GIL
PR: 218588
Submitted by: jaap@NLnetLabs.nl (maintainer)
MFH: 2017Q2
|
Tue, 5 Apr 2016
|
[ 18:04 pi ]
audio/py-pyaudio: 0.2.8 -> 0.2.9
- Fix overflow error handling logic for pa_read_stream.
Stream.read takes an additional parameter that specifies whether
an exception is raised on audio buffer overflow, for parity with
Stream.write. Includes relevant bug fixes in the C module logic.
Thanks to Tony Jacobson for submitting a patch!
- Fix IOError arguments.
IOError exceptions previously had values in the strerror and errno fields
swapped, which is now corrected.
Thanks to Sami Liedes for the report!
- Miscellaneous updates.
Python library surfaces issues with importing low-level C module.
Code formatting update.
Updates to examples for Python 3 compatibility.
PR: 208517
Submitted by: jaap@NLnetLabs.nl (maintainer)
|
Fri, 1 Apr 2016
|
[ 13:29 mat ] (Only the first 10 of 1009 ports in this commit are shown above. )
Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.
With hat: portmgr
Sponsored by: Absolight
|
Sat, 30 May 2015
|
[ 20:39 bapt ] (Only the first 10 of 68 ports in this commit are shown above. )
Update portaudio to v19/Remove portaudio2 [1]
Chase portaudio change
Add patches from debian for games/cultivation
Add patches from upsteam for audio/rezound
Mark py-fastaudio as broken
Approved by: maintainer
|
Thu, 1 Jan 2015
|
[ 19:56 pawel ]
- Update to version 0.2.8, add LICENSE [1]
- Fix build on DragonFly and when LOCALBASE != PREFIX [2]
- Make sure to link with audio/portaudio2 [2]
PR: 196054
Submitted by: maintainer [1], Jan Beich [2]
|
Sun, 19 Oct 2014
|
[ 07:33 mva ] (Only the first 10 of 36 ports in this commit are shown above. )
- Convert ports from audio/ to new USES=python
Reviewed by: portmgr (implicit)
|
Tue, 15 Jul 2014
|
[ 17:37 adamw ] (Only the first 10 of 18 ports in this commit are shown above. )
Correct all instances where OPTIONS_DEFINE was being overwritten
by multiple definitions.
|
Fri, 4 Apr 2014
|
[ 22:44 bapt ]
Support stage
Use autoplist
|
Wed, 11 Dec 2013
|
[ 14:35 bapt ] (Only the first 10 of 268 ports in this commit are shown above. )
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in audio
With hat: portmgr
|
Fri, 20 Sep 2013
|
[ 14:36 bapt ] (Only the first 10 of 879 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
audio)
|
Sat, 22 Dec 2012
|
[ 10:11 mva ]
PyAudio provides Python bindings for PortAudio, the cross-platform
audio I/O library. With PyAudio, you can easily use Python to play
and record audio on a variety of platforms.
WWW: http://people.csail.mit.edu/hubert/pyaudio/
PR: ports/173708
Submitted by: Jaap Akkerhuis <jaap@NLnetLabs.nl>
|
Number of commits found: 23 |