notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine

Bot filter coming soon

To deter bots pegging the database CPU to 100%, a bot testing filter to be added to the website. This should not affect newsfeeds etc. Anubis seems light-weight - it is already in use within the FreeBSD Project. This notice is just a heads up in case you see something odd. This notice will be updated after Anubis is installed.

Port details
py-pyyaml-ft YAML parser and emitter for Python with support for free-threading
7.0.1 devel on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout Package not present on quarterly.This port was created during this quarter. It will be in the next quarterly branch but not the current one.
Maintainer: sunpoet@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2025-06-01 16:27:11
Last Update: 2025-06-13 06:03:06
Commit Hash: a060b79
Also Listed In: python
License: MIT
WWW:
https://pyyaml.org/wiki/PyYAMLDocumentation
https://github.com/Quansight-Labs/pyyaml-ft
Description:
PyYAML-ft provides a full-featured YAML processing framework for Python with support for free-threading. PEP 703 introduced free-threaded Python as a separate build of CPython 3.13. Thread-safety issues that might have otherwise gone unnoticed are now much easier to trigger because of the absence of protection from the GIL. Also, because the free-threaded build is ABI-incompatible, extension modules need to be separate, free-threaded wheels and declare support for it. The PyYAML maintainers decided to not port PyYAML to the free-threaded build before the latter, along with Cython support for it, has been tested more extensively in real-world applications. Our rationale with this fork is to implement support for the free-threaded build, so that PyYAML can be tested with it by its users, even before the port is merged upstream.
HomepageHomepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb - no subversion history for this port

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
There is no configure plist information for this port.
Dependency lines:
  • ${PYTHON_PKGNAMEPREFIX}pyyaml-ft>0:devel/py-pyyaml-ft@${PY_FLAVOR}
To install the port:
cd /usr/ports/devel/py-pyyaml-ft/ && make install clean
To add the package, run one of these commands:
  • pkg install devel/py-pyyaml-ft
  • pkg install py311-pyyaml-ft
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
NOTE: This is a Python port. Instead of py311-pyyaml-ft listed in the above command, you can pick from the names under the Packages section.
PKGNAME: py311-pyyaml-ft
Package flavors (<flavor>: <package>)
  • py311: py311-pyyaml-ft
distinfo:
TIMESTAMP = 1748495685 SHA256 (pyyaml_ft-7.0.1.tar.gz) = 3dc548f723e71ed2c1ba3df02e7c0ff4fd32c33bacd70e4c4b69e1bd3469f370 SIZE (pyyaml_ft-7.0.1.tar.gz) = 140935

Packages (timestamps in pop-ups are UTC):
py311-pyyaml-ft
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest-7.0.1--7.0.1---
FreeBSD:13:quarterly--------
FreeBSD:14:latest-7.0.1--7.0.1---
FreeBSD:14:quarterly--------
FreeBSD:15:latest--n/a-n/a---
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. py311-setuptools>=0 : devel/py-setuptools@py311
  2. py311-wheel>=0 : devel/py-wheel@py311
  3. py311-cython>=0.29.37<3 : lang/cython@py311
  4. python3.11 : lang/python311
  5. py311-build>=0 : devel/py-build@py311
  6. py311-installer>=0 : devel/py-installer@py311
Test dependencies:
  1. py311-pytest>=7,1 : devel/py-pytest@py311
  2. python3.11 : lang/python311
Runtime dependencies:
  1. python3.11 : lang/python311
Library dependencies:
  1. libyaml.so : textproc/libyaml
There are no ports dependent upon this port

Configuration Options:
No options to configure
Options name:
devel_py-pyyaml-ft
USES:
localbase python
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (2 items)
Collapse this list.
  1. https://files.pythonhosted.org/packages/source/p/pyyaml_ft/
  2. https://pypi.org/packages/source/p/pyyaml_ft/
Collapse this list.

Number of commits found: 2

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
7.0.1
13 Jun 2025 06:03:06
commit hash: a060b7966058d346005f22fc0018bd73c70ce8d2commit hash: a060b7966058d346005f22fc0018bd73c70ce8d2commit hash: a060b7966058d346005f22fc0018bd73c70ce8d2commit hash: a060b7966058d346005f22fc0018bd73c70ce8d2 files touched by this commit
Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-pyyaml-ft: Convert to USE_PYTHON=pytest
7.0.1
01 Jun 2025 16:23:09
commit hash: 93e42c90b946e41290a3556c3cb41aa65bd98410commit hash: 93e42c90b946e41290a3556c3cb41aa65bd98410commit hash: 93e42c90b946e41290a3556c3cb41aa65bd98410commit hash: 93e42c90b946e41290a3556c3cb41aa65bd98410 files touched by this commit
Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-pyyaml-ft: Add py-pyyaml-ft 7.0.1

PyYAML-ft provides a full-featured YAML processing framework for Python with
support for free-threading.

PEP 703 introduced free-threaded Python as a separate build of CPython 3.13.
Thread-safety issues that might have otherwise gone unnoticed are now much
easier to trigger because of the absence of protection from the GIL. Also,
because the free-threaded build is ABI-incompatible, extension modules need to
be separate, free-threaded wheels and declare support for it.

The PyYAML maintainers decided to not port PyYAML to the free-threaded build
before the latter, along with Cython support for it, has been tested more
extensively in real-world applications. Our rationale with this fork is to
implement support for the free-threaded build, so that PyYAML can be tested with
it by its users, even before the port is merged upstream.

Number of commits found: 2