summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirkjan Ochtman <djc@gentoo.org>2010-05-02 11:41:08 +0000
committerDirkjan Ochtman <djc@gentoo.org>2010-05-02 11:41:08 +0000
commitab62552865ac1f8f07217b4d90a194c5b3bc622d (patch)
tree4f082776e1d6a379af1e250d2af49c140abf6417 /dev-lang
parentamd64 stable, bug 306339 (diff)
downloadgentoo-2-ab62552865ac1f8f07217b4d90a194c5b3bc622d.tar.gz
gentoo-2-ab62552865ac1f8f07217b4d90a194c5b3bc622d.tar.bz2
gentoo-2-ab62552865ac1f8f07217b4d90a194c5b3bc622d.zip
Remove unused patches.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang')
-rw-r--r--dev-lang/scala/ChangeLog6
-rw-r--r--dev-lang/scala/files/scala-2.6.0-build.xml.patch79
-rw-r--r--dev-lang/scala/files/scala-2.6.1-build.xml.patch79
3 files changed, 5 insertions, 159 deletions
diff --git a/dev-lang/scala/ChangeLog b/dev-lang/scala/ChangeLog
index a52ef039fea7..c9d5c37efb87 100644
--- a/dev-lang/scala/ChangeLog
+++ b/dev-lang/scala/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-lang/scala
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/scala/ChangeLog,v 1.19 2010/01/09 14:29:08 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/scala/ChangeLog,v 1.20 2010/05/02 11:41:07 djc Exp $
+
+ 02 May 2010; Dirkjan Ochtman <djc@gentoo.org>
+ -files/scala-2.6.0-build.xml.patch, -files/scala-2.6.1-build.xml.patch:
+ Remove unused patches.
09 Jan 2010; Petteri Räty <betelgeuse@gentoo.org> scala-2.7.7.ebuild:
Split compiling to multiple ant invocations to lower resources needed to
diff --git a/dev-lang/scala/files/scala-2.6.0-build.xml.patch b/dev-lang/scala/files/scala-2.6.0-build.xml.patch
deleted file mode 100644
index 67a225329d62..000000000000
--- a/dev-lang/scala/files/scala-2.6.0-build.xml.patch
+++ /dev/null
@@ -1,79 +0,0 @@
---- build.xml.orig 2007-12-17 12:05:42.000000000 -0500
-+++ build.xml 2007-12-17 12:07:34.000000000 -0500
-@@ -90,11 +90,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>
-
- <!-- ===========================================================================
-@@ -1052,7 +1054,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
-@@ -1070,7 +1072,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
-@@ -1155,7 +1157,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"
-@@ -1165,7 +1167,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}"/>
-@@ -1339,7 +1341,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">
-@@ -1360,7 +1362,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://www.scala-lang.org/downloads/packages"/>
- <mkdir dir="${dist.dir}"/>
- <!-- Create the Scala library package -->
-@@ -1426,7 +1428,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">
diff --git a/dev-lang/scala/files/scala-2.6.1-build.xml.patch b/dev-lang/scala/files/scala-2.6.1-build.xml.patch
deleted file mode 100644
index 9c5fd40a1501..000000000000
--- a/dev-lang/scala/files/scala-2.6.1-build.xml.patch
+++ /dev/null
@@ -1,79 +0,0 @@
---- build.xml 2007-12-19 14:34:43.000000000 +0100
-+++ build.xml 2008-01-20 18:00:33.000000000 +0100
-@@ -108,11 +108,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>
-
- <!-- ===========================================================================
-@@ -1410,7 +1412,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
-@@ -1428,7 +1430,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
-@@ -1513,7 +1515,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"
-@@ -1523,7 +1525,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}"/>
-@@ -1729,7 +1731,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">
-@@ -1750,7 +1752,7 @@
- </target>
-
- <!-- Create the SBaz packages -->
-- <target name="build.sbaz" depends="build.dist,msil,cldc,android">
-+ <target name="build.sbaz" depends="build.dist" if="do.archive">
- <property name="sbaz.universe" value="http://www.scala-lang.org/downloads/packages"/>
- <mkdir dir="${dist.dir}"/>
- <!-- Create the Scala library package -->
-@@ -1846,7 +1848,7 @@
- </then></if>
- </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">