Skip to content

Commit

Permalink
Merge pull request #195 from boberfly/usdGenSchema
Browse files Browse the repository at this point in the history
USD: Support for usdGenSchema
  • Loading branch information
johnhaddon authored Mar 25, 2024
2 parents 0dc953c + d9a48f1 commit 59246a1
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Changes.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
8.0.0 alpha x (relative to 8.0.0 alpha 9)
-------------


- Jinja2 : Added version 3.1.3.
- MarkupSafe : Added version 2.1.5.
- USD : Added `usdGenSchema`.

8.0.0 alpha 9 (relative to 8.0.0 alpha 8)
-------------
Expand Down
30 changes: 30 additions & 0 deletions Jinja2/config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{

"downloads" : [

"https://files.pythonhosted.org/packages/b2/5e/3a21abf3cd467d7876045335e681d276ac32492febe6d98ad89562d1a7e1/Jinja2-3.1.3.tar.gz"

],

"url" : "https://palletsprojects.com/p/jinja/",

"license" : "LICENSE.rst",

"dependencies" : [ "Python", "MarkupSafe" ],

"environment" : {

"PATH" : "{buildDir}/bin:$PATH",
"DYLD_FRAMEWORK_PATH" : "{buildDir}/lib",
"LD_LIBRARY_PATH" : "{buildDir}/lib",
"PYTHONPATH" : "{buildDir}/python"

},

"commands" : [

"{buildDir}/bin/python setup.py install --root / --prefix {buildDir}",

],

}
30 changes: 30 additions & 0 deletions MarkupSafe/config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{

"downloads" : [

"https://files.pythonhosted.org/packages/87/5b/aae44c6655f3801e81aa3eef09dbbf012431987ba564d7231722f68df02d/MarkupSafe-2.1.5.tar.gz"

],

"url" : "https://palletsprojects.com/p/markupsafe/",

"license" : "LICENSE.rst",

"dependencies" : [ "Python" ],

"environment" : {

"PATH" : "{buildDir}/bin:$PATH",
"DYLD_FRAMEWORK_PATH" : "{buildDir}/lib",
"LD_LIBRARY_PATH" : "{buildDir}/lib",
"PYTHONPATH" : "{buildDir}/python"

},

"commands" : [

"{buildDir}/bin/python setup.py install --root / --prefix {buildDir}",

],

}
2 changes: 1 addition & 1 deletion USD/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

"license" : "LICENSE.txt",

"dependencies" : [ "Boost", "Python", "OpenImageIO", "TBB", "Alembic", "OpenSubdiv", "OpenVDB", "PyOpenGL", "GLEW", "PySide", "Embree", "MaterialX" ],
"dependencies" : [ "Boost", "Python", "OpenImageIO", "TBB", "Alembic", "OpenSubdiv", "OpenVDB", "PyOpenGL", "GLEW", "PySide", "Embree", "MaterialX", "Jinja2" ],

"environment" : {

Expand Down

0 comments on commit 59246a1

Please sign in to comment.