Skip to content
Snippets Groups Projects
Commit 06ad4634 authored by juergen's avatar juergen
Browse files

updating archiving script on windows, excluding more files which are unnecessary;README is now html

git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2452 5a81b35b-ba03-0410-adc8-b2c5c5119f08
parent 6742f9b1
No related branches found
No related tags found
No related merge requests found
------------------------------------------------------------------------------ <?xml version="1.0" encoding="UTF-8"?>
This file is part of the OpenStructure project <www.openstructure.org> <!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
Copyright (C) 2008-2010 by the OpenStructure authors "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
This library is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the Free <head>
Software Foundation; either version 3.0 of the License, or (at your option) <title>Protein Model Portal - PSI SGKB</title>
any later version. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
This library is distributed in the hope that it will be useful, but WITHOUT <meta name="robots" content="noarchive" />
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS <meta http-equiv="Content-Style-Type" content="text/css" />
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more <link rel="icon" href="share/favicon.ico" type="image/x-icon" />
details. <link rel="author" title="The OpenStructure Team" href="?pid=contact" />
</head>
You should have received a copy of the GNU Lesser General Public License <body>
along with this library; if not, write to the Free Software Foundation, Inc., <p style="color:gray">
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
------------------------------------------------------------------------------ -----------------------------README----------------------------------------<br/>
This file is part of the OpenStructure project <www.openstructure.org><br/>
<br/>
=========================README========================= Copyright (C) 2008-2010 by the OpenStructure authors<br/>
<br/>
Thank you for using OpenStructure! This library is free software; you can redistribute it and/or modify it under<br/>
the terms of the GNU Lesser General Public License as published by the Free<br/>
This is the current Version of OpenStructure as of June 2010. Software Foundation; either version 3.0 of the License, or (at your option)<br/>
Version: 1.0.0a rev 2442 any later version.<br/>
This library is distributed in the hope that it will be useful, but WITHOUT<br/>
This is a major release containig many bugfixes and improvements considering rendering, GUI and further ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS<br/>
functionality. FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more<br/>
details.<br/>
For feedback or suggestions please contact us at www.openstructure.org! <br/>
You should have received a copy of the GNU Lesser General Public License<br/>
along with this library; if not, write to the Free Software Foundation, Inc.,<br/>
The OpenStructure Authors 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA<br/>
\ No newline at end of file ------------------------------------------------------------------------------<br/>
</p>
<br/>
Thank you for using OpenStructure!<br/>
<br/>
This is the current Version of OpenStructure as of June 2010.<br/>
Version: 1.0.0a rev 2442<br/>
<br/>
This is a major release containig many bugfixes and improvements considering rendering, GUI and further <br/>
functionality.<br/>
<br/>
For feedback or suggestions please contact us at <a href="http://www.openstructure.org">www.openstructure.org!</a><br/>
<br/>
<br/>
The OpenStructure Authors<br/>
</body>
\ No newline at end of file
@ECHO OFF @ECHO OFF
REM create a zip archive for deployment on windows REM create a zip archive for deployment on windows
REM no regisrty entries REM no registry entries
REM no PATHs will be changed except in the DNG session REM no PATHs will be changed except in the DNG session
set inst_dir=openstructure1.0.0a1_2381 REM
REM Author Juergen Haas
REM
set inst_dir=openstructure1.0.0a1_2451
set archive_name=OpenStructureWin32 set archive_name=OpenStructureWin32
if exist "%inst_dir%" rmdir /S /Q "%inst_dir%" if exist "%inst_dir%" rmdir /S /Q "%inst_dir%"
if exist %archive_name%.zip del %archive_name%.zip*.* if exist %archive_name%.zip del %archive_name%.zip*.*
...@@ -10,14 +13,16 @@ REM dir /S %inst_dir% ...@@ -10,14 +13,16 @@ REM dir /S %inst_dir%
mkdir "%inst_dir%\share\openstructure\examples" mkdir "%inst_dir%\share\openstructure\examples"
mkdir "%inst_dir%\lib\site-packages" mkdir "%inst_dir%\lib\site-packages"
mkdir "%inst_dir%\bin" mkdir "%inst_dir%\bin"
xcopy /E /I ..\..\examples "%inst_dir%\share\openstructure\examples" xcopy /E /I /Y /EXCLUDE:exclude_file_types ..\..\examples "%inst_dir%\share\openstructure\examples"
xcopy /E /I ..\..\stage\share "%inst_dir%\share\" xcopy /E /I /Y /EXCLUDE:exclude_file_types ..\..\stage\share "%inst_dir%\share\"
REM xcopy /E /I ..\..\website\html "%inst_dir%\share\doc" REM xcopy /E /I ..\..\website\html "%inst_dir%\share\doc"
copy d:\programs\bin\python.exe "%inst_dir%\bin" copy d:\programs\bin\python.exe "%inst_dir%\bin"
copy ..\README.html "%inst_dir%"
xcopy /E /I /EXCLUDE:excludes d:\programs\lib "%inst_dir%\lib" copy ..\..\graphics\favicon.ico "%inst_dir%\share"
xcopy /E /I ..\..\stage\lib "%inst_dir%\lib" copy dng.bat "%inst_dir%"
xcopy /E /I /EXCLUDE:excludes ..\..\stage\bin "%inst_dir%\bin" xcopy /E /I /Y /EXCLUDE:excludes+exclude_file_types d:\programs\lib "%inst_dir%\lib"
xcopy /E /I /Y /EXCLUDE:excludes+exclude_file_types ..\..\stage\lib "%inst_dir%\lib"
xcopy /E /I /Y /EXCLUDE:excludes+exclude_file_types ..\..\stage\bin "%inst_dir%\bin"
set PATH="c:\Program Files (x86)"\7-Zip\;%PATH% set PATH="c:\Program Files (x86)"\7-Zip\;%PATH%
REM 7z a -r -t7z %archive_name% "%inst_dir%" > log REM 7z a -r -t7z %archive_name% "%inst_dir%" > log
REM if exist %archive_name%.7z copy /b 7zS.sfx + config.txt + %archive_name%.7z %archive_name%.exe REM if exist %archive_name%.7z copy /b 7zS.sfx + config.txt + %archive_name%.7z %archive_name%.exe
......
@ECHO OFF @ECHO OFF
REM create a zip archive for deployment on windows REM create a zip archive for deployment on windows
REM no regisrty entries REM no registry entries
REM no PATHs will be changed except in the DNG session REM no PATHs will be changed except in the DNG session
REM
REM Author Juergen Haas
REM
set inst_dir=openstructure@OST_VERSION@ set inst_dir=openstructure@OST_VERSION@
set archive_name=OpenStructureWin32 set archive_name=OpenStructureWin32
if exist "%inst_dir%" rmdir /S /Q "%inst_dir%" if exist "%inst_dir%" rmdir /S /Q "%inst_dir%"
...@@ -10,16 +13,16 @@ REM dir /S %inst_dir% ...@@ -10,16 +13,16 @@ REM dir /S %inst_dir%
mkdir "%inst_dir%\share\openstructure\examples" mkdir "%inst_dir%\share\openstructure\examples"
mkdir "%inst_dir%\lib\site-packages" mkdir "%inst_dir%\lib\site-packages"
mkdir "%inst_dir%\bin" mkdir "%inst_dir%\bin"
xcopy /E /I ..\..\examples "%inst_dir%\share\openstructure\examples" xcopy /E /I /Y /EXCLUDE:exclude_file_types ..\..\examples "%inst_dir%\share\openstructure\examples"
rmdir /S /Q "%inst_dir%\share\openstructure\examples\dokk" xcopy /E /I /Y /EXCLUDE:exclude_file_types ..\..\stage\share "%inst_dir%\share\"
xcopy /E /I ..\..\stage\share "%inst_dir%\share\"
REM xcopy /E /I ..\..\website\html "%inst_dir%\share\doc" REM xcopy /E /I ..\..\website\html "%inst_dir%\share\doc"
copy d:\programs\bin\python.exe "%inst_dir%\bin" copy d:\programs\bin\python.exe "%inst_dir%\bin"
copy ..\README.txt "%inst_dir%" copy ..\README.html "%inst_dir%"
copy ..\..\graphics\favicon.ico "%inst_dir%\share"
copy dng.bat "%inst_dir%" copy dng.bat "%inst_dir%"
xcopy /E /I /EXCLUDE:excludes d:\programs\lib "%inst_dir%\lib" xcopy /E /I /Y /EXCLUDE:excludes+exclude_file_types d:\programs\lib "%inst_dir%\lib"
xcopy /E /I ..\..\stage\lib "%inst_dir%\lib" xcopy /E /I /Y /EXCLUDE:excludes+exclude_file_types ..\..\stage\lib "%inst_dir%\lib"
xcopy /E /I /EXCLUDE:excludes ..\..\stage\bin "%inst_dir%\bin" xcopy /E /I /Y /EXCLUDE:excludes+exclude_file_types ..\..\stage\bin "%inst_dir%\bin"
set PATH="c:\Program Files (x86)"\7-Zip\;%PATH% set PATH="c:\Program Files (x86)"\7-Zip\;%PATH%
REM 7z a -r -t7z %archive_name% "%inst_dir%" > log REM 7z a -r -t7z %archive_name% "%inst_dir%" > log
REM if exist %archive_name%.7z copy /b 7zS.sfx + config.txt + %archive_name%.7z %archive_name%.exe REM if exist %archive_name%.7z copy /b 7zS.sfx + config.txt + %archive_name%.7z %archive_name%.exe
......
.lib
.exp
.pyc
.idb
dokk
\ No newline at end of file
...@@ -3,4 +3,7 @@ graph ...@@ -3,4 +3,7 @@ graph
prg_exec prg_exec
signals signals
libboost libboost
create_archive create_archive
\ No newline at end of file .pdb
markdown
pygments
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment