Port details |
- py-moderngl ModernGL: High performance rendering for Python 3
- 5.11.1 graphics =2 5.10.0Version of this port present on the latest quarterly branch.
- Maintainer: yuri@FreeBSD.org
- Port Added: 2023-01-20 21:09:09
- Last Update: 2024-08-14 09:43:45
- Commit Hash: 06cdfcf
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
- License: MIT
- WWW:
- https://moderngl.readthedocs.io/en/latest/
- Description:
- ModernGL is a python wrapper over OpenGL 3.3+ core that simplifies the creation
of simple graphics applications like scientific simulations, games or user
interfaces. Usually, acquiring in-depth knowledge of OpenGL requires a steep
learning curve. In contrast, ModernGL is easy to learn and use, moreover it is
capable of rendering with high performance and quality, with less code written.
The majority of the moderngl code base is also written in C++ for high
performance.
- ¦ ¦ ¦ ¦
- 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}moderngl>0:graphics/py-moderngl@${PY_FLAVOR}
- To install the port:
- cd /usr/ports/graphics/py-moderngl/ && make install clean
- To add the package, run one of these commands:
- pkg install graphics/py-moderngl
- pkg install py311-moderngl
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-moderngl listed in the above command, you can pick from the names under the Packages section.- PKGNAME: py311-moderngl
- Package flavors (<flavor>: <package>)
- distinfo:
- TIMESTAMP = 1723606572
SHA256 (moderngl-moderngl-5.11.1_GH0.tar.gz) = 0738ce38d66889529ced9d83f70a099d4dc0021a961083f90048e5884fe3d3b9
SIZE (moderngl-moderngl-5.11.1_GH0.tar.gz) = 1679561
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- py311-setuptools>0 : devel/py-setuptools@py311
- py311-wheel>0 : devel/py-wheel@py311
- python3.11 : lang/python311
- py311-build>=0 : devel/py-build@py311
- py311-installer>=0 : devel/py-installer@py311
- Test dependencies:
-
- py311-numpy>=1.16,1<1.27,1 : math/py-numpy@py311
- py311-scipy>=1.2.1 : science/py-scipy@py311
- py311-pytest>=7,1 : devel/py-pytest@py311
- python3.11 : lang/python311
- Runtime dependencies:
-
- py311-glcontext>=3.0.0 : graphics/py-glcontext@py311
- python3.11 : lang/python311
- This port is required by:
- for Run
-
- graphics/py-moderngl-window
Configuration Options:
- No options to configure
- Options name:
- graphics_py-moderngl
- USES:
- python
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Number of commits found: 10
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
5.11.1 14 Aug 2024 09:43:45 |
Yuri Victorovich (yuri) |
graphics/py-moderngl: update 5.10.0 → 5.11.1
Reported by: portscout |
5.10.0 09 Mar 2024 07:34:06 |
Yuri Victorovich (yuri) |
graphics/py-moderngl: update 5.9.0 → 5.10.0
Reported by: portscout |
5.9.0 20 Jan 2024 05:20:53 |
Yuri Victorovich (yuri) |
graphics/py-moderngl: update 5.8.2 → 5.9.0
Reported by: portscout |
5.8.2 25 Jun 2023 18:29:34 |
Yuri Victorovich (yuri) |
graphics/py-moderngl: Update 5.8.1 → 5.8.2
Reported by: portscout |
5.8.1_1 04 Apr 2023 18:29:11 |
Antoine Brodin (antoine) |
USE_PYTHON=pep517: bump PORTREVISION |
5.8.1 29 Mar 2023 13:59:27 |
Charlie Li (vishwin) |
graphics/py-moderngl: explicitly add setuptools to BUILD_DEPENDS
PR: 270243 |
5.8.1 27 Feb 2023 20:28:01 |
Yuri Victorovich (yuri) |
graphics/py-moderngl: Update 5.7.4 → 5.8.1
Reported by: portscout |
5.7.4 05 Feb 2023 19:05:02 |
Charlie Li (vishwin) |
Revert "Mk/Uses/python.mk: Fix USE_PYTHON=pep517: always compile and install
bytecode"
Despite installer's default behaviour to compile and install bytecode,
we are not doing so going forward at stage/package time. [0] During
initial development and qualification of PEP-517 framework support,
compiling and installing bytecode at stage/package time was considered,
but was found problematic, fragile and ultimately unreliable, both
currently and historically (with USE_PYTHON=distutils), due to our
fixed plist requirement. While the living binary distribution format
(wheel) specification [1] says to compile bytecode, that is in the
pure Python package management context (pip, etc); nuance always
exists when interacting with "system" package management.
Additionally, "bytecode is an implementation detail of the CPython
interpreter. No guarantees are made that bytecode will not be added, (Only the first 15 lines of the commit message are shown above ) |
5.7.4_1 05 Feb 2023 18:16:47 |
Po-Chuan Hsieh (sunpoet) |
Mk/Uses/python.mk: Fix USE_PYTHON=pep517: always compile and install bytecode
- While I'm here, use long options for easier reading [1][2]
- Bump PORTREVISION of dependent ports (USE_PYTHON=pep517) for package change
It fixes build_fs_violation of dependent ports in poudriere (with -t flag).
It is also the default behavior of installer [2].
from py-sphinx log:
=>> Checking for staging violations... done
=>> Error: Filesystem touched during stage (files must install to ${STAGEDIR}):
extra: usr/local/lib/python3.9/site-packages/importlib_metadata/__pycache__
=>> Cleaning up wrkdir
from installer documentation:
--compile-bytecode
Possible choices: 0, 1, 2
generate bytecode for the specified optimization level(s) (default=0, 1)
--no-compile-bytecode
don’t generate bytecode for installed modules
Default: False
With hat: python
Reference: https://pypa-build.readthedocs.io/en/stable/ [1]
https://installer.pypa.io/en/stable/cli/installer/ [2] |
5.7.4 20 Jan 2023 21:06:47 |
Yuri Victorovich (yuri) |
graphics/py-moderngl: New port: ModernGL: High performance rendering for Python
3 |
Number of commits found: 10
|