Ticket #29472: play.diff
File play.diff, 3.8 KB (added by ci42, 14 years ago) |
---|
-
Portfile
diff -ur orig/Portfile new/Portfile
old new 5 5 6 6 name play 7 7 conflicts sox 8 version 1.2 8 version 1.2.1 9 9 categories devel java www 10 10 platforms darwin 11 11 license Apache-2 … … 27 27 homepage http://www.playframework.org/ 28 28 master_sites https://github.com/playframework/play/tarball/${version} 29 29 30 checksums sha1 1ebc9f02e3204258966ff8e6226a7ddb7c8bb2e2\31 rmd160 7a9984b800eaf699bcdea99e60e47bab8a7e99f930 checksums sha1 9ad1c9c82e0fe5ceb6165923a8f49b5d30a62e90 \ 31 rmd160 610302c35825e10686495c957bf66630fd19d136 32 32 33 33 post-extract { 34 34 file rename [glob ${workpath}/playframework-play-*] ${worksrcpath} … … 61 61 ln -s ${prefix}/share/java/${distname}/documentation/api ${docdir} 62 62 ln -s ${prefix}/share/java/${distname}/samples-and-tests ${docdir} 63 63 64 # symlink the repository configuration65 xinstall -d ${destroot}${prefix}/etc/${distname}66 ln -s ${prefix}/share/java/${distname}/repositories ${destroot}${prefix}/etc/${distname}67 64 } -
files/patch-framework-build.xml.diff
diff -ur orig/files/patch-framework-build.xml.diff new/files/patch-framework-build.xml.diff
old new 1 --- framework/build.xml.orig 2011-04-13 22:25:15.000000000 +0200 2 +++ framework/build.xml 2011-04-13 22:22:36.000000000 +0200 3 @@ -3,6 +3,7 @@ 1 --- framework/build.xml.orig 2011-05-16 00:08:08.000000000 +0200 2 +++ framework/build.xml 2011-05-16 00:07:17.000000000 +0200 3 @@ -2,7 +2,7 @@ 4 4 5 <project name="play! framework" default="jar" basedir="."> 5 6 7 + <property name="version" value="1.2 " />6 7 - <property name="baseversion" value="1.2.x" /> 8 + <property name="version" value="1.2.1" /> 8 9 9 10 <path id="project.classpath"> 10 11 <fileset dir="."> 11 @@ -35 2,11 +353,11 @@12 12 @@ -353,11 +353,11 @@ 13 13 14 <target name="package" depends="clean,version,jar,javadoc"> 14 15 <mkdir dir="dist" /> 15 16 - <zip destfile="dist/play-${version}.zip" comment="Play! ${version}" update="false"> 16 - <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/**" /> 17 18 - <zipfileset prefix="play-${version}" dir=".." includes="play" filemode="777" /> 18 19 - <zipfileset prefix="play-${version}" dir=".." includes="modules/grizzly/**,modules/crud/**,modules/secure/**,modules/docviewer/**,modules/testrunner/**" excludes="**/*.pyc" /> 19 20 - </zip> … … 23 24 + <fileset dir=".." includes="modules/grizzly/**,modules/crud/**,modules/secure/**,modules/docviewer/**,modules/testrunner/**" excludes="**/*.pyc" /> 24 25 + </copy> 25 26 </target> 26 27 27 28 </project>