Revision: 81313 http://trac.macports.org/changeset/81313 Author: ciserlohn@macports.org Date: 2011-07-29 02:46:04 -0700 (Fri, 29 Jul 2011) Log Message: ----------- play: fix checksums and patchfile for stealth update (see #30445) Modified Paths: -------------- trunk/dports/devel/play/Portfile trunk/dports/devel/play/files/patch-framework-build.xml.diff Modified: trunk/dports/devel/play/Portfile =================================================================== --- trunk/dports/devel/play/Portfile 2011-07-29 09:24:12 UTC (rev 81312) +++ trunk/dports/devel/play/Portfile 2011-07-29 09:46:04 UTC (rev 81313) @@ -6,6 +6,7 @@ name play conflicts sox version 1.2.2 +revision 1 categories devel java www platforms darwin license Apache-2 @@ -27,9 +28,12 @@ homepage http://www.playframework.org/ master_sites https://github.com/playframework/play/tarball/${version} -checksums sha1 1ebc9f02e3204258966ff8e6226a7ddb7c8bb2e2 \ - rmd160 7a9984b800eaf699bcdea99e60e47bab8a7e99f9 +checksums sha1 b3d3fafcaa1525345354465484bf5c9139e1f1fb \ + rmd160 6dadb0616aa81180a6c27baf43dfaacd5485c05c +# stealth update at 1.2.2 +dist_subdir ${name}/${version}_1 + post-extract { file rename [glob ${workpath}/playframework-play-*] ${worksrcpath} Modified: trunk/dports/devel/play/files/patch-framework-build.xml.diff =================================================================== --- trunk/dports/devel/play/files/patch-framework-build.xml.diff 2011-07-29 09:24:12 UTC (rev 81312) +++ trunk/dports/devel/play/files/patch-framework-build.xml.diff 2011-07-29 09:46:04 UTC (rev 81313) @@ -1,28 +1,28 @@ ---- framework/build.xml.orig 2011-04-13 15:03:14.000000000 +0200 -+++ framework/build.xml 2011-07-05 16:00:54.000000000 +0200 +--- framework/build.xml.orig 2011-07-29 11:30:41.000000000 +0200 ++++ framework/build.xml 2011-07-29 11:33:02.000000000 +0200 @@ -2,7 +2,7 @@ <project name="play! framework" default="jar" basedir="."> - + - <property name="baseversion" value="1.2.x" /> + <property name="version" value="1.2.2" /> <path id="project.classpath"> <fileset dir="."> -@@ -352,11 +352,11 @@ - +@@ -353,11 +353,11 @@ + <target name="package" depends="clean,version,jar,javadoc"> <mkdir dir="dist" /> - <zip destfile="dist/play-${version}.zip" comment="Play! ${version}" update="false"> -- <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/**" /> +- <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/**" /> - <zipfileset prefix="play-${version}" dir=".." includes="play" filemode="777" /> - <zipfileset prefix="play-${version}" dir=".." includes="modules/grizzly/**,modules/crud/**,modules/secure/**,modules/docviewer/**,modules/testrunner/**" excludes="**/*.pyc" /> - </zip> + <copy todir="dist"> -+ <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/**" /> ++ <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/**" /> + <fileset dir=".." includes="play" /> + <fileset dir=".." includes="modules/grizzly/**,modules/crud/**,modules/secure/**,modules/docviewer/**,modules/testrunner/**" excludes="**/*.pyc" /> + </copy> </target> - + </project>