aboutsummaryrefslogtreecommitdiff
path: root/assembly
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2015-02-12 12:36:26 +0000
committerSean Owen <sowen@cloudera.com>2015-02-12 12:36:26 +0000
commit9a3ea49f74b9a41dba527a7e995735f488fe0847 (patch)
treeb635193dfad26fa99e9508988386433420934e20 /assembly
parenta38e23c30fb5d12f8f46a119d91a0620036e6800 (diff)
downloadspark-9a3ea49f74b9a41dba527a7e995735f488fe0847.tar.gz
spark-9a3ea49f74b9a41dba527a7e995735f488fe0847.tar.bz2
spark-9a3ea49f74b9a41dba527a7e995735f488fe0847.zip
SPARK-5727 [BUILD] Remove Debian packaging
(for master / 1.4 only) Author: Sean Owen <sowen@cloudera.com> Closes #4526 from srowen/SPARK-5727.2 and squashes the following commits: 83ba49c [Sean Owen] Remove Debian packaging
Diffstat (limited to 'assembly')
-rw-r--r--assembly/pom.xml129
-rw-r--r--assembly/src/deb/RELEASE2
-rw-r--r--assembly/src/deb/control/control8
3 files changed, 0 insertions, 139 deletions
diff --git a/assembly/pom.xml b/assembly/pom.xml
index c1bcdbb664..fa9f56e556 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -36,10 +36,6 @@
<spark.jar.dir>scala-${scala.binary.version}</spark.jar.dir>
<spark.jar.basename>spark-assembly-${project.version}-hadoop${hadoop.version}.jar</spark.jar.basename>
<spark.jar>${project.build.directory}/${spark.jar.dir}/${spark.jar.basename}</spark.jar>
- <deb.pkg.name>spark</deb.pkg.name>
- <deb.install.path>/usr/share/spark</deb.install.path>
- <deb.user>root</deb.user>
- <deb.bin.filemode>755</deb.bin.filemode>
</properties>
<dependencies>
@@ -218,131 +214,6 @@
</build>
</profile>
<profile>
- <id>deb</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <phase>prepare-package</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <echo>
- NOTE: Debian packaging is deprecated and is scheduled to be removed in Spark 1.4.
- </echo>
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>buildnumber-maven-plugin</artifactId>
- <version>1.2</version>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>create</goal>
- </goals>
- <configuration>
- <shortRevisionLength>8</shortRevisionLength>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.vafer</groupId>
- <artifactId>jdeb</artifactId>
- <version>0.11</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>jdeb</goal>
- </goals>
- <configuration>
- <deb>${project.build.directory}/${deb.pkg.name}_${project.version}-${buildNumber}_all.deb</deb>
- <attach>false</attach>
- <compression>gzip</compression>
- <dataSet>
- <data>
- <src>${spark.jar}</src>
- <type>file</type>
- <mapper>
- <type>perm</type>
- <user>${deb.user}</user>
- <group>${deb.user}</group>
- <prefix>${deb.install.path}/jars</prefix>
- </mapper>
- </data>
- <data>
- <src>${basedir}/src/deb/RELEASE</src>
- <type>file</type>
- <mapper>
- <type>perm</type>
- <user>${deb.user}</user>
- <group>${deb.user}</group>
- <prefix>${deb.install.path}</prefix>
- </mapper>
- </data>
- <data>
- <src>${basedir}/../conf</src>
- <type>directory</type>
- <mapper>
- <type>perm</type>
- <user>${deb.user}</user>
- <group>${deb.user}</group>
- <prefix>${deb.install.path}/conf</prefix>
- <filemode>${deb.bin.filemode}</filemode>
- </mapper>
- </data>
- <data>
- <src>${basedir}/../bin</src>
- <type>directory</type>
- <mapper>
- <type>perm</type>
- <user>${deb.user}</user>
- <group>${deb.user}</group>
- <prefix>${deb.install.path}/bin</prefix>
- <filemode>${deb.bin.filemode}</filemode>
- </mapper>
- </data>
- <data>
- <src>${basedir}/../sbin</src>
- <type>directory</type>
- <mapper>
- <type>perm</type>
- <user>${deb.user}</user>
- <group>${deb.user}</group>
- <prefix>${deb.install.path}/sbin</prefix>
- <filemode>${deb.bin.filemode}</filemode>
- </mapper>
- </data>
- <data>
- <src>${basedir}/../python</src>
- <type>directory</type>
- <mapper>
- <type>perm</type>
- <user>${deb.user}</user>
- <group>${deb.user}</group>
- <prefix>${deb.install.path}/python</prefix>
- <filemode>${deb.bin.filemode}</filemode>
- </mapper>
- </data>
- </dataSet>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
<id>kinesis-asl</id>
<dependencies>
<dependency>
diff --git a/assembly/src/deb/RELEASE b/assembly/src/deb/RELEASE
deleted file mode 100644
index aad50ee73a..0000000000
--- a/assembly/src/deb/RELEASE
+++ /dev/null
@@ -1,2 +0,0 @@
-compute-classpath.sh uses the existence of this file to decide whether to put the assembly jar on the
-classpath or instead to use classfiles in the source tree. \ No newline at end of file
diff --git a/assembly/src/deb/control/control b/assembly/src/deb/control/control
deleted file mode 100644
index a6b4471d48..0000000000
--- a/assembly/src/deb/control/control
+++ /dev/null
@@ -1,8 +0,0 @@
-Package: [[deb.pkg.name]]
-Version: [[version]]-[[buildNumber]]
-Section: misc
-Priority: extra
-Architecture: all
-Maintainer: Matei Zaharia <matei.zaharia@gmail.com>
-Description: [[name]]
-Distribution: development