-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e3a7bc
commit db670cd
Showing
45 changed files
with
491 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
name = "Jinja2" | ||
version = "3.1.5" | ||
|
||
requires = ["python"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name = "MarkupSafe" | ||
version = "2.1.1" | ||
|
||
requires = ["python"] | ||
variants = [ | ||
["platform-windows", "arch-AMD64", "python-3.7"], | ||
["platform-windows", "arch-AMD64", "python-3.9"], | ||
] | ||
|
||
build_command = """ | ||
python -m pip install --prefix {install_path} | ||
""" | ||
|
||
def commands(): | ||
env.PYTHONPATH.prepend("{root}/python") |
14 changes: 14 additions & 0 deletions
14
MarkupSafe/2.1.1/platform-windows/arch-AMD64/python-3.7/package.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name = "MarkupSafe" | ||
version = "2.1.1" | ||
|
||
requires = ["python"] | ||
variants = [ | ||
["platform-windows", "arch-AMD64", "python-3.7"], | ||
] | ||
|
||
build_command = """ | ||
python -m pip install --prefix {install_path} | ||
""" | ||
|
||
def commands(): | ||
env.PYTHONPATH.prepend("{root}/python") |
15 changes: 15 additions & 0 deletions
15
MarkupSafe/2.1.1/platform-windows/arch-AMD64/python-3.9/package.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name = "MarkupSafe" | ||
version = "2.1.1" | ||
|
||
requires = ["python"] | ||
variants = [ | ||
["platform-windows", "arch-AMD64", "python-3.9"], | ||
] | ||
|
||
build_command = """ | ||
python -m pip install --prefix {install_path} | ||
""" | ||
|
||
def commands(): | ||
env.PYTHONPATH.prepend("{root}/python") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name = "gif" | ||
version = "5.2.1" | ||
|
||
build_requires = ["cmake", "vs"] | ||
|
||
variants = [["platform-windows", "arch-AMD64"]] | ||
|
||
|
||
def commands(): | ||
env.GIF_ROOT = "{root}" | ||
env.GIF_DIR = "{root}" | ||
env.PATH.prepend("{root}") | ||
|
||
build_system = "cmake" | ||
|
||
def pre_cook(): | ||
fetch_repository("https://gitlab.com/anderslanglands/giflib.git") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
name = "glew" | ||
version = "2.1.0" | ||
|
||
variants = [["platform-windows", "arch-AMD64"], ["platform-linux", "arch-x86_64"]] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name = "glew" | ||
version = "2.1.0" | ||
|
||
build_requires = ["vs", "cmake"] | ||
|
||
variants = [["platform-windows", "arch-AMD64"]] | ||
|
||
|
||
def commands(): | ||
env.GLEW_ROOT = "{root}" | ||
env.CMAKE_PREFIX_PATH.prepend("{root}") | ||
env.PATH.prepend("{root}/bin") | ||
|
||
|
||
build_command = """ | ||
cd {root}/build | ||
mkdir build && cd build | ||
cmake ../cmake -GNinja -DCMAKE_INSTALL_PREFIX={install_path} -DCMAKE_BUILD_TYPE=Release && ninja install | ||
""" | ||
|
||
|
||
def pre_cook(): | ||
download_and_unpack(f"https://github.com/nigels-com/glew/releases/download/glew-{version}/glew-{version}.zip") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name = "jpegturbo" | ||
version = "2.0.6" | ||
|
||
build_requires = ["cmake", "vs"] | ||
|
||
variants = [["platform-windows", "arch-AMD64"]] | ||
|
||
|
||
def commands(): | ||
env.PATH.prepend("{root}/bin") | ||
env.JPEGTurbo_ROOT = "{root}" | ||
env.PKG_CONFIG_PATH.prepend("{root}/lib/pkgconfig") | ||
|
||
|
||
def pre_cook(): | ||
import os | ||
|
||
archive = f"{version}.tar.gz" | ||
download_and_unpack( | ||
f"https://github.com/libjpeg-turbo/libjpeg-turbo/archive/refs/tags/{archive}" | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
openimageio/2.3.16.0/platform-windows/arch-AMD64/package.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name = "openimageio" | ||
version = "2.3.16.0" | ||
|
||
requires = [ | ||
"boost-1.70", | ||
"openexr-3.0+<3.2", | ||
"opencolorio-2.0+<2.2", | ||
"tiff-4.3", | ||
"openjpeg-2.4", | ||
"jpegturbo-2.0", | ||
"png-1.6", | ||
"raw-0.21", | ||
"pugixml-1.11", | ||
"pybind11-2.8", | ||
"webp-1.1", | ||
"zlib-1.2", | ||
"ptex-2.4", | ||
"gif-5.2.1", | ||
] | ||
|
||
build_requires = ["cmake", "vs"] | ||
|
||
variants = [["platform-windows", "arch-AMD64"]] | ||
|
||
|
||
def commands(): | ||
env.OpenImageIO_ROOT = "{root}" | ||
env.OPENIMAGEIO_HOME = "{root}" | ||
env.OPENIMAGEIO_DIR = "{root}" | ||
env.OPENIMAGEIO_LOCATION = "{root}" | ||
env.CMAKE_PREFIX_PATH.append("{root}") | ||
env.PATH.prepend("{root}/bin") | ||
|
||
|
||
build_system = "cmake" | ||
# cmake_build_system = "ninja" | ||
child_build_args = ["-DBUILD_DOCS=OFF", "-DOIIO_BUILD_TESTS=OFF"] | ||
|
||
|
||
def pre_cook(): | ||
archive = f"v{version}.tar.gz" | ||
download_and_unpack(f"https://github.com/OpenImageIO/oiio/archive/refs/tags/{archive}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.