You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by fm...@apache.org on 2011/03/04 21:55:30 UTC

svn commit: r1078128 - in /chemistry/dotcmis/trunk: DotCMIS/DotCMIS.shfbproj DotCMIS/build.bat release.bat

Author: fmui
Date: Fri Mar  4 20:55:30 2011
New Revision: 1078128

URL: http://svn.apache.org/viewvc?rev=1078128&view=rev
Log:
- fixed permissions in zip file
- changed mailing list address

Modified:
    chemistry/dotcmis/trunk/DotCMIS/DotCMIS.shfbproj
    chemistry/dotcmis/trunk/DotCMIS/build.bat
    chemistry/dotcmis/trunk/release.bat

Modified: chemistry/dotcmis/trunk/DotCMIS/DotCMIS.shfbproj
URL: http://svn.apache.org/viewvc/chemistry/dotcmis/trunk/DotCMIS/DotCMIS.shfbproj?rev=1078128&r1=1078127&r2=1078128&view=diff
==============================================================================
--- chemistry/dotcmis/trunk/DotCMIS/DotCMIS.shfbproj (original)
+++ chemistry/dotcmis/trunk/DotCMIS/DotCMIS.shfbproj Fri Mar  4 20:55:30 2011
@@ -41,7 +41,7 @@
     </ApiFilter>
     <SelfBranded>True</SelfBranded>
     <FeedbackEMailLinkText>Apache Chemistry developer mailing list</FeedbackEMailLinkText>
-    <FeedbackEMailAddress>chemistry-dev%40incubator.apache.org</FeedbackEMailAddress>
+    <FeedbackEMailAddress>dev%40chemistry.apache.org</FeedbackEMailAddress>
     <CopyrightText>Apache Software Foundation</CopyrightText>
     <CopyrightHref>http://www.apache.org</CopyrightHref>
     <BinaryTOC>True</BinaryTOC>

Modified: chemistry/dotcmis/trunk/DotCMIS/build.bat
URL: http://svn.apache.org/viewvc/chemistry/dotcmis/trunk/DotCMIS/build.bat?rev=1078128&r1=1078127&r2=1078128&view=diff
==============================================================================
--- chemistry/dotcmis/trunk/DotCMIS/build.bat (original)
+++ chemistry/dotcmis/trunk/DotCMIS/build.bat Fri Mar  4 20:55:30 2011
@@ -22,6 +22,10 @@ rem
 rem This batch file creates the Debug DLL, the Release DLL and the documentation.
 rem It requires the .NET Framework 3.5, Sandcastle and Sandcastle Help File Builder.
 
+echo Removing old DLLs
+rmdir /Q /S bin
+rmdir /Q /S obj
+
 echo Building Debug DLL...
 msbuild DotCMIS.csproj /ToolsVersion:3.5 /p:Configuration=Debug
 

Modified: chemistry/dotcmis/trunk/release.bat
URL: http://svn.apache.org/viewvc/chemistry/dotcmis/trunk/release.bat?rev=1078128&r1=1078127&r2=1078128&view=diff
==============================================================================
--- chemistry/dotcmis/trunk/release.bat (original)
+++ chemistry/dotcmis/trunk/release.bat Fri Mar  4 20:55:30 2011
@@ -24,7 +24,9 @@ rem It requires Cygwin.
 
 set DOTCMISVERSION=0.1
 set DOTCMISZIP=chemistry-dotcmis-%DOTCMISVERSION%.zip
-set DOTCMISRC=RC1
+set DOTCMISRC=RC2
+
+set CYGWIN=ntea
 
 echo Building...
 cd DotCMIS
@@ -51,19 +53,24 @@ xcopy DotCMIS release\src /E
 rmdir /S /Q release\src\bin
 rmdir /S /Q release\src\obj
 rmdir /S /Q release\src\doc
+chmod -R a+rwx release
 
 echo Creating release file...
-del %DOTCMISZIP%
+rmdir /S /Q artifacts
+mkdir artifacts
+
 cd release
-zip -r  ..\%DOTCMISZIP% *
+zip -r  ../artifacts/%DOTCMISZIP% *
 cd ..
 
 echo Signing release file...
+cd artifacts
 gpg --armor --output %DOTCMISZIP%.asc --detach-sig %DOTCMISZIP%
 gpg --print-md MD5 %DOTCMISZIP% > %DOTCMISZIP%.md5
 gpg --print-md SHA512 %DOTCMISZIP% > %DOTCMISZIP%.sha
 gpg --print-md MD5 %DOTCMISZIP%.asc > %DOTCMISZIP%.asc.md5
 gpg --print-md SHA512 %DOTCMISZIP%.asc > %DOTCMISZIP%.asc.sha
+cd ..
 
 echo Creating RC tag
 rem svn copy https://svn.apache.org/repos/asf/chemistry/dotcmis/trunk https://svn.apache.org/repos/asf/chemistry/dotcmis/tags/chemistry-dotcmis-%DOTCMISVERSION%-%DOTCMISRC%