summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Tennis <caleb@gentoo.org>2007-06-18 13:52:30 +0000
committerCaleb Tennis <caleb@gentoo.org>2007-06-18 13:52:30 +0000
commit147d37f9a251834ec2922f7dcc7193fc0bc1196b (patch)
tree270ea5b5f6d2a2e486095e92d9bc0b055815528c /dev-lang/scala/files
parentCall webapp_pkg_setup() at the end of pkg_setup() (#182402). (diff)
downloadgentoo-2-147d37f9a251834ec2922f7dcc7193fc0bc1196b.tar.gz
gentoo-2-147d37f9a251834ec2922f7dcc7193fc0bc1196b.tar.bz2
gentoo-2-147d37f9a251834ec2922f7dcc7193fc0bc1196b.zip
Version bump, with minor change to build.xml.patch
(Portage version: 2.1.2.7)
Diffstat (limited to 'dev-lang/scala/files')
-rw-r--r--dev-lang/scala/files/digest-scala-2.5.13
-rw-r--r--dev-lang/scala/files/scala-2.5.1-build.xml.patch79
2 files changed, 82 insertions, 0 deletions
diff --git a/dev-lang/scala/files/digest-scala-2.5.1 b/dev-lang/scala/files/digest-scala-2.5.1
new file mode 100644
index 000000000000..1eb8c6faa2d8
--- /dev/null
+++ b/dev-lang/scala/files/digest-scala-2.5.1
@@ -0,0 +1,3 @@
+MD5 6e0c63a6e8d7d1612d1b9c53649388b0 scala-2.5.1-final-sources.tgz 24199025
+RMD160 550a0b189e227551330f3642a93be8ab95ea71f0 scala-2.5.1-final-sources.tgz 24199025
+SHA256 cc2aec40da68666d29f2298de2c3909d72dc653c75d620a1a53fc4452a95f0a4 scala-2.5.1-final-sources.tgz 24199025
diff --git a/dev-lang/scala/files/scala-2.5.1-build.xml.patch b/dev-lang/scala/files/scala-2.5.1-build.xml.patch
new file mode 100644
index 000000000000..fe5aa6533f33
--- /dev/null
+++ b/dev-lang/scala/files/scala-2.5.1-build.xml.patch
@@ -0,0 +1,79 @@
+--- build.xml.orig 2007-06-18 09:19:50.000000000 -0400
++++ build.xml 2007-06-18 09:20:19.000000000 -0400
+@@ -85,11 +85,13 @@
+ <!-- Setting-up Ant contrib tasks -->
+ <taskdef resource="net/sf/antcontrib/antlib.xml"
+ classpath="${ant-contrib.jar}"/>
++ <!--
+ <fail message="External library ${ant-contrib.jar} requires the optional Ant tasks to be installed">
+ <condition><not><and>
+ <available file="${ant.home}/lib/ant-nodeps.jar"/>
+ </and></not></condition>
+ </fail>
++ -->
+ </target>
+
+ <!-- ===========================================================================
+@@ -784,7 +786,7 @@
+ DOCUMENTATION
+ ============================================================================ -->
+
+- <target name="docs" depends="setup.quick"
++ <target name="docs" depends="setup.quick" if="do.docs"
+ description="Generated the API for library sources">
+ <mkdir dir="${api-lib.dir}"/>
+ <quickdoc
+@@ -802,7 +804,7 @@
+ </quickdoc>
+ </target>
+
+- <target name="docs.compiler" depends="setup.quick"
++ <target name="docs.compiler" depends="setup.quick" if="do.docs"
+ description="Generated the API for compiler sources">
+ <mkdir dir="${api-comp.dir}"/>
+ <quickdoc
+@@ -886,7 +888,7 @@
+
+ <target name="dist.patch" depends="init">
+ <propertyfile file="${number.file}">
+- <entry key="version.patch" type="int" default="0" operation="+"/>
++ <entry key="version.patch" type="int" default="0"/>
+ </propertyfile>
+ <property file="${number.file}"/>
+ <property name="version.number"
+@@ -896,7 +898,7 @@
+
+ <target name="dist.minor" depends="init">
+ <propertyfile file="${number.file}">
+- <entry key="version.minor" type="int" default="0" operation="+"/>
++ <entry key="version.minor" type="int" default="0"/>
+ <entry key="version.patch" type="int" value="0"/>
+ </propertyfile>
+ <property file="${number.file}"/>
+@@ -1045,7 +1047,7 @@
+ <copy todir="${dist.current.dir}/doc/scala">
+ <fileset dir="${docs.dir}" includes="README,LICENSE"/>
+ </copy>
+- <copy todir="${dist.current.dir}/doc/scala/api">
++ <copy todir="${dist.current.dir}/doc/scala/api" failonerror="false">
+ <fileset dir="${api-lib.dir}"/>
+ </copy>
+ <copy todir="${dist.current.dir}/doc/scala/examples">
+@@ -1066,7 +1068,7 @@
+ </target>
+
+ <!-- Create the SBaz packages -->
+- <target name="build.sbaz" depends="build.dist">
++ <target name="build.sbaz" depends="build.dist" if="do.archive">
+ <property name="sbaz.universe" value="http://scala.epfl.ch/downloads/packages"/>
+ <mkdir dir="${dist.dir}"/>
+ <!-- Create the Scala library package -->
+@@ -1120,7 +1122,7 @@
+ </quicksbaz>
+ </target>
+
+- <target name="build.archive" depends="build.dist">
++ <target name="build.archive" depends="build.dist" if="do.archive">
+ <tar
+ destfile="${dist.dir}/scala-${version.number}.tgz"
+ compression="gzip">