Skip to content

Commit

Permalink
Merge pull request #235 from johnhaddon/partio
Browse files Browse the repository at this point in the history
7.0.0a2 release prep
  • Loading branch information
ericmehl authored May 10, 2023
2 parents 53849b2 + 23a0b1c commit 31094e2
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 5 deletions.
7 changes: 6 additions & 1 deletion Changes.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
7.x.x (relative to 7.0.0a1)
7.x.x (relative to 7.0.0a2)
-----

7.0.0a2 (relative to 7.0.0a1)
-------

- Cortex : Updated to commit 5c491aa.
- OpenImageIO : Updated to version 2.4.11.0.
- Partio : Added version 1.14.6.

7.0.0a1 (relative to 6.0.0)
-------
Expand Down
3 changes: 1 addition & 2 deletions Cortex/config.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{

"downloads" : [

"https://github.com/ImageEngine/cortex/archive/a117338.tar.gz"
"https://github.com/ImageEngine/cortex/archive/5c491aa.tar.gz"

],

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

"license" : "LICENSE.md",

"dependencies" : [ "OpenImageIO", "LLVM", "PugiXML", "Python" ],
"dependencies" : [ "OpenImageIO", "LLVM", "PugiXML", "Python", "Partio" ],

"environment" : {

Expand Down
34 changes: 34 additions & 0 deletions Partio/config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{

"downloads" : [

"https://github.com/wdas/partio/archive/refs/tags/v1.14.6.tar.gz",

],

"url" : "http://partio.us",

"license" : "LICENSE",

"dependencies" : [ "ZLib" ],

"commands" : [

"mkdir build",
"cd build && cmake"
" -D CMAKE_CXX_STANDARD={c++Standard}"
" -D CMAKE_INSTALL_PREFIX={buildDir}"
" -D CMAKE_INSTALL_LIBDIR={buildDir}/lib"
" ..",

"cd build && make clean && make VERBOSE=1 -j {jobs} && make install",

],

"manifest" : [

"lib/libpartio{sharedLibraryExtension}*",

],

}
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import tarfile
import zipfile

__version = "7.0.0a1"
__version = "7.0.0a2"

"""
Config file format
Expand Down

0 comments on commit 31094e2

Please sign in to comment.