New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 81313


Ignore:
Timestamp:
07/29/11 02:46:04 (4 years ago)
Author:
ciserlohn@…
Message:

play: fix checksums and patchfile for stealth update (see #30445)

Location:
trunk/dports/devel/play
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/devel/play/Portfile

    r80154 r81313  
    77conflicts           sox 
    88version             1.2.2 
     9revision            1 
    910categories          devel java www 
    1011platforms           darwin 
     
    2829master_sites        https://github.com/playframework/play/tarball/${version} 
    2930 
    30 checksums           sha1    1ebc9f02e3204258966ff8e6226a7ddb7c8bb2e2 \ 
    31                     rmd160  7a9984b800eaf699bcdea99e60e47bab8a7e99f9 
     31checksums           sha1    b3d3fafcaa1525345354465484bf5c9139e1f1fb \ 
     32                    rmd160  6dadb0616aa81180a6c27baf43dfaacd5485c05c 
     33 
     34# stealth update at 1.2.2 
     35dist_subdir         ${name}/${version}_1 
    3236 
    3337post-extract { 
  • trunk/dports/devel/play/files/patch-framework-build.xml.diff

    r80154 r81313  
    1 --- framework/build.xml.orig    2011-04-13 15:03:14.000000000 +0200 
    2 +++ framework/build.xml 2011-07-05 16:00:54.000000000 +0200 
     1--- framework/build.xml.orig    2011-07-29 11:30:41.000000000 +0200 
     2+++ framework/build.xml 2011-07-29 11:33:02.000000000 +0200 
    33@@ -2,7 +2,7 @@ 
    44  
    55 <project name="play! framework" default="jar" basedir="."> 
    6       
     6  
    77-    <property name="baseversion" value="1.2.x" /> 
    88+    <property name="version" value="1.2.2" /> 
     
    1010     <path id="project.classpath"> 
    1111         <fileset dir="."> 
    12 @@ -352,11 +352,11 @@ 
    13       
     12@@ -353,11 +353,11 @@ 
     13  
    1414     <target name="package" depends="clean,version,jar,javadoc"> 
    1515         <mkdir dir="dist" />  
    1616-        <zip destfile="dist/play-${version}.zip" comment="Play! ${version}" update="false"> 
    17 -            <zipfileset prefix="play-${version}" dir=".." includes="**/*" excludes="**/cobertura.ser,**/*.pyc,hs_err*,.*,.*/*,framework/dist/**,id,play,nbproject/**,**/.bzr/**,**/.git/**,*.bzrignore,support/textmate/**,framework/classes/**,framework/tests-results/**,samples-and-tests/**/test-result,samples-and-tests/**/i-am-working-here,samples-and-tests/**/data,samples-and-tests/**/logs,samples-and-tests/**/tmp,samples-and-tests/**/db,samples-and-tests/**/attachments,modules/**" />    
     17-            <zipfileset prefix="play-${version}" dir=".." includes="**/*" excludes="**/cobertura.ser,**/*.pyc,hs_err*,.*,.*/*,framework/dist/**,id,play,nbproject/**,**/.bzr/**,**/.git/**,*.bzrignore,support/textmate/**,framework/classes/**,framework/tests-results/**,samples-and-tests/**/test-result,samples-and-tests/**/i-am-working-here,samples-and-tests/**/data,samples-and-tests/**/logs,samples-and-tests/**/tmp,samples-and-tests/**/db,samples-and-tests/**/attachments,modules/**" /> 
    1818-            <zipfileset prefix="play-${version}" dir=".." includes="play" filemode="777" /> 
    1919-            <zipfileset prefix="play-${version}" dir=".." includes="modules/grizzly/**,modules/crud/**,modules/secure/**,modules/docviewer/**,modules/testrunner/**" excludes="**/*.pyc" /> 
    2020-        </zip> 
    2121+        <copy todir="dist"> 
    22 +            <fileset dir=".." includes="**/*" excludes="**/cobertura.ser,**/*.pyc,hs_err*,.*,.*/*,framework/dist/**,id,play,nbproject/**,**/.bzr/**,**/.git/**,*.bzrignore,support/textmate/**,framework/classes/**,framework/tests-results/**,samples-and-tests/**/test-result,samples-and-tests/i-am-a-developer/**,samples-and-tests/**/data,samples-and-tests/**/logs,samples-and-tests/**/tmp,samples-and-tests/**/db,samples-and-tests/**/attachments,modules/**" />    
     22+            <fileset dir=".." includes="**/*" excludes="**/cobertura.ser,**/*.pyc,hs_err*,.*,.*/*,framework/dist/**,id,play,nbproject/**,**/.bzr/**,**/.git/**,*.bzrignore,support/textmate/**,framework/classes/**,framework/tests-results/**,samples-and-tests/**/test-result,samples-and-tests/i-am-a-developer/**,samples-and-tests/**/data,samples-and-tests/**/logs,samples-and-tests/**/tmp,samples-and-tests/**/db,samples-and-tests/**/attachments,modules/**" /> 
    2323+            <fileset dir=".." includes="play" /> 
    2424+            <fileset dir=".." includes="modules/grizzly/**,modules/crud/**,modules/secure/**,modules/docviewer/**,modules/testrunner/**" excludes="**/*.pyc" /> 
    2525+        </copy> 
    2626     </target> 
    27       
     27  
    2828 </project> 
Note: See TracChangeset for help on using the changeset viewer.