From 54065c579e343b401c42f126440d1542356b37a1 Mon Sep 17 00:00:00 2001 From: Lex Spoon Date: Tue, 19 Aug 2008 13:42:40 +0000 Subject: Moving debian packaging files into their own miniature repository. --- debian/README | 3 - debian/README.Debian | 8 - debian/changelog | 70 ----- debian/command-scripts/fsc | 7 - debian/command-scripts/scala | 10 - debian/command-scripts/scalac | 8 - debian/command-scripts/scaladoc | 5 - debian/compat | 1 - debian/control | 31 -- debian/copyright | 43 --- debian/rules | 52 --- debian/scala-library.dirs | 1 - debian/scala.dirs | 2 - debian/simpbuild.xml | 681 ---------------------------------------- 14 files changed, 922 deletions(-) delete mode 100644 debian/README delete mode 100644 debian/README.Debian delete mode 100644 debian/changelog delete mode 100644 debian/command-scripts/fsc delete mode 100755 debian/command-scripts/scala delete mode 100755 debian/command-scripts/scalac delete mode 100755 debian/command-scripts/scaladoc delete mode 100644 debian/compat delete mode 100644 debian/control delete mode 100644 debian/copyright delete mode 100755 debian/rules delete mode 100644 debian/scala-library.dirs delete mode 100644 debian/scala.dirs delete mode 100644 debian/simpbuild.xml diff --git a/debian/README b/debian/README deleted file mode 100644 index 501befeca8..0000000000 --- a/debian/README +++ /dev/null @@ -1,3 +0,0 @@ -This directory holds files used to build *.deb packages of Scala -for the Debian Linux distribution (http://www.debian.org). - diff --git a/debian/README.Debian b/debian/README.Debian deleted file mode 100644 index 0fdd421f8e..0000000000 --- a/debian/README.Debian +++ /dev/null @@ -1,8 +0,0 @@ -The source code to this package was downloaded from: - - -http://scalasvn.epfl.ch/cgi-bin/viewvc.cgi/scala/tags/ - - -This directory includes a tag for each release of the Scala -development tools. diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index f6cc99dfd6..0000000000 --- a/debian/changelog +++ /dev/null @@ -1,70 +0,0 @@ -scala (2.6.1-1) unstable; urgency=low - - * New upstream release - - -- Lex Spoon Tue, 15 Jan 2008 18:08:31 +0100 - -scala (2.6.0-1) unstable; urgency=low - - * New upstream release - - -- Lex Spoon Fri, 14 Sep 2007 15:22:05 +0100 - -scala (2.5.0-1) unstable; urgency=low - - * New upstream release - * Depend only on java-gcj-compat, not java-gcj-compat-dev - - -- Lex Spoon Tue, 22 May 2007 16:51:47 +0200 - -scala (2.4.0-1) unstable; urgency=low - - * New upstream version. - - * Deleting all mention of the Sun JVM, just because some - DD's find it bothersome. - - * Deleted mention of JDK5-specific classes, while awaiting - the Sun JVM to become open source. (Closes: #409785) - - * Added java-gcj-compat-dev as an install dependency. (Closes: #408353) - - -- Lex Spoon Sun, 25 Mar 2007 11:56:18 +0200 - -scala (2.3.2-1) unstable; urgency=low - - * New upstream version - - -- Lex Spoon Fri, 19 Jan 2007 14:45:51 +0100 - -scala (2.3.0-1) unstable; urgency=low - - * New upstream version - * Added a Java compiler as a build-dependency - - -- Lex Spoon Fri, 24 Nov 2006 16:02:09 +0100 - -scala (2.2.0-1) unstable; urgency=low - - * New upstream release - - -- Lex Spoon Mon, 30 Oct 2006 21:35:10 -0500 - -scala (2.1.5-2) unstable; urgency=low - - * Rearranged to have three packages instead of four. - - -- Lex Spoon Wed, 28 Jun 2006 17:16:02 +0200 - -scala (2.1.5-1) unstable; urgency=low - - * upstream update. - - -- Lex Spoon Sun, 9 Jun 2006 14:45:26 +0100 - -scala (2.1.1-1) unstable; urgency=low - - * Initial Release. - - -- Lex Spoon Sun, 26 Mar 2006 14:45:26 +0100 - diff --git a/debian/command-scripts/fsc b/debian/command-scripts/fsc deleted file mode 100644 index 3d619854fb..0000000000 --- a/debian/command-scripts/fsc +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -JAVA_DIR=/usr/share/java -SCALAC_CLASSPATH=$JAVA_DIR/scala-library.jar:$JAVA_DIR/scala-compiler.jar - -exec ${JAVACMD:=java} ${JAVA_OPTS:=-Xmx256M -Xms16M} \ - -classpath $SCALAC_CLASSPATH -Dscala.boot.class.path=$SCALAC_CLASSPATH \ - scala.tools.nsc.CompileClient "$@" diff --git a/debian/command-scripts/scala b/debian/command-scripts/scala deleted file mode 100755 index 529ce69b54..0000000000 --- a/debian/command-scripts/scala +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -JAVA_DIR=/usr/share/java -LIB_CLASSPATH=$JAVA_DIR/scala-library.jar:$JAVA_DIR/scala-compiler.jar:$JAVA_DIR/jline.jar - -exec ${JAVACMD:=java} ${JAVA_OPTS:=-Xmx256M -Xms16M} \ - -Xbootclasspath/a:$LIB_CLASSPATH \ - -classpath $LIB_CLASSPATH \ - scala.tools.nsc.MainGenericRunner \ - "$@" diff --git a/debian/command-scripts/scalac b/debian/command-scripts/scalac deleted file mode 100755 index 89c424a6e6..0000000000 --- a/debian/command-scripts/scalac +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -JAVA_DIR=/usr/share/java -SCALAC_CLASSPATH=$JAVA_DIR/scala-library.jar:$JAVA_DIR/scala-compiler.jar - -exec ${JAVACMD:=java} ${JAVA_OPTS:=-Xmx256M -Xms16M} \ - -Xbootclasspath/a:$SCALAC_CLASSPATH \ - -classpath $SCALAC_CLASSPATH -Dscala.boot.class.path=$SCALAC_CLASSPATH \ - scala.tools.nsc.Main "$@" diff --git a/debian/command-scripts/scaladoc b/debian/command-scripts/scaladoc deleted file mode 100755 index 318829da92..0000000000 --- a/debian/command-scripts/scaladoc +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -JAVA_DIR=/usr/share/java -SCALAC_CLASSPATH=$JAVA_DIR/scala-library.jar:$JAVA_DIR/scala-compiler.jar - -exec ${JAVACMD:=java} ${JAVA_OPTS:=-Xmx256M -Xms16M} -classpath $SCALAC_CLASSPATH scala.tools.nsc.Main -doc "$@" diff --git a/debian/compat b/debian/compat deleted file mode 100644 index 7813681f5b..0000000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 \ No newline at end of file diff --git a/debian/control b/debian/control deleted file mode 100644 index 2bc58da49d..0000000000 --- a/debian/control +++ /dev/null @@ -1,31 +0,0 @@ -Source: scala -Section: devel -Priority: optional -Maintainer: Lex Spoon -Standards-Version: 3.7.2 -Build-Depends: gcj-4.1, java-gcj-compat-dev, gij | java-virtual-machine, ant, debhelper (>= 5) - -Package: scala -Architecture: all -Depends: scala-library, java-gcj-compat-dev, gij | java-virtual-machine -Recommends: sbaz -Description: The Scala programming language - Scala is a Java-compatible programming language with many - modern language features. It is Java-compatible in that - Scala and Java classes can directly reference each other and - subclass each other with no glue code needed. It - includes modern language features such as closures, - pattern-matching, parametric types, and virtual type members. - . - This package includes the various tools used to develop - code written in Scala. It includes a compiler (scalac), - an interpreter and script runner (scala), the offline - compiler (fsc), and source-scanning documentation - generator (scaladoc). - - -Package: scala-library -Architecture: all -Depends: gij | java-virtual-machine -Description: The Scala standard library - This run-time library is needed to run Scala programs. diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index 2e27f4d5a6..0000000000 --- a/debian/copyright +++ /dev/null @@ -1,43 +0,0 @@ -The original source of this package is http://www.scala-lang.org . The -original authors are the members of the Programming Methods Laboratory -(LAMP) of the Swiss Federal Institute of Technology (EPFL), Lausanne, -Switzerland. - -This package was originally assembled by Lex Spoon (lex@debian.org). - - -SCALA LICENSE - -Copyright (c) 2002-2008 EPFL, Lausanne, unless otherwise specified. -All rights reserved. - -This software was developed by the Programming Methods Laboratory of the -Swiss Federal Institute of Technology (EPFL), Lausanne, Switzerland. - -Permission to use, copy, modify, and distribute this software in source -or binary form for any purpose with or without fee is hereby granted, -provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the EPFL nor the names of its contributors - may be used to endorse or promote products derived from this - software without specific prior written permission. - - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. diff --git a/debian/rules b/debian/rules deleted file mode 100755 index b5e290659b..0000000000 --- a/debian/rules +++ /dev/null @@ -1,52 +0,0 @@ -#!/usr/bin/make -f - -# Uncomment this to turn on verbose mode. -export DH_VERBOSE=1 - -build: build-stamp -build-stamp: - dh_testdir - ANT_OPTS=-Xmx1024M ant -f debian/simpbuild.xml build docs dist - touch build-stamp - -clean: - dh_testdir - dh_clean -A - rm -rf build simpbuild dists - rm -f src/actors/scala/actors/ThreadPoolScheduler.scala - rm -f build-stamp - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs -A - - install -m644 simpbuild/lib/scala-library.jar $(CURDIR)/debian/scala-library/usr/share/java/ - install -m644 simpbuild/lib/scala-dbc.jar $(CURDIR)/debian/scala-library/usr/share/java/ - - install -m644 simpbuild/lib/scala-compiler.jar $(CURDIR)/debian/scala/usr/share/java/ - install -m755 debian/command-scripts/* $(CURDIR)/debian/scala/usr/bin/ - - dh_installdocs -A - dh_installman -pscala simpbuild/manual/man1/*.1 -Xsimpbuild/manual/man1/scalap.1 - dh_installchangelogs -A - dh_compress -A - dh_fixperms -A - - -binary-indep: build install - dh_testdir - dh_testroot - dh_installdeb -A - dh_gencontrol - dh_md5sums - dh_builddeb - - -# no arch-specific stuff, but Lintian complains if this is missing -binary-arch: - -binary: binary-indep - -.PHONY: build clean binary-indep binary install diff --git a/debian/scala-library.dirs b/debian/scala-library.dirs deleted file mode 100644 index f5cd8f2042..0000000000 --- a/debian/scala-library.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java \ No newline at end of file diff --git a/debian/scala.dirs b/debian/scala.dirs deleted file mode 100644 index e4bc73a714..0000000000 --- a/debian/scala.dirs +++ /dev/null @@ -1,2 +0,0 @@ -usr/bin -usr/share/java diff --git a/debian/simpbuild.xml b/debian/simpbuild.xml deleted file mode 100644 index 3c788a38de..0000000000 --- a/debian/simpbuild.xml +++ /dev/null @@ -1,681 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - -
-
-
- - - - - - - - - -
- - - - - - - -
-
-
- - - - - - -
- - - - - - - -
-
-
-
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- cgit v1.2.3