diff options
author | Vlastimil Babka <caster@gentoo.org> | 2007-05-09 22:14:34 +0000 |
---|---|---|
committer | Vlastimil Babka <caster@gentoo.org> | 2007-05-09 22:14:34 +0000 |
commit | 54960bb4b64492d3b695ff03f3f0151b51b2e84f (patch) | |
tree | dd1cf442559be9f565b57902f547163b0be7522f /dev-util/pmd/files | |
parent | Stablebump bad, blame chutzpah (diff) | |
download | gentoo-2-54960bb4b64492d3b695ff03f3f0151b51b2e84f.tar.gz gentoo-2-54960bb4b64492d3b695ff03f3f0151b51b2e84f.tar.bz2 gentoo-2-54960bb4b64492d3b695ff03f3f0151b51b2e84f.zip |
Version bump, bug #170603. Initially worked on in java-overlay by Miroslav Šulc <fordfrog@gentoo.org> and Petteri Räty <betelgeuse@gentoo.org>. Migrated to split-ant, no longer installs symlink to /usr/share/ant-core/lib.
(Portage version: 2.1.2.7)
Diffstat (limited to 'dev-util/pmd/files')
-rw-r--r-- | dev-util/pmd/files/digest-pmd-3.9 | 3 | ||||
-rw-r--r-- | dev-util/pmd/files/pmd-3.9-build.xml.patch | 32 | ||||
-rw-r--r-- | dev-util/pmd/files/pmd-3.9-launcher-pre-commands | 6 |
3 files changed, 41 insertions, 0 deletions
diff --git a/dev-util/pmd/files/digest-pmd-3.9 b/dev-util/pmd/files/digest-pmd-3.9 new file mode 100644 index 000000000000..9d078855fae6 --- /dev/null +++ b/dev-util/pmd/files/digest-pmd-3.9 @@ -0,0 +1,3 @@ +MD5 2ddefa2c0aa890693e2ce07a548b189f pmd-src-3.9.zip 11177126 +RMD160 99ce682812694220576b5d5d06148f87860937ec pmd-src-3.9.zip 11177126 +SHA256 a24c7f6aa748d0f61f897008abe45b1e5ebaa89795f53274533682ff181cd96e pmd-src-3.9.zip 11177126 diff --git a/dev-util/pmd/files/pmd-3.9-build.xml.patch b/dev-util/pmd/files/pmd-3.9-build.xml.patch new file mode 100644 index 000000000000..5ece46caff73 --- /dev/null +++ b/dev-util/pmd/files/pmd-3.9-build.xml.patch @@ -0,0 +1,32 @@ +--- bin/build.xml.original 2007-01-14 11:15:09.000000000 +0100 ++++ bin/build.xml 2007-01-14 13:37:41.000000000 +0100 +@@ -15,11 +15,7 @@ + + <path id="dependencies.path"> + <pathelement location="${dir.build}" /> +- <fileset dir="${dir.lib}"> +- <include name="jaxen-1.1-beta-10.jar" /> +- <include name="asm-3.0.jar" /> +- <include name="backport-util-concurrent.jar" /> +- </fileset> ++ <fileset dir="${dir.lib}" includes="*.jar"/> + </path> + + <target name="delete" description="Deletes the build directory and the pmd-x.x jar file."> +@@ -67,7 +63,6 @@ + <jar jarfile="${dir.lib}\pmd-${version}.jar" includes="net/sourceforge/pmd/**/**,test/net/sourceforge/pmd/testframework/**/**,rulesets/**" basedir="${dir.build}"> + <manifest> + <attribute name="Main-Class" value="net.sourceforge.pmd.PMD" /> +- <attribute name="Class-Path" value="jaxen-1.1-beta-10.jar asm-3.0.jar backport-util-concurrent.jar" /> + </manifest> + </jar> + </target> +@@ -99,7 +94,7 @@ + <istrue value="${outputTestResultsToFile}"/> + </condition> + +- <junit printsummary="yes" haltonfailure="no" forkmode="perBatch"> ++ <junit printsummary="yes" haltonfailure="yes" forkmode="perBatch"> + <classpath> + <path refid="dependencies.path" /> + </classpath> diff --git a/dev-util/pmd/files/pmd-3.9-launcher-pre-commands b/dev-util/pmd/files/pmd-3.9-launcher-pre-commands new file mode 100644 index 000000000000..b2e48852597d --- /dev/null +++ b/dev-util/pmd/files/pmd-3.9-launcher-pre-commands @@ -0,0 +1,6 @@ +if [ -z "$3" ]; then + script=`basename $0` + echo "Usage:" + echo " $script <java-src-file> html|xml|text|vbhtml rulesetfile1[,rulesetfile2[,..]]" + exit 1 +fi |