summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Andrew Clemons2021-09-04 05:42:50 +0200
committer Willy Sudiarto Raharjo2021-09-06 03:50:38 +0200
commit320985605ebeeaf8818df545c1467cc3de2aa449 (patch)
tree43a371dde37d23a1dcbf17fa011a556356000c8a
parent5d5c79002b9b36c55a70de1602c94fe575fb6890 (diff)
downloadslackbuilds-320985605ebeeaf8818df545c1467cc3de2aa449.tar.gz
development/eclim: Removed (no longer builds).
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--development/eclim/630fbcd5e6caa810f721b0f0de9478aaf78f7958.patch.gzbin1493 -> 0 bytes
-rw-r--r--development/eclim/README17
-rw-r--r--development/eclim/eclim.SlackBuild167
-rw-r--r--development/eclim/eclim.info12
-rw-r--r--development/eclim/slack-desc19
-rw-r--r--development/eclim/sphinx2.patch.gzbin584 -> 0 bytes
6 files changed, 0 insertions, 215 deletions
diff --git a/development/eclim/630fbcd5e6caa810f721b0f0de9478aaf78f7958.patch.gz b/development/eclim/630fbcd5e6caa810f721b0f0de9478aaf78f7958.patch.gz
deleted file mode 100644
index e759181210..0000000000
--- a/development/eclim/630fbcd5e6caa810f721b0f0de9478aaf78f7958.patch.gz
+++ /dev/null
Binary files differ
diff --git a/development/eclim/README b/development/eclim/README
deleted file mode 100644
index 86b549b422..0000000000
--- a/development/eclim/README
+++ /dev/null
@@ -1,17 +0,0 @@
-eclim - The power of Eclipse in your favourite editor.
-
-Eclim provides the ability to access Eclipse code editing features via
-the command line or a local network connection, allowing those features
-to be integrated with your favourite editor.
-
-This package builds against eclipse-java, but can also be built against
-eclipse-jee or eclipse-cpp instead. In that case, pass the eclipse home
-directory to the script:
-
-ECLIPSE_HOME=/opt/eclipse-jee ./eclim.SlackBuild
-
-or
-
-ECLIPSE_HOME=/opt/eclipse-cpp ./eclim.SlackBuild
-
-apache-ant and Sphinx are only needed at build-time, not runtime.
diff --git a/development/eclim/eclim.SlackBuild b/development/eclim/eclim.SlackBuild
deleted file mode 100644
index 9f57bcdee1..0000000000
--- a/development/eclim/eclim.SlackBuild
+++ /dev/null
@@ -1,167 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for eclim
-
-# Copyright 2016-2019 Andrew Clemons, Wellington New Zealand
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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.
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=eclim
-VERSION=${VERSION:-2.8.0}
-SPHINX_BOOTSTRAP_VERSION=${SPHINX_BOOTSTRAP_VERSION:-0.7.1}
-BUILD=${BUILD:-3}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
-if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
- echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
- exit 0
-fi
-
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -mtune=i686"
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
-else
- SLKCFLAGS="-O2"
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf "$PRGNAM"_"$VERSION"
-tar xvf $CWD/"$PRGNAM"_"$VERSION".tar.gz
-cd $"$PRGNAM"_"$VERSION"
-
-zcat $CWD/630fbcd5e6caa810f721b0f0de9478aaf78f7958.patch.gz | patch -p1
-zcat $CWD/sphinx2.patch.gz | patch -p1
-
-rm -rf doc/theme
-
-(
- cd doc
- tar -xf "$CWD/sphinx-bootstrap-theme-$SPHINX_BOOTSTRAP_VERSION.tar.gz"
- mv "sphinx-bootstrap-theme-$SPHINX_BOOTSTRAP_VERSION" theme
-)
-
-chown -R root:root .
-find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
- -o -perm 511 \) -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-
-# http://eclim.org/install.html#install-source
-(
- # build nailgun
- cd org.eclim/nailgun
-
- chmod +x configure
- sed -i 's/ -s -O3//' Makefile.in
-
- CFLAGS="$SLKCFLAGS" \
- CXXFLAGS="$SLKCFLAGS" \
- ./configure
-
- make
-
- find . -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-)
-
-chmod +x bin/sphinx
-
-# allow building with root - eek
-sed -i "s/'root'/'dummy'/g" ant/build.gant
-
-ECLIPSE_HOME=${ECLIPSE_HOME:-/opt/eclipse-java}
-ECLIPSE_HOME=${ECLIPSE_HOME%/}
-
-# thanks to the archlinux maintainer (thanks to mikezackles)
-sed -i \
- -e "s|File(getVariable('eclipse')|File('$ECLIPSE_HOME/'|g" \
- -e 's|${user.home}/\.|${vim.files}/|g' \
- -e '70,94d' \
- ant/build.gant
-
-ant build -Declipse.home=$ECLIPSE_HOME -Dvim.files=/usr/share/vim/vimfiles -Dfile.encoding=UTF-8
-
-mkdir -p $PKG/usr/share/vim/vimfiles
-mkdir -p $PKG$ECLIPSE_HOME
-
-ant docs vimdocs -Declipse.home=$ECLIPSE_HOME -Dvim.files=$PKG/usr/share/vim/vimfiles -Dfile.encoding=UTF-8
-ant deploy -Declipse.home=$PKG$ECLIPSE_HOME -Dvim.files=$PKG/usr/share/vim/vimfiles -Dfile.encoding=UTF-8
-
-# tidy up
-sed -i "s|$PKG||" \
- $PKG$ECLIPSE_HOME/plugins/org.eclim_$VERSION/bin/eclimd \
- $PKG$ECLIPSE_HOME/plugins/org.eclim_$VERSION/plugin.properties \
- $PKG/usr/share/vim/vimfiles/eclim/plugin/eclim.vim
-
-# generate tags for help files
-echo "ignored" | vim \
- -c "set rtp^=$PKG/usr/share/vim/vimfiles" \
- -c "source $PKG/usr/share/vim/vimfiles/plugin/eclim.vim" \
- -c 'silent! EclimHelp' \
- -c 'q!' -
-
-find $PKG$ECLIPSE_HOME/plugins/org.eclim_$VERSION/nailgun \! -name ng -mindepth 1 -print0 | xargs -0 rm -rf
-rm -rf build/doc/site/.doctrees
-
-# neovim support
-mkdir -p $PKG/usr/share/nvim/runtime/plugin
-(
- cd $PKG/usr/share/nvim/runtime
-
- ln -s ../../vim/vimfiles/eclim eclim
- ln -s ../../../vim/vimfiles/plugin/eclim.vim plugin/eclim.vim
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- build/doc/site \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/development/eclim/eclim.info b/development/eclim/eclim.info
deleted file mode 100644
index 070fda41e8..0000000000
--- a/development/eclim/eclim.info
+++ /dev/null
@@ -1,12 +0,0 @@
-PRGNAM="eclim"
-VERSION="2.8.0"
-HOMEPAGE="http://eclim.org"
-DOWNLOAD="https://github.com/ervandew/eclim/releases/download/2.8.0/eclim_2.8.0.tar.gz \
- https://github.com/ryan-roemer/sphinx-bootstrap-theme/archive/v0.7.1/sphinx-bootstrap-theme-0.7.1.tar.gz"
-MD5SUM="aae873ee270d6c7b21a6ff3bec3f08ad \
- f2cd079095fd6b41b0762b98133b7752"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="apache-ant eclipse-java Sphinx"
-MAINTAINER="Andrew Clemons"
-EMAIL="andrew.clemons@gmail.com"
diff --git a/development/eclim/slack-desc b/development/eclim/slack-desc
deleted file mode 100644
index 8bc8bed87a..0000000000
--- a/development/eclim/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description.
-# Line up the first '|' above the ':' following the base package name, and
-# the '|' on the right side marks the last column you can put a character in.
-# You must make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-eclim: eclim (The power of Eclipse in your favorite editor.)
-eclim:
-eclim: Eclim provides the ability to access Eclipse code editing features
-eclim: (code completion, searching, code validation, and many more) via the
-eclim: command line or a local network connection, allowing those features
-eclim: to be integrated with your favorite editor.
-eclim:
-eclim:
-eclim:
-eclim: http://eclim.org/
-eclim:
diff --git a/development/eclim/sphinx2.patch.gz b/development/eclim/sphinx2.patch.gz
deleted file mode 100644
index bf446a3bf4..0000000000
--- a/development/eclim/sphinx2.patch.gz
+++ /dev/null
Binary files differ