From 81f523ff234dfc5e4f8c40ea2e680dcab746ce38 Mon Sep 17 00:00:00 2001 From: Matteo Bernardini Date: Fri, 11 Feb 2022 15:30:35 +0100 Subject: development/eric: Removed (needs PyQt4). Newer versions need editorconfig-core-py and other dependencies not present on SBo Signed-off-by: Matteo Bernardini Signed-off-by: Willy Sudiarto Raharjo --- development/eric/README | 8 --- development/eric/doinst.sh | 3 -- development/eric/eric.SlackBuild | 104 --------------------------------------- development/eric/eric.info | 12 ----- development/eric/eric4.desktop | 9 ---- development/eric/eric4.png | Bin 19378 -> 0 bytes development/eric/slack-desc | 19 ------- 7 files changed, 155 deletions(-) delete mode 100644 development/eric/README delete mode 100644 development/eric/doinst.sh delete mode 100644 development/eric/eric.SlackBuild delete mode 100644 development/eric/eric.info delete mode 100644 development/eric/eric4.desktop delete mode 100644 development/eric/eric4.png delete mode 100644 development/eric/slack-desc diff --git a/development/eric/README b/development/eric/README deleted file mode 100644 index 4b128584f2..0000000000 --- a/development/eric/README +++ /dev/null @@ -1,8 +0,0 @@ -Eric is a full featured Python and Ruby editor and IDE, written in -python. It is based on the cross platform Qt gui toolkit, integrating -the highly flexible Scintilla editor control. It is designed to be -usable as everdays' quick and dirty editor as well as being usable as a -professional project management tool integrating many advanced features -Python offers the professional coder. eric4 includes a plugin system, -which allows easy extension of the IDE functionality with plugins -downloadable from the net. diff --git a/development/eric/doinst.sh b/development/eric/doinst.sh deleted file mode 100644 index 5fb28930db..0000000000 --- a/development/eric/doinst.sh +++ /dev/null @@ -1,3 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi diff --git a/development/eric/eric.SlackBuild b/development/eric/eric.SlackBuild deleted file mode 100644 index 43429f30c0..0000000000 --- a/development/eric/eric.SlackBuild +++ /dev/null @@ -1,104 +0,0 @@ -#!/bin/bash - -# Slackware build script for eric4 -# Copyright 2009-2015 Rudson Alves -# 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=eric -VERSION=${VERSION:-4.5.25} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -LANGUAGE=${LANGUAGE:-en} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - 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" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -PYTHONSITEPKG=$(python -c "import sys, os; print os.path.join('/usr/lib${LIBDIRSUFFIX}', 'python%s' % sys.version[:3], 'site-packages')") - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf ${PRGNAM}4-$VERSION -tar -xvf $CWD/${PRGNAM}4-$VERSION.tar.gz -tar -xvf $CWD/${PRGNAM}4-i18n-${LANGUAGE}-$VERSION.tar.gz -cd ${PRGNAM}4-$VERSION - -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 {} \; - -python install.py -i $PKG -d "$PYTHONSITEPKG" -b /usr/bin - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a LICENSE.GPL3 README-i18n.txt changelog README THANKS \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/usr/share/applications -sed s/lib/lib${LIBDIRSUFFIX}/ $CWD/eric4.desktop \ - > $PKG/usr/share/applications/eric4.desktop -cp $CWD/eric4.png $PKG$PYTHONSITEPKG/eric4/pixmaps/ - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/development/eric/eric.info b/development/eric/eric.info deleted file mode 100644 index db98f87498..0000000000 --- a/development/eric/eric.info +++ /dev/null @@ -1,12 +0,0 @@ -PRGNAM="eric" -VERSION="4.5.25" -HOMEPAGE="http://eric-ide.python-projects.org/" -DOWNLOAD="https://src.fedoraproject.org/repo/pkgs/eric/eric4-4.5.25.tar.gz/f68cdadacfa10298c89300e0c4036324/eric4-4.5.25.tar.gz \ - https://src.fedoraproject.org/repo/pkgs/eric/eric4-i18n-en-4.5.25.tar.gz/be31efb97dc597cc58ba86461f972874/eric4-i18n-en-4.5.25.tar.gz" -MD5SUM="f68cdadacfa10298c89300e0c4036324 \ - be31efb97dc597cc58ba86461f972874" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Rudson Alves" -EMAIL="alves@rra.etc.br" diff --git a/development/eric/eric4.desktop b/development/eric/eric4.desktop deleted file mode 100644 index dcb16b5117..0000000000 --- a/development/eric/eric4.desktop +++ /dev/null @@ -1,9 +0,0 @@ -[Desktop Entry] -Type=Application -Exec=eric4 %u -MimeType=application/py; -Icon=/usr/lib/python2.7/site-packages/eric4/pixmaps/eric4.png -Terminal=false -Categories=Qt;KDE;Development;IDE; -Name=Eric4 -Comment=Eric4 IDE for Python diff --git a/development/eric/eric4.png b/development/eric/eric4.png deleted file mode 100644 index 6672dbd44a..0000000000 Binary files a/development/eric/eric4.png and /dev/null differ diff --git a/development/eric/slack-desc b/development/eric/slack-desc deleted file mode 100644 index 3392b25cbe..0000000000 --- a/development/eric/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------------------------------------------------------| -eric: eric (Eric is a full featured Python and Ruby editor and IDE) -eric: -eric: Eric is a full featured Python and Ruby editor and IDE, written in -eric: python. It is based on the cross platform Qt gui toolkit, integrating -eric: the highly flexible Scintilla editor control. It is designed to be -eric: usable as everdays' quick and dirty editor as well as being usable as -eric: a professional project management tool integrating many advanced -eric: features Python offers the professional coder. -eric: -eric: http://eric-ide.python-projects.org/ -eric: -- cgit v1.2.3