HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept
{
"count": 51787,
"next": "https://ports.macports.org/api/v1/ports/?format=api&ordering=-created_at&page=21",
"previous": "https://ports.macports.org/api/v1/ports/?format=api&ordering=-created_at&page=19",
"results": [
{
"name": "py314-getkey",
"portdir": "python/py-getkey",
"version": "0.6.5",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/kcsaff/getkey",
"description": "Library to easily read single chars and key strokes.",
"long_description": "Library to easily read single chars and key strokes.",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "michaelld",
"github": "michaelld",
"ports_count": 465
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py314-build",
"py314-installer",
"py314-setuptools",
"py314-wheel"
]
},
{
"type": "lib",
"ports": [
"python314"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-getkey"
]
}
]
},
{
"name": "py314-fusepy",
"portdir": "python/py-fusepy",
"version": "3.0.1",
"license": "ISC",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/fusepy/fusepy",
"description": "a simple interface to FUSE and MacFUSE",
"long_description": "fusepy is a Python module that provides a simple interface to FUSE and MacFUSE. It's just one file and is implemented using ctypes.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-wheel",
"py314-installer",
"py314-setuptools",
"pkgconfig",
"clang-18",
"py314-build"
]
},
{
"type": "lib",
"ports": [
"python314",
"macfuse"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-fusepy",
"py314-gitfs"
]
}
]
},
{
"name": "py314-atomiclong",
"portdir": "python/py-atomiclong",
"version": "0.1.1",
"license": "MIT",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/dreid/atomiclong",
"description": "increment numbers, atomically, in python",
"long_description": "Sometimes you need to increment some numbers, atomically, in python. AtomicLong was born out of the need for fast thread-safe counters in python. It uses CFFI to bind GCC's Atomic Builtins. Its value is a C long which can be incremented, decremented, and set atomically. It is inspired by Java's java.util.concurrent.atomic.AtomicLong.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [],
"variants": [
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"py314-build",
"py314-setuptools",
"py314-wheel",
"clang-18",
"py314-installer"
]
},
{
"type": "lib",
"ports": [
"py314-cffi",
"python314"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-atomiclong",
"py314-gitfs"
]
}
]
},
{
"name": "py314-beartype",
"portdir": "python/py-beartype",
"version": "0.22.9",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/beartype/beartype",
"description": "Unbearably fast O(1) runtime type-checking in pure Python",
"long_description": "Beartype is an open-source pure-Python PEP-compliant constant-time runtime type checker emphasizing efficiency, portability, and thrilling puns.",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "harens",
"github": "harens",
"ports_count": 165
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py314-build",
"py314-installer",
"py314-hatchling"
]
},
{
"type": "lib",
"ports": [
"python314"
]
},
{
"type": "test",
"ports": [
"py314-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-beartype"
]
},
{
"type": "run",
"ports": [
"py314-sentipy"
]
}
]
},
{
"name": "py313-beartype",
"portdir": "python/py-beartype",
"version": "0.22.9",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/beartype/beartype",
"description": "Unbearably fast O(1) runtime type-checking in pure Python",
"long_description": "Beartype is an open-source pure-Python PEP-compliant constant-time runtime type checker emphasizing efficiency, portability, and thrilling puns.",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "harens",
"github": "harens",
"ports_count": 165
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py313-build",
"py313-installer",
"py313-hatchling"
]
},
{
"type": "lib",
"ports": [
"python313"
]
},
{
"type": "test",
"ports": [
"py313-pytest"
]
}
],
"depends_on": []
},
{
"name": "py314-soundfile",
"portdir": "python/py-soundfile",
"version": "0.13.1",
"license": "BSD",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/bastibe/python-soundfile",
"description": "SoundFile is an audio library based on libsndfile, CFFI, and NumPy.",
"long_description": "SoundFile is an audio library based on libsndfile, CFFI, and NumPy. SoundFile can read and write sound files. File reading/writing is supported through libsndfile, which is a free, cross-platform, open-source (LGPL) library for reading and writing many different sampled sound file formats that runs on many platforms including Windows, OS X, and Unix. It is accessed through CFFI, which is a foreign function interface for Python calling C code. CFFI is supported for CPython 2.6+, 3.x and PyPy 2.0+. SoundFile represents audio data as NumPy arrays.",
"active": true,
"categories": [
"audio",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-build",
"py314-installer",
"py314-setuptools",
"py314-wheel",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"libsndfile",
"python314",
"py314-cffi"
]
},
{
"type": "run",
"ports": [
"py314-numpy"
]
},
{
"type": "test",
"ports": [
"py314-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-soundfile",
"py314-audiocraft"
]
},
{
"type": "run",
"ports": [
"py314-librosa"
]
}
]
},
{
"name": "py314-sox",
"portdir": "python/py-sox",
"version": "1.5.0",
"license": "BSD",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/rabitt/pysox",
"description": "Python wrapper around SoX.",
"long_description": "Python wrapper around SoX.",
"active": true,
"categories": [
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-wheel",
"clang-18",
"py314-build",
"py314-installer",
"py314-setuptools"
]
},
{
"type": "lib",
"ports": [
"python314"
]
},
{
"type": "run",
"ports": [
"sox",
"py314-numpy",
"py314-typing_extensions"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-sox"
]
}
]
},
{
"name": "py314-ratelim",
"portdir": "python/py-ratelim",
"version": "0.1.6",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/themiurgo/ratelim",
"description": "Makes it easy to respect rate limits.",
"long_description": "Makes it easy to respect rate limits.",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "ra1nb0w",
"github": "ra1nb0w",
"ports_count": 151
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-build",
"py314-setuptools",
"py314-wheel",
"clang-18",
"py314-installer"
]
},
{
"type": "lib",
"ports": [
"py314-decorator",
"python314"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py314-geocoder",
"py-ratelim"
]
}
]
},
{
"name": "py314-pyrxp",
"portdir": "python/py-pyrxp",
"version": "3.0.1",
"license": "BSD",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "https://pypi.python.org/pypi/pyRXP",
"description": "Fast validating XML parser for python",
"long_description": "Fast validating XML parser for python",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [
{
"name": "mcalhoun",
"github": "MarcusCalhoun-Lopez",
"ports_count": 1596
}
],
"variants": [
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py314-build",
"py314-installer",
"py314-setuptools",
"py314-wheel"
]
},
{
"type": "lib",
"ports": [
"python314"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-pyrxp"
]
}
]
},
{
"name": "py314-gym-notices",
"portdir": "python/py-gym-notices",
"version": "0.1.0",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/Farama-Foundation/gym-notices",
"description": "Notices for gym",
"long_description": "Notices for gym",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py314-build",
"py314-installer",
"py314-setuptools",
"py314-wheel"
]
},
{
"type": "lib",
"ports": [
"python314"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-gym-notices"
]
},
{
"type": "run",
"ports": [
"py314-gym"
]
}
]
},
{
"name": "py-gym-notices",
"portdir": "python/py-gym-notices",
"version": "0.1.0",
"license": "MIT",
"platforms": "any",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/Farama-Foundation/gym-notices",
"description": "Notices for gym",
"long_description": "Notices for gym",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py314-gym-notices"
]
}
],
"depends_on": []
},
{
"name": "py314-gym",
"portdir": "python/py-gym",
"version": "0.26.2",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/openai/gym",
"description": "The OpenAI Gym A toolkit for developing and comparing your reinforcement learning agents.",
"long_description": "The OpenAI Gym A toolkit for developing and comparing your reinforcement learning agents.",
"active": true,
"categories": [
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-wheel",
"clang-18",
"py314-build",
"py314-installer",
"py314-setuptools"
]
},
{
"type": "lib",
"ports": [
"python314"
]
},
{
"type": "run",
"ports": [
"py314-numpy",
"py314-cloudpickle",
"py314-gym-notices"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-gym"
]
}
]
},
{
"name": "py314-geocoder",
"portdir": "python/py-geocoder",
"version": "1.38.1",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/DenisCarriere/geocoder",
"description": "Simple and consistent geocoding library.",
"long_description": "Simple and consistent geocoding library.",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "ra1nb0w",
"github": "ra1nb0w",
"ports_count": 151
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py314-build",
"py314-installer",
"py314-setuptools",
"py314-wheel"
]
},
{
"type": "lib",
"ports": [
"python314",
"py314-ratelim",
"py314-six",
"py314-requests",
"py314-click",
"py314-future"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-geocoder"
]
}
]
},
{
"name": "py310-dm-sonnet",
"portdir": "python/py-dm-sonnet",
"version": "2.0.2",
"license": "Apache-2",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/deepmind/sonnet",
"description": "Sonnet is a library for building neural networks in TensorFlow.",
"long_description": "Sonnet is a library built on top of TensorFlow 2 designed to provide simple, composable abstractions for machine learning research.",
"active": false,
"categories": [
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py310-installer",
"clang-18",
"py310-setuptools",
"py310-wheel",
"py310-build"
]
},
{
"type": "lib",
"ports": [
"python310",
"py310-tensorflow"
]
},
{
"type": "test",
"ports": [
"py310-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-dm-sonnet"
]
}
]
},
{
"name": "py314-lxml_html_clean",
"portdir": "python/py-lxml_html_clean",
"version": "0.4.4",
"license": "BSD",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/fedora-python/lxml_html_clean/",
"description": "HTML cleaner is blocklist-based.",
"long_description": "HTML cleaner is blocklist-based. This project was initially a part of lxml, but many reports about possible security vulnerabilities were filed for lxml and that make the project problematic for security-sensitive environments. Therefore we decided to extract the problematic part to a separate project.",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "mps",
"github": "Schamschula",
"ports_count": 1401
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-build",
"py314-setuptools",
"py314-wheel",
"clang-18",
"py314-installer"
]
},
{
"type": "lib",
"ports": [
"py314-lxml",
"python314"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-lxml_html_clean",
"napari"
]
}
]
},
{
"name": "py314-virtualenv-clone",
"portdir": "python/py-virtualenv-clone",
"version": "0.5.7",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/edwardgeorge/virtualenv-clone/",
"description": "script to clone virtualenvs",
"long_description": "A script for cloning a non-relocatable virtualenv.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-wheel",
"py314-build",
"py314-installer",
"py314-setuptools",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py314-setuptools",
"python314"
]
},
{
"type": "run",
"ports": [
"virtualenv-clone_select"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py314-pew",
"py-virtualenv-clone"
]
}
]
},
{
"name": "py313-virtualenv-clone",
"portdir": "python/py-virtualenv-clone",
"version": "0.5.7",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/edwardgeorge/virtualenv-clone/",
"description": "script to clone virtualenvs",
"long_description": "A script for cloning a non-relocatable virtualenv.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py313-wheel",
"py313-build",
"py313-installer",
"py313-setuptools",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py313-setuptools",
"python313"
]
},
{
"type": "run",
"ports": [
"virtualenv-clone_select"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py313-pew"
]
}
]
},
{
"name": "py314-resumable-urlretrieve",
"portdir": "python/py-resumable-urlretrieve",
"version": "0.1.6",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/berdario/resumable-urlretrieve",
"description": "Small library to fetch files over HTTP and resuming their download",
"long_description": "Small library to fetch files over HTTP and resuming their download",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-setuptools",
"py314-wheel",
"clang-18",
"py314-build",
"py314-installer"
]
},
{
"type": "lib",
"ports": [
"python314",
"py314-requests"
]
},
{
"type": "test",
"ports": [
"py314-pytest",
"py314-rangehttpserver"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py314-pythonz",
"py-resumable-urlretrieve"
]
}
]
},
{
"name": "py313-resumable-urlretrieve",
"portdir": "python/py-resumable-urlretrieve",
"version": "0.1.6",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/berdario/resumable-urlretrieve",
"description": "Small library to fetch files over HTTP and resuming their download",
"long_description": "Small library to fetch files over HTTP and resuming their download",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py313-setuptools",
"py313-wheel",
"clang-18",
"py313-build",
"py313-installer"
]
},
{
"type": "lib",
"ports": [
"python313",
"py313-requests"
]
},
{
"type": "test",
"ports": [
"py313-pytest",
"py313-rangehttpserver"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py313-pythonz"
]
}
]
},
{
"name": "py312-resumable-urlretrieve",
"portdir": "python/py-resumable-urlretrieve",
"version": "0.1.6",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/berdario/resumable-urlretrieve",
"description": "Small library to fetch files over HTTP and resuming their download",
"long_description": "Small library to fetch files over HTTP and resuming their download",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-wheel",
"clang-18",
"py312-build",
"py312-installer",
"py312-setuptools"
]
},
{
"type": "lib",
"ports": [
"python312",
"py312-requests"
]
},
{
"type": "test",
"ports": [
"py312-pytest",
"py312-rangehttpserver"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-pythonz"
]
}
]
},
{
"name": "py311-resumable-urlretrieve",
"portdir": "python/py-resumable-urlretrieve",
"version": "0.1.6",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/berdario/resumable-urlretrieve",
"description": "Small library to fetch files over HTTP and resuming their download",
"long_description": "Small library to fetch files over HTTP and resuming their download",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py311-wheel",
"clang-18",
"py311-build",
"py311-installer",
"py311-setuptools"
]
},
{
"type": "lib",
"ports": [
"python311",
"py311-requests"
]
},
{
"type": "test",
"ports": [
"py311-pytest",
"py311-rangehttpserver"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py311-pythonz"
]
}
]
},
{
"name": "py310-resumable-urlretrieve",
"portdir": "python/py-resumable-urlretrieve",
"version": "0.1.6",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/berdario/resumable-urlretrieve",
"description": "Small library to fetch files over HTTP and resuming their download",
"long_description": "Small library to fetch files over HTTP and resuming their download",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py310-installer",
"clang-18",
"py310-setuptools",
"py310-wheel",
"py310-build"
]
},
{
"type": "lib",
"ports": [
"python310",
"py310-requests"
]
},
{
"type": "test",
"ports": [
"py310-pytest",
"py310-rangehttpserver"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py310-pythonz"
]
}
]
},
{
"name": "py314-rangehttpserver",
"portdir": "python/py-rangehttpserver",
"version": "1.2.0",
"license": "Apache-2",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/danvk/RangeHTTPServer",
"description": "SimpleHTTPServer with support for Range requests",
"long_description": "SimpleHTTPServer with support for Range requests",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-setuptools",
"py314-wheel",
"clang-18",
"py314-build",
"py314-installer"
]
},
{
"type": "lib",
"ports": [
"python314",
"py314-requests"
]
},
{
"type": "test",
"ports": [
"py314-pynose"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-rangehttpserver"
]
},
{
"type": "test",
"ports": [
"py314-resumable-urlretrieve"
]
}
]
},
{
"name": "py313-rangehttpserver",
"portdir": "python/py-rangehttpserver",
"version": "1.2.0",
"license": "Apache-2",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/danvk/RangeHTTPServer",
"description": "SimpleHTTPServer with support for Range requests",
"long_description": "SimpleHTTPServer with support for Range requests",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py313-setuptools",
"py313-wheel",
"clang-18",
"py313-build",
"py313-installer"
]
},
{
"type": "lib",
"ports": [
"python313",
"py313-requests"
]
},
{
"type": "test",
"ports": [
"py313-pynose"
]
}
],
"depends_on": [
{
"type": "test",
"ports": [
"py313-resumable-urlretrieve"
]
}
]
},
{
"name": "py312-rangehttpserver",
"portdir": "python/py-rangehttpserver",
"version": "1.2.0",
"license": "Apache-2",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/danvk/RangeHTTPServer",
"description": "SimpleHTTPServer with support for Range requests",
"long_description": "SimpleHTTPServer with support for Range requests",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-wheel",
"clang-18",
"py312-build",
"py312-installer",
"py312-setuptools"
]
},
{
"type": "lib",
"ports": [
"python312",
"py312-requests"
]
},
{
"type": "test",
"ports": [
"py312-pynose"
]
}
],
"depends_on": [
{
"type": "test",
"ports": [
"py312-resumable-urlretrieve"
]
}
]
},
{
"name": "py310-rangehttpserver",
"portdir": "python/py-rangehttpserver",
"version": "1.2.0",
"license": "Apache-2",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/danvk/RangeHTTPServer",
"description": "SimpleHTTPServer with support for Range requests",
"long_description": "SimpleHTTPServer with support for Range requests",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py310-installer",
"clang-18",
"py310-setuptools",
"py310-wheel",
"py310-build"
]
},
{
"type": "lib",
"ports": [
"python310",
"py310-requests"
]
},
{
"type": "test",
"ports": [
"py310-nose"
]
}
],
"depends_on": [
{
"type": "test",
"ports": [
"py310-resumable-urlretrieve"
]
}
]
},
{
"name": "py311-rangehttpserver",
"portdir": "python/py-rangehttpserver",
"version": "1.2.0",
"license": "Apache-2",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/danvk/RangeHTTPServer",
"description": "SimpleHTTPServer with support for Range requests",
"long_description": "SimpleHTTPServer with support for Range requests",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py311-wheel",
"clang-18",
"py311-build",
"py311-installer",
"py311-setuptools"
]
},
{
"type": "lib",
"ports": [
"python311",
"py311-requests"
]
},
{
"type": "test",
"ports": [
"py311-nose"
]
}
],
"depends_on": [
{
"type": "test",
"ports": [
"py311-resumable-urlretrieve"
]
}
]
},
{
"name": "py314-pythonz",
"portdir": "python/py-pythonz",
"version": "1.11.4",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/berdario/pythonz",
"description": "Python installation manager supporting CPython, Stackless, PyPy and Jython",
"long_description": "Python installation manager supporting CPython, Stackless, PyPy and Jython",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-wheel",
"py314-build",
"py314-installer",
"py314-setuptools",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py314-setuptools",
"py314-resumable-urlretrieve",
"python314"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py314-pew",
"py-pythonz"
]
}
]
},
{
"name": "py313-pythonz",
"portdir": "python/py-pythonz",
"version": "1.11.4",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/berdario/pythonz",
"description": "Python installation manager supporting CPython, Stackless, PyPy and Jython",
"long_description": "Python installation manager supporting CPython, Stackless, PyPy and Jython",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py313-wheel",
"py313-build",
"py313-installer",
"py313-setuptools",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py313-setuptools",
"py313-resumable-urlretrieve",
"python313"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py313-pew"
]
}
]
},
{
"name": "py312-pythonz",
"portdir": "python/py-pythonz",
"version": "1.11.4",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/berdario/pythonz",
"description": "Python installation manager supporting CPython, Stackless, PyPy and Jython",
"long_description": "Python installation manager supporting CPython, Stackless, PyPy and Jython",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"py312-build"
]
},
{
"type": "lib",
"ports": [
"py312-setuptools",
"py312-resumable-urlretrieve",
"python312"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-pew"
]
}
]
},
{
"name": "py311-pythonz",
"portdir": "python/py-pythonz",
"version": "1.11.4",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/berdario/pythonz",
"description": "Python installation manager supporting CPython, Stackless, PyPy and Jython",
"long_description": "Python installation manager supporting CPython, Stackless, PyPy and Jython",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py311-installer",
"py311-setuptools",
"py311-wheel",
"py311-build"
]
},
{
"type": "lib",
"ports": [
"py311-setuptools",
"py311-resumable-urlretrieve",
"python311"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py311-pew"
]
}
]
},
{
"name": "py310-pythonz",
"portdir": "python/py-pythonz",
"version": "1.11.4",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/berdario/pythonz",
"description": "Python installation manager supporting CPython, Stackless, PyPy and Jython",
"long_description": "Python installation manager supporting CPython, Stackless, PyPy and Jython",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "rubendibattista",
"github": "rdbisme",
"ports_count": 58
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py310-wheel",
"py310-build",
"py310-installer",
"py310-setuptools"
]
},
{
"type": "lib",
"ports": [
"py310-setuptools",
"py310-resumable-urlretrieve",
"python310"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py310-pew"
]
}
]
},
{
"name": "py314-pytest-sugar",
"portdir": "python/py-pytest-sugar",
"version": "1.1.1",
"license": "BSD",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "http://pivotfinland.com/pytest-sugar/",
"description": "py-pytest-sugar changes the default look and feel of pytest (progressbar, show tests that fail instantly).",
"long_description": "py-pytest-sugar changes the default look and feel of pytest (progressbar, show tests that fail instantly).",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-wheel",
"py314-build",
"py314-installer",
"py314-setuptools",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py314-termcolor",
"python314"
]
},
{
"type": "run",
"ports": [
"py314-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-pytest-sugar"
]
},
{
"type": "test",
"ports": [
"py314-typer"
]
}
]
},
{
"name": "xyzrender",
"portdir": "science/xyzrender",
"version": "0.2.6",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/aligfellow/xyzrender",
"description": "Publication-quality molecular graphics from the command line",
"long_description": "Publication-quality molecular graphics from the command line",
"active": true,
"categories": [
"science",
"python"
],
"maintainers": [
{
"name": "reneeotten",
"github": "reneeotten",
"ports_count": 2112
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py314-build",
"py314-installer",
"py314-setuptools",
"py314-wheel"
]
},
{
"type": "lib",
"ports": [
"py314-cclib",
"py314-graphrc",
"py314-xyzgraph",
"py314-ase",
"py314-resvg_py",
"python314",
"py314-numpy",
"py314-Pillow",
"py314-cairosvg",
"py314-ipykernel"
]
},
{
"type": "test",
"ports": [
"py314-pytest"
]
}
],
"depends_on": []
},
{
"name": "py314-xyzgraph",
"portdir": "python/py-xyzgraph",
"version": "1.6.9",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/aligfellow/xyzgraph",
"description": "Molecular Graph Construction from Cartesian Coordinates.",
"long_description": "Molecular Graph Construction from Cartesian Coordinates.",
"active": true,
"categories": [
"science",
"python"
],
"maintainers": [
{
"name": "reneeotten",
"github": "reneeotten",
"ports_count": 2112
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-build",
"py314-installer",
"py314-setuptools",
"py314-wheel",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python314",
"py314-numpy",
"py314-networkx",
"rdkit"
]
},
{
"type": "test",
"ports": [
"py314-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"xyzrender",
"py-xyzgraph",
"py314-graphrc"
]
}
]
},
{
"name": "py-xyzgraph",
"portdir": "python/py-xyzgraph",
"version": "1.6.9",
"license": "MIT",
"platforms": "any",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/aligfellow/xyzgraph",
"description": "Molecular Graph Construction from Cartesian Coordinates.",
"long_description": "Molecular Graph Construction from Cartesian Coordinates.",
"active": true,
"categories": [
"science",
"python"
],
"maintainers": [
{
"name": "reneeotten",
"github": "reneeotten",
"ports_count": 2112
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py314-xyzgraph"
]
}
],
"depends_on": []
},
{
"name": "py314-periodictable",
"portdir": "python/py-periodictable",
"version": "2.1.0",
"license": "public-domain",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/python-periodictable/periodictable",
"description": "Extensible periodic table of the elements",
"long_description": "Extensible periodic table of the elements",
"active": true,
"categories": [
"science",
"python"
],
"maintainers": [
{
"name": "reneeotten",
"github": "reneeotten",
"ports_count": 2112
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-installer",
"py314-setuptools",
"py314-wheel",
"clang-18",
"py314-build"
]
},
{
"type": "lib",
"ports": [
"python314",
"py314-parsing",
"py314-numpy"
]
},
{
"type": "test",
"ports": [
"py314-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-periodictable",
"py314-cclib"
]
}
]
},
{
"name": "py-periodictable",
"portdir": "python/py-periodictable",
"version": "2.1.0",
"license": "public-domain",
"platforms": "any",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/python-periodictable/periodictable",
"description": "Extensible periodic table of the elements",
"long_description": "Extensible periodic table of the elements",
"active": true,
"categories": [
"science",
"python"
],
"maintainers": [
{
"name": "reneeotten",
"github": "reneeotten",
"ports_count": 2112
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py314-periodictable"
]
}
],
"depends_on": []
},
{
"name": "py314-graphrc",
"portdir": "python/py-graphrc",
"version": "1.3.6",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/aligfellow/graphRC",
"description": "Internal Coordinate Analysis of Vibrational Modes.",
"long_description": "Internal Coordinate Analysis of Vibrational Modes.",
"active": true,
"categories": [
"science",
"python"
],
"maintainers": [
{
"name": "reneeotten",
"github": "reneeotten",
"ports_count": 2112
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-wheel",
"clang-18",
"py314-build",
"py314-installer",
"py314-setuptools"
]
},
{
"type": "lib",
"ports": [
"python314",
"py314-numpy",
"py314-networkx",
"py314-cclib",
"py314-xyzgraph"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"xyzrender",
"py-graphrc"
]
}
]
},
{
"name": "py-graphrc",
"portdir": "python/py-graphrc",
"version": "1.3.6",
"license": "MIT",
"platforms": "any",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/aligfellow/graphRC",
"description": "Internal Coordinate Analysis of Vibrational Modes.",
"long_description": "Internal Coordinate Analysis of Vibrational Modes.",
"active": true,
"categories": [
"science",
"python"
],
"maintainers": [
{
"name": "reneeotten",
"github": "reneeotten",
"ports_count": 2112
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py314-graphrc"
]
}
],
"depends_on": []
},
{
"name": "py314-cclib",
"portdir": "python/py-cclib",
"version": "1.8.1",
"license": "BSD",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://pypi.org/project/cclib",
"description": "parsers and algorithms for computational chemistry",
"long_description": "parsers and algorithms for computational chemistry",
"active": true,
"categories": [
"science",
"python"
],
"maintainers": [
{
"name": "reneeotten",
"github": "reneeotten",
"ports_count": 2112
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-versioningit",
"clang-18",
"py314-build",
"py314-installer",
"py314-setuptools",
"py314-wheel"
]
},
{
"type": "lib",
"ports": [
"py314-packaging",
"py314-numpy",
"py314-scipy",
"py314-periodictable",
"python314"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"xyzrender",
"py314-graphrc",
"py-cclib"
]
}
]
},
{
"name": "py-cclib",
"portdir": "python/py-cclib",
"version": "1.8.1",
"license": "BSD",
"platforms": "any",
"epoch": 0,
"replaced_by": null,
"homepage": "https://pypi.org/project/cclib",
"description": "parsers and algorithms for computational chemistry",
"long_description": "parsers and algorithms for computational chemistry",
"active": true,
"categories": [
"science",
"python"
],
"maintainers": [
{
"name": "reneeotten",
"github": "reneeotten",
"ports_count": 2112
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py314-cclib"
]
}
],
"depends_on": []
},
{
"name": "py314-nuitka",
"portdir": "python/py-nuitka",
"version": "4.0.7",
"license": "Apache-2",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "http://nuitka.net/",
"description": "Python compiler with full language support and CPython compatibility.",
"long_description": "Python compiler with full language support and CPython compatibility.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [
{
"name": "stromnov",
"github": "stromnov",
"ports_count": 2896
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py314-build",
"py314-setuptools",
"py314-wheel",
"clang-18",
"py314-installer"
]
},
{
"type": "lib",
"ports": [
"py314-zstd",
"python314"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-nuitka"
]
}
]
},
{
"name": "py314-numba",
"portdir": "python/py-numba",
"version": "0.65.0",
"license": "BSD",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "https://numba.pydata.org/",
"description": "Numba is a NumPy aware dynamic compiler for Python.",
"long_description": "Numba is an Open Source NumPy-aware optimizing compiler for Python. It uses the remarkable LLVM compiler infrastructure to compile Python syntax to machine code.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [
{
"name": "stromnov",
"github": "stromnov",
"ports_count": 2896
}
],
"variants": [
"openmp",
"tbb",
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"py314-wheel",
"py314-build",
"py314-installer",
"py314-setuptools",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py314-numpy",
"py314-llvmlite",
"python314"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-numba",
"py314-quantecon"
]
},
{
"type": "run",
"ports": [
"py314-segregation",
"py314-librosa"
]
}
]
},
{
"name": "llvm_select-22",
"portdir": "sysutils/llvm_select",
"version": "2",
"license": "BSD",
"platforms": "any",
"epoch": 0,
"replaced_by": null,
"homepage": "https://www.macports.org/",
"description": "common files for selecting default llvm version",
"long_description": "llvm_select installs files that allow 'port select' to switch the default version of llvm. It symlinks the standard llvm executables in the MacPorts prefix to the selected version.",
"active": true,
"categories": [
"sysutils"
],
"maintainers": [
{
"name": "jeremyhu",
"github": "jeremyhu",
"ports_count": 303
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18"
]
},
{
"type": "run",
"ports": [
"llvm_select"
]
}
],
"depends_on": [
{
"type": "run",
"ports": [
"llvm-22"
]
}
]
},
{
"name": "clang_select-22",
"portdir": "sysutils/clang_select",
"version": "2.5",
"license": "BSD",
"platforms": "any",
"epoch": 0,
"replaced_by": null,
"homepage": "https://www.macports.org/",
"description": "common files for selecting default clang version",
"long_description": "clang_select installs files that allow 'port select' to switch the default version of clang. It symlinks the standard compiler executables in the MacPorts prefix to the selected version.",
"active": true,
"categories": [
"sysutils"
],
"maintainers": [
{
"name": "jeremyhu",
"github": "jeremyhu",
"ports_count": 303
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18"
]
},
{
"type": "run",
"ports": [
"clang_select"
]
}
],
"depends_on": [
{
"type": "run",
"ports": [
"clang-22"
]
}
]
},
{
"name": "lldb-22",
"portdir": "lang/llvm-22",
"version": "22.1.4",
"license": "NCSA",
"platforms": "{darwin >= 18}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://lldb.llvm.org/",
"description": "the LLVM debugger",
"long_description": "lldb is the LLVM native debugger.",
"active": true,
"categories": [
"lang"
],
"maintainers": [],
"variants": [
"debug",
"tests",
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"py314-yaml",
"cctools",
"cmake",
"ninja",
"swig-python",
"doxygen",
"clang-17",
"python314",
"py314-pygments"
]
},
{
"type": "extract",
"ports": [
"xz"
]
},
{
"type": "lib",
"ports": [
"xar",
"zlib",
"libedit",
"libffi",
"ncurses",
"libcxx",
"python314",
"llvm-22",
"clang-22"
]
},
{
"type": "run",
"ports": [
"lldb_select-22"
]
}
],
"depends_on": []
},
{
"name": "flang-22",
"portdir": "lang/llvm-22",
"version": "22.1.4",
"license": "NCSA",
"platforms": "{darwin >= 21}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://flang.llvm.org/",
"description": "LLVM Fortran compiler",
"long_description": "LLVM Fortran compiler",
"active": true,
"categories": [
"lang"
],
"maintainers": [],
"variants": [
"debug",
"tests"
],
"dependencies": [
{
"type": "build",
"ports": [
"cctools",
"py314-yaml",
"py314-pygments",
"python314",
"clang-17",
"ninja",
"cmake"
]
},
{
"type": "extract",
"ports": [
"xz"
]
},
{
"type": "lib",
"ports": [
"ld64",
"clang-22",
"mlir-22",
"llvm-22",
"libxml2",
"libomp",
"libcxx"
]
}
],
"depends_on": []
},
{
"name": "clang-22",
"portdir": "lang/llvm-22",
"version": "22.1.4",
"license": "NCSA",
"platforms": "{darwin >= 19}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://clang.llvm.org/",
"description": "C, C++, Objective C and Objective C++ compiler",
"long_description": "The Clang project provides a language front-end and tooling infrastructure for languages in the C language family (C, C++, Objective C/C++, OpenCL, CUDA, and RenderScript) for the LLVM project.",
"active": true,
"categories": [
"lang"
],
"maintainers": [],
"variants": [
"debug",
"tests",
"analyzer",
"libstdcxx",
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"py314-pygments",
"cctools",
"cmake",
"ninja",
"clang-17",
"python314",
"py314-yaml"
]
},
{
"type": "extract",
"ports": [
"xz"
]
},
{
"type": "lib",
"ports": [
"ld64",
"libcxx",
"libomp",
"libxml2",
"llvm-22"
]
},
{
"type": "run",
"ports": [
"clang_select-22",
"perl5",
"cctools"
]
}
],
"depends_on": [
{
"type": "build",
"ports": [
"just-fast",
"basix",
"caps-log",
"icey",
"kakoune",
"libheif",
"libmcfp",
"dssp",
"libcifpp",
"numkong",
"rdkit",
"appstream",
"vte",
"nghttp2-tools",
"angle",
"poppler",
"poppler-qt5",
"openal-soft",
"step-writer",
"rsgain",
"qt6-qtwebengine",
"qt6-qtwebengine-docs",
"iaito",
"qt610-qtwebengine",
"qt610-qtwebengine-docs",
"qt67-qtwebengine",
"qt67-qtwebengine-docs",
"qt68-qtwebengine",
"qt68-qtwebengine-docs",
"ncmpcpp",
"mpd",
"mysql8",
"qt69-qtwebengine",
"mapnik",
"darktable-devel",
"qt69-qtwebengine-docs",
"cdo",
"rspamd",
"inkscape",
"libclc-22",
"vislcg3",
"gn",
"oxen-logging",
"TermME",
"notekit",
"tapkee",
"oxenc",
"nodejs24"
]
},
{
"type": "lib",
"ports": [
"include-what-you-use",
"flang-22",
"lldb-22"
]
}
]
},
{
"name": "mlir-22",
"portdir": "lang/llvm-22",
"version": "22.1.4",
"license": "NCSA",
"platforms": "{darwin >= 16}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://mlir.llvm.org",
"description": "The MLIR project is a novel approach to building reusable and extensible compiler infrastructure.",
"long_description": "The MLIR project is a novel approach to building reusable and extensible compiler infrastructure. MLIR aims to address software fragmentation, improve compilation for heterogeneous hardware, significantly reduce the cost of building domain specific compilers, and aid in connecting existing compilers together.",
"active": true,
"categories": [
"lang"
],
"maintainers": [],
"variants": [
"debug",
"tests",
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"py314-yaml",
"clang-17",
"python314",
"py314-pygments",
"cctools",
"cmake",
"ninja"
]
},
{
"type": "extract",
"ports": [
"xz"
]
},
{
"type": "lib",
"ports": [
"llvm-22",
"libcxx"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"flang-22"
]
}
]
}
]
}