Removed remains of the old toolchain method.

Change-Id: Ib885730acdbb27707ce2caadadc3f9ce86fdd0ca
This commit is contained in:
Alex Henning
2014-11-12 15:27:29 -05:00
parent 19737ba443
commit 54951c888f
8 changed files with 0 additions and 72 deletions

View File

@@ -1,16 +0,0 @@
prefix = /usr
eclipsedir = $(prefix)/share/eclipse/dropins/frcsim
plugindir = $(eclipsedir)/plugins
featuredir = $(eclipsedir)/features
all: clean
sh ./genfeatures.sh
clean:
rm -rf build
install: all
mkdir -p $(DESTDIR)$(plugindir)
mkdir -p $(DESTDIR)$(featuredir)
install plugins/** $(DESTDIR)$(plugindir)
cp -r build/features/** $(DESTDIR)$(featuredir)

View File

@@ -1,5 +0,0 @@
frcsim-eclipse-toolchain-plugin (0.1-1) trusty; urgency=low
* Initial release.
-- Alex Henning <alex@thoriumrobotics.com> Wed, 14 May 2014 21:04:27 -0400

View File

@@ -1,13 +0,0 @@
Source: frcsim-eclipse-toolchain-plugin
Maintainer: Alex Henning <alex@thoriumrobotics.com>
Section: misc
Priority: optional
Standards-Version: 3.9.4
Build-Depends: debhelper (>= 9)
Package: frcsim-eclipse-toolchain-plugin
Architecture: all
Depends: ${shlibs:Depends}, ${misc:Depends}, eclipse, eclipse-jdt, eclipse-cdt
Description: FRC plugin for developing code for RoboRIO and WPILibSim.
This plugin allows the usage of eclipse for development of WPILib
robot code for the RoboRIO and simulation in gazebo.

View File

@@ -1,25 +0,0 @@
Copyright
Copyright (c) 2009 FIRST
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* 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.
* Neither the name of the FIRST 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 FIRST AND CONTRIBUTORS``AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY NONINFRINGEMENT AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL FIRST 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.

View File

@@ -1,8 +0,0 @@
mkdir -p build/zips/features
mkdir -p build/features
for i in features/*.jar; do
echo $i
cp $i build/zips/$i.zip;
mkdir build/$i
unzip build/zips/$i.zip -d build/$i
done