diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-07-17 07:08:49 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-07-17 07:08:49 +0700 |
commit | 81a622f577a690e2ccb7c156c75d6e85185eb476 (patch) | |
tree | 4bb88ae4639feee79131d74fb04656904bddd951 /development | |
parent | eb68bfb9471ea44599713709a1d8ac3bb14a7022 (diff) | |
download | slackbuilds-81a622f577a690e2ccb7c156c75d6e85185eb476.tar.gz |
development/zed: Removed (inactive project).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/zed/README | 26 | ||||
-rw-r--r-- | development/zed/doinst.sh | 13 | ||||
-rw-r--r-- | development/zed/slack-desc | 19 | ||||
-rw-r--r-- | development/zed/zed.SlackBuild | 99 | ||||
-rw-r--r-- | development/zed/zed.desktop | 8 | ||||
-rw-r--r-- | development/zed/zed.info | 10 |
6 files changed, 0 insertions, 175 deletions
diff --git a/development/zed/README b/development/zed/README deleted file mode 100644 index 8a4585e278..0000000000 --- a/development/zed/README +++ /dev/null @@ -1,26 +0,0 @@ -Zed is a fully offline-capable, open source, keyboard-focused, text and -code editor for power users. You can use Zed to edit local files as -well as remote files on any server. - -Zed has all features you'd expect from a capable code editor: - -- Syntax highlighting for many programming languages (e.g. C, Clojure, - CoffeeScript, C#, CSS, Dart, Erlang, Go, Haml, Haskell, HTML, ini files, - Java, JavaScript, JSON, LogiQL, Lua, Markdown, Nix, PHP, Plist, Protobufs, - Python, Ruby, Shell, XML) - -- Code completion: symbols, snippets and property/method completion. - -- Built-in linting for some languages with inline markers (JavaScript, - CoffeeScript, JSON, Lua, CSS) - -- Multiple cursors - -- Split-view editing - -- Themes: light and dark themes out of the box and you can easily develop - your own using CSS. - -To learn more about Zed's remote editing, look here: - -http://zedapp.org/features/edit-remote-files/ diff --git a/development/zed/doinst.sh b/development/zed/doinst.sh deleted file mode 100644 index aea0f894eb..0000000000 --- a/development/zed/doinst.sh +++ /dev/null @@ -1,13 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi - -if [ -x /usr/bin/update-mime-database ]; then - /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 -fi - -if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then - if [ -x /usr/bin/gtk-update-icon-cache ]; then - /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1 - fi -fi diff --git a/development/zed/slack-desc b/development/zed/slack-desc deleted file mode 100644 index 3c17d41d80..0000000000 --- a/development/zed/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------------------------------------------------------| -zed: zed (text and code editor) -zed: -zed: Zed is a fully offline-capable, open source, keyboard-focused, -zed: text and code editor for power users. -zed: -zed: You can use Zed to edit local files as well as remote files -zed: on any server. -zed: -zed: -zed: http://zedapp.org/ -zed: diff --git a/development/zed/zed.SlackBuild b/development/zed/zed.SlackBuild deleted file mode 100644 index 9e9f4202ff..0000000000 --- a/development/zed/zed.SlackBuild +++ /dev/null @@ -1,99 +0,0 @@ -#!/bin/sh - -# Slackware build script for zed -# Ryan P.C. McQuen | Everett, WA | ryanpcmcquen@member.fsf.org -# Brenton Earl | brent@exitstatusone.com - -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version, with the following exception: -# the text of the GPL license may be omitted. - -# This program is distributed in the hope that it will be useful, but -# without any warranty; without even the implied warranty of -# merchantability or fitness for a particular purpose. Compiling, -# interpreting, executing or merely reading the text of the program -# may result in lapses of consciousness and/or very being, up to and -# including the end of all existence and the Universe as we know it. -# See the GNU General Public License for more details. - -# You may have received a copy of the GNU General Public License along -# with this program (most likely, a file named COPYING). If not, see -# <https://www.gnu.org/licenses/>. - -PRGNAM=zed -SRCNAM=Zed -VERSION=${VERSION:-1.1.0} -BUILD=${BUILD:-4} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-${PRGNAM} -OUTPUT=${OUTPUT:-/tmp} - -SHORTARCH=`getconf LONG_BIT` - -if [ "$ARCH" = "i586" ]; then - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - LIBDIRSUFFIX="64" -else - LIBDIRSUFFIX="" -fi - -set -eu - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf ${PRGNAM} -tar -xvf $CWD/${PRGNAM}-linux${SHORTARCH}-v${VERSION}.tar.gz -cd ${PRGNAM} -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 {} \; - -mkdir -pv $PKG/opt/${PRGNAM}/libs/ -cp -Rav * $PKG/opt/${PRGNAM} - -mkdir -p $PKG/usr/bin -## we make our own script since zed -## has to run from its own directory -cat <<EOT > $PKG/usr/bin/${PRGNAM} -#!/bin/sh -/opt/${PRGNAM}/${PRGNAM} "$@" -EOT - -chmod 755 $PKG/usr/bin/${PRGNAM} - -mkdir -p $PKG/usr/share/pixmaps -ln -sf /opt/${PRGNAM}/${SRCNAM}.png $PKG/usr/share/pixmaps/${PRGNAM}.png - -mkdir -p $PKG/usr/share/applications -cat $CWD/${PRGNAM}.desktop > $PKG/usr/share/applications/${PRGNAM}.desktop - -mkdir -p $PKG/usr/doc/${PRGNAM}-${VERSION} -cat $CWD/${PRGNAM}.SlackBuild > $PKG/usr/doc/${PRGNAM}-${VERSION}/${PRGNAM}.SlackBuild -cat $CWD/README > $PKG/usr/doc/${PRGNAM}-${VERSION}/README - -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:-tgz} diff --git a/development/zed/zed.desktop b/development/zed/zed.desktop deleted file mode 100644 index 8543525fe5..0000000000 --- a/development/zed/zed.desktop +++ /dev/null @@ -1,8 +0,0 @@ -[Desktop Entry] -Name=Zed -Comment=A text and code editor for power users. -Exec=zed %U -Icon=/usr/share/pixmaps/zed.png -Type=Application -StartupNotify=true -Categories=GNOME;GTK;Utility;TextEditor; diff --git a/development/zed/zed.info b/development/zed/zed.info deleted file mode 100644 index 2bd112f366..0000000000 --- a/development/zed/zed.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="zed" -VERSION="1.1.0" -HOMEPAGE="http://zedapp.org/" -DOWNLOAD="http://download.zedapp.org/zed-linux32-v1.1.0.tar.gz" -MD5SUM="43b7912ea9717c0c8946a3921f133e6e" -DOWNLOAD_x86_64="http://download.zedapp.org/zed-linux64-v1.1.0.tar.gz" -MD5SUM_x86_64="3b221d81275c425ed7f2cf1f34a52e05" -REQUIRES="" -MAINTAINER="Brenton Earl" -EMAIL="brent@exitstatusone.com" |