Skip to content

Commit

Permalink
added more plugins for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
jodogne committed Nov 22, 2023
1 parent f46dc98 commit 583b3ef
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 9 deletions.
3 changes: 2 additions & 1 deletion UCLouvain/CreateMacOSPackage.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ def DownloadFile(archive, url, targetPath = None, isExecutable = False):
matrix = json.loads(f.read())


with zipfile.ZipFile(TARGET, 'w') as archive:
with zipfile.ZipFile(TARGET, 'w', compression = zipfile.ZIP_DEFLATED,
compresslevel = 9) as archive:
AddFile(archive, 'orthancBuildResources/readmeOSX.txt', 'readme.txt')
AddFile(archive, 'orthancBuildResources/configOSX.json')
AddFile(archive, 'orthancBuildResources/startOrthanc.command', isExecutable = True)
Expand Down
58 changes: 50 additions & 8 deletions build-matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,18 @@
["Orthanc 1.12.1 - VC2008-32 Release/OrthancRecoverCompressedFile.exe", "Tools", "Comment: # CHANGE_VERSION_ORTHANC"]
]
}
],
"downloadsOSX" : [
{
"url" : "https://orthanc.uclouvain.be/downloads/macos/orthanc/${VERSION}/Orthanc",
"executable" : true
},
"https://orthanc.uclouvain.be/downloads/macos/orthanc/${VERSION}/ConnectivityChecks.dylib",
"https://orthanc.uclouvain.be/downloads/macos/orthanc/${VERSION}/DelayedDeletion.dylib",
"https://orthanc.uclouvain.be/downloads/macos/orthanc/${VERSION}/Housekeeper.dylib",
"https://orthanc.uclouvain.be/downloads/macos/orthanc/${VERSION}/ModalityWorklists.dylib",
"https://orthanc.uclouvain.be/downloads/macos/orthanc/${VERSION}/MultitenantDicom.dylib",
"https://orthanc.uclouvain.be/downloads/macos/orthanc/${VERSION}/ServeFolders.dylib"
]
},
{
Expand Down Expand Up @@ -184,7 +196,11 @@
"Resources": [
["postgresql.json", "Configuration"]
]
}]
}],
"downloadsOSX" : [
"https://orthanc.uclouvain.be/downloads/macos/orthanc-postgresql/OrthancPostgreSQLIndex-${VERSION}.dylib",
"https://orthanc.uclouvain.be/downloads/macos/orthanc-postgresql/OrthancPostgreSQLStorage-${VERSION}.dylib"
]
},
{
"name": "Orthanc-mysql",
Expand Down Expand Up @@ -214,7 +230,11 @@
"Resources": [
["mysql.json", "Configuration"]
]
}]
}],
"downloadsOSX" : [
"https://orthanc.uclouvain.be/downloads/macos/orthanc-mysql/OrthancMySQLIndex-${VERSION}.dylib",
"https://orthanc.uclouvain.be/downloads/macos/orthanc-mysql/OrthancMySQLStorage-${VERSION}.dylib"
]
},
{
"name": "Orthanc-odbc",
Expand Down Expand Up @@ -243,7 +263,11 @@
"Resources": [
["odbc.json", "Configuration"]
]
}]
}],
"downloadsOSX" : [
"https://orthanc.uclouvain.be/downloads/macos/orthanc-odbc/OrthancOdbcIndex-${VERSION}.dylib",
"https://orthanc.uclouvain.be/downloads/macos/orthanc-odbc/OrthancOdbcStorage-${VERSION}.dylib"
]
},
{
"name": "Orthanc-transfers",
Expand All @@ -269,7 +293,10 @@
"Resources": [
["transfers.json", "Configuration"]
]
}]
}],
"downloadsOSX" : [
"https://orthanc.uclouvain.be/downloads/macos/orthanc-transfers/OrthancTransfers-${VERSION}.dylib"
]
},
{
"name": "Orthanc-indexer",
Expand Down Expand Up @@ -477,7 +504,10 @@
"Resources": [
["stone-webviewer.json", "Configuration"]
]
}]
}],
"downloadsOSX" : [
"https://orthanc.uclouvain.be/downloads/macos/stone-web-viewer/StoneWebViewer-${VERSION}.dylib"
]
},
{
"name": "Orthanc-dicomweb",
Expand Down Expand Up @@ -505,7 +535,10 @@
"Resources": [
["dicomweb.json", "Configuration"]
]
}]
}],
"downloadsOSX" : [
"https://orthanc.uclouvain.be/downloads/macos/orthanc-dicomweb/OrthancDicomWeb-${VERSION}.dylib"
]
},
{
"name": "Orthanc-gdcm",
Expand All @@ -529,7 +562,10 @@
"Artifacts32": [
["Gdcm 1.5 - VC2015-32 Release/OrthancGdcm.dll", "Plugins", "Comment: # CHANGE_VERSION_GDCM"]
]
}]
}],
"downloadsOSX" : [
"https://orthanc.uclouvain.be/downloads/macos/orthanc-gdcm/OrthancGdcm-${VERSION}.dylib"
]
},
{
"name": "Orthanc-wsi",
Expand Down Expand Up @@ -614,6 +650,9 @@
["https://www.orthanc-server.com/downloads/third-party/WSI/openslide-20160717/win32/zlib1.dll", "Tools"]
]
}
],
"downloadsOSX" : [
"https://orthanc.uclouvain.be/downloads/macos/orthanc-wsi/OrthancWSI-${VERSION}.dylib"
]
},
{
Expand All @@ -637,7 +676,10 @@
"Artifacts32": [
["WebViewer 2.8 - VC2008-32 Release/OrthancWebViewer.dll", "Plugins", "Comment: # CHANGE_VERSION_ORTHANC_WEB_VIEWER"]
]
}]
}],
"downloadsOSX" : [
"https://orthanc.uclouvain.be/downloads/macos/orthanc-webviewer/OrthancWebViewer-${VERSION}.dylib"
]
},
{
"name": "Orthanc-auth",
Expand Down

0 comments on commit 583b3ef

Please sign in to comment.