diff options
author | Joshua Nichols <nichoj@gentoo.org> | 2006-12-29 17:37:16 +0000 |
---|---|---|
committer | Joshua Nichols <nichoj@gentoo.org> | 2006-12-29 17:37:16 +0000 |
commit | e84886c6697d9c9b9173cf234c9cba3f85ba41fe (patch) | |
tree | 47c7617532fe31a0e13b5736d1ca542a78e7fe80 /dev-java/groovy/files | |
parent | Added ~amd64 keyword. Closes bug #158425. (diff) | |
download | gentoo-2-e84886c6697d9c9b9173cf234c9cba3f85ba41fe.tar.gz gentoo-2-e84886c6697d9c9b9173cf234c9cba3f85ba41fe.tar.bz2 gentoo-2-e84886c6697d9c9b9173cf234c9cba3f85ba41fe.zip |
Version bump. 1.0 JSR 06 was versioned as 1.0.06, which was wrong, so 1.0_rc01 is actually newer. Pruned 1.0.06.
(Portage version: 2.1.2_rc4-r1)
Diffstat (limited to 'dev-java/groovy/files')
-rw-r--r-- | dev-java/groovy/files/build.xml-1.0_rc01 | 131 | ||||
-rw-r--r-- | dev-java/groovy/files/digest-groovy-1.0_rc01 | 3 |
2 files changed, 134 insertions, 0 deletions
diff --git a/dev-java/groovy/files/build.xml-1.0_rc01 b/dev-java/groovy/files/build.xml-1.0_rc01 new file mode 100644 index 000000000000..92caf0b518cf --- /dev/null +++ b/dev-java/groovy/files/build.xml-1.0_rc01 @@ -0,0 +1,131 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!--build.xml generated by maven from project.xml version 1.0-RC-01 + on date December 29 2006, time 0256--> +<project default="jar" name="groovy" basedir="."> + <!--Load local and user build preferences--> + <property file="build.properties"></property> + <property file="${user.home}/build.properties"></property> + <!--Build properties--> + <property name="defaulttargetdir" value="${basedir}/target"></property> + <property name="libdir" value="${user.home}/.maven/repository"></property> + <property name="classesdir" value="${basedir}/target/classes"></property> + <property name="testclassesdir" value="${basedir}/target/test-classes"></property> + <property name="testreportdir" value="${basedir}/target/test-reports"></property> + <property name="distdir" value="${basedir}/dist"></property> + <property name="javadocdir" value="${basedir}/dist/docs/api"></property> + <property name="final.name" value="groovy-1.0-RC-01"></property> + <property name="proxy.host" value=""></property> + <property name="proxy.port" value=""></property> + <property name="proxy.username" value=""></property> + <property name="proxy.password" value=""></property> + <path id="build.classpath"> + <fileset dir="${libdir}" includes="**/*.jar"/> + </path> + <target name="init" description="o Initializes some properties"> + <mkdir dir="${libdir}"></mkdir> + <!--Test if user defined a proxy--> + <condition property="useProxy"> + <and> + <isset property="proxy.host"></isset> + <not> + <equals trim="true" arg2="" arg1="${proxy.host}"></equals> + </not> + </and> + </condition> + </target> + <target name="compile" description="o Compile the code" depends=""> + <mkdir dir="${classesdir}"></mkdir> + <javac destdir="${classesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html"> + <src> + <pathelement location="${basedir}/src/main"></pathelement> + </src> + <classpath refid="build.classpath"></classpath> + </javac> + <copy todir="${classesdir}"> + <fileset dir="${basedir}/src/main"> + <include name="**/*.properties"></include> + <include name="**/*.xml"></include> + </fileset> + </copy> + </target> + <target name="jar" description="o Create the jar" depends="compile,test"> + <jar jarfile="${defaulttargetdir}/${final.name}.jar" excludes="**/package.html" basedir="${classesdir}"></jar> + </target> + <target name="clean" description="o Clean up the generated directories"> + <delete dir="${defaulttargetdir}"></delete> + <delete dir="${distdir}"></delete> + </target> + <target name="dist" description="o Create a distribution" depends="jar, javadoc"> + <mkdir dir="dist"></mkdir> + <copy todir="dist"> + <fileset dir="${defaulttargetdir}" includes="*.jar"></fileset> + <fileset dir="${basedir}" includes="LICENSE*, README*"></fileset> + </copy> + </target> + <target name="test" description="o Run the test cases" if="test.failure" depends="internal-test"> + <fail message="There were test failures."></fail> + </target> + <target name="internal-test" if="test" depends="junit-present,compile-tests"> + <mkdir dir="${testreportdir}"></mkdir> + <junit dir="${basedir}" failureproperty="test.failure" printSummary="yes" fork="true" haltonerror="true"> + <sysproperty key="basedir" value="."></sysproperty> + <formatter type="xml"></formatter> + <formatter usefile="false" type="plain"></formatter> + <classpath> + <path refid="build.classpath"></path> + <pathelement path="${testclassesdir}"></pathelement> + <pathelement path="${classesdir}"></pathelement> + </classpath> + <batchtest todir="${testreportdir}"> + <fileset dir="${basedir}/src/test"> + <include name="**/Uber*.*"></include> + <exclude name="**/SignedJarTest.*"></exclude> + </fileset> + </batchtest> + </junit> + </target> + <target name="junit-present" unless="test" depends="init"> + <echo>================================= WARNING ================================</echo> + <echo>Junit isn't present in your ${ANT_HOME}/lib directory. Tests not executed.</echo> + <echo>==========================================================================</echo> + </target> + <target name="compile-tests" if="test" depends="junit-present,compile"> + <mkdir dir="${testclassesdir}"></mkdir> + <javac destdir="${testclassesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html"> + <src> + <pathelement location="${basedir}/src/test"></pathelement> + </src> + <classpath> + <path refid="build.classpath"></path> + <pathelement path="${classesdir}"></pathelement> + </classpath> + </javac> + <copy todir="${testclassesdir}"> + <fileset dir="${basedir}/src/test"> + <include name="**/*.properties"></include> + <include name="**/*.xml"></include> + <include name="**/*.xsd"></include> + </fileset> + </copy> + <copy todir="${testclassesdir}"> + <fileset dir="${basedir}/src/test"> + <include name="**/*.*"></include> + <include name="**/groovy*"></include> + </fileset> + </copy> + </target> + <target name="javadoc" description="o Generate javadoc" depends=""> + <mkdir dir="${javadocdir}"></mkdir> + <tstamp> + <format pattern="2003-yyyy" property="year"></format> + </tstamp> + <property name="copyright" value="Copyright &copy; The Codehaus. All Rights Reserved."></property> + <property name="title" value="groovy 1.0-RC-01 API"></property> + <javadoc use="true" private="true" destdir="${javadocdir}" author="true" version="true" sourcepath="${basedir}/src/main" packagenames=".*"> + <classpath> + <path refid="build.classpath"></path> + </classpath> + </javadoc> + </target> +</project> diff --git a/dev-java/groovy/files/digest-groovy-1.0_rc01 b/dev-java/groovy/files/digest-groovy-1.0_rc01 new file mode 100644 index 000000000000..0d48d41ffb22 --- /dev/null +++ b/dev-java/groovy/files/digest-groovy-1.0_rc01 @@ -0,0 +1,3 @@ +MD5 7386d8ced17408ddc817a1d7b8079bc4 groovy-1.0-RC-01-src.tar.gz 985880 +RMD160 eed0f9259ad9775779c1c58b0128befe88fe90da groovy-1.0-RC-01-src.tar.gz 985880 +SHA256 b788d1f8e43779cb518a21a92d1b9808f363b491d7d7084cfd177ed71fff84aa groovy-1.0-RC-01-src.tar.gz 985880 |