development/eclim: Fix building against Sphinx-2.

Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
This commit is contained in:
Andrew Clemons 2019-07-25 09:53:13 +12:00 committed by Willy Sudiarto Raharjo
parent 3cd8f0149c
commit 8d16392688
No known key found for this signature in database
GPG key ID: 887B8374D7333381
3 changed files with 18 additions and 4 deletions

View file

@ -2,7 +2,7 @@
# Slackware build script for eclim
# Copyright 2016-2018 Andrew Clemons, Wellington New Zealand
# Copyright 2016-2019 Andrew Clemons, Wellington New Zealand
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -24,7 +24,8 @@
PRGNAM=eclim
VERSION=${VERSION:-2.8.0}
BUILD=${BUILD:-2}
SPHINX_BOOTSTRAP_VERSION=${SPHINX_BOOTSTRAP_VERSION:-0.7.1}
BUILD=${BUILD:-3}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@ -58,7 +59,18 @@ 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 \

View file

@ -1,8 +1,10 @@
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"
MD5SUM="aae873ee270d6c7b21a6ff3bec3f08ad"
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"

Binary file not shown.