From 0b10d95fdb4e15ac732780faff726c6fa495d552 Mon Sep 17 00:00:00 2001 From: Slack Coder Date: Mon, 2 Oct 2023 15:47:23 -0500 Subject: remove neovim --- neovim/README | 13 --- neovim/doinst.sh | 3 - neovim/neovim.SlackBuild | 112 --------------------- neovim/neovim.info | 10 -- ...r-compare-versions-as-number-not-string-1.patch | 28 ------ neovim/slack-desc | 19 ---- 6 files changed, 185 deletions(-) delete mode 100644 neovim/README delete mode 100644 neovim/doinst.sh delete mode 100644 neovim/neovim.SlackBuild delete mode 100644 neovim/neovim.info delete mode 100644 neovim/patch/0001-fix-provider-compare-versions-as-number-not-string-1.patch delete mode 100644 neovim/slack-desc diff --git a/neovim/README b/neovim/README deleted file mode 100644 index a03c5e5..0000000 --- a/neovim/README +++ /dev/null @@ -1,13 +0,0 @@ -Neovim is a project that seeks to aggressively refactor Vim in order to: - -* Simplify maintenance and encourage contributions -* Split the work between multiple developers -* Enable the implementation of new/modern user interfaces without any - modifications to the core source -* Improve extensibility with a new plugin architecture - -note on building: -be sure to have lua (5.1) installed so that the lua-libraries neovim -depends on are packaged for 5.1 (e.g. lpeg). the lua used in neovim is -shipped with it, so lua isn't a direct dependency for neovim and not -listed in REQUIRES. diff --git a/neovim/doinst.sh b/neovim/doinst.sh deleted file mode 100644 index 5fb2893..0000000 --- a/neovim/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/neovim/neovim.SlackBuild b/neovim/neovim.SlackBuild deleted file mode 100644 index e2caaeb..0000000 --- a/neovim/neovim.SlackBuild +++ /dev/null @@ -1,112 +0,0 @@ -#!/bin/bash - -# SlackBuild script for neovim - -# Copyright 2021-2022 Ruben Schuller -# Copyright 2014-2021 Benjamin Trigona-Harany -# 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=neovim -VERSION=${VERSION:-0.7.2} -BUILD=${BUILD:-1} -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" - 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 - -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 -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 -p build -cd build - cmake \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DLIBUV_LIBRARY=/usr/lib${LIBDIRSUFFIX}/libuv.so \ - -DCMAKE_INSTALL_MANDIR=/usr/man \ - -DCMAKE_BUILD_TYPE=Release \ - .. - make install DESTDIR=$PKG -cd .. - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -find $PKG/usr/man -type f -exec gzip -9 {} \; -for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - CONTRIBUTING.md README.md \ - $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 -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/neovim/neovim.info b/neovim/neovim.info deleted file mode 100644 index bc7e2d6..0000000 --- a/neovim/neovim.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="neovim" -VERSION="0.7.2" -HOMEPAGE="https://neovim.io" -DOWNLOAD="https://github.com/neovim/neovim/archive/v0.7.2/neovim-0.7.2.tar.gz" -MD5SUM="f0fb0aa65462e36ca1ef627833266976" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="msgpack-c lua-mpack lua-lpeg lua-luv libtermkey libvterm tree-sitter" -MAINTAINER="Ruben Schuller" -EMAIL="sb@rbn.im" diff --git a/neovim/patch/0001-fix-provider-compare-versions-as-number-not-string-1.patch b/neovim/patch/0001-fix-provider-compare-versions-as-number-not-string-1.patch deleted file mode 100644 index 1b7e5a3..0000000 --- a/neovim/patch/0001-fix-provider-compare-versions-as-number-not-string-1.patch +++ /dev/null @@ -1,28 +0,0 @@ -From e16adbf238ee46b59b68a84af17bdee10ca49418 Mon Sep 17 00:00:00 2001 -From: "Tejasvi S. Tomar" <45873379+tejasvi@users.noreply.github.com> -Date: Fri, 8 Oct 2021 02:57:40 +0530 -Subject: [PATCH 1/1] fix(provider): compare versions as number, not string - #15937 - -"3.10" < "3.3" but v3.10 > v3.3 -Fixes #14586 ---- - runtime/autoload/provider/pythonx.vim | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/runtime/autoload/provider/pythonx.vim b/runtime/autoload/provider/pythonx.vim -index c292b374b..0eeb35cba 100644 ---- a/runtime/autoload/provider/pythonx.vim -+++ b/runtime/autoload/provider/pythonx.vim -@@ -96,7 +96,7 @@ function! provider#pythonx#CheckForModule(prog, module, major_version) abort - if prog_version !~ '^' . a:major_version - return [0, prog_path . ' is Python ' . prog_version . ' and cannot provide Python ' - \ . a:major_version . '.'] -- elseif prog_version =~ '^' . a:major_version && prog_version < min_version -+ elseif prog_version =~ '^' . a:major_version && str2nr(prog_version[2:]) < str2nr(min_version[2:]) - return [0, prog_path . ' is Python ' . prog_version . ' and cannot provide Python >= ' - \ . min_version . '.'] - endif --- -2.33.1 - diff --git a/neovim/slack-desc b/neovim/slack-desc deleted file mode 100644 index 59a0ea0..0000000 --- a/neovim/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------------------------------------------------------| -neovim: neovim (Vim fork) -neovim: -neovim: Neovim is a fork of the venerable text-editor vim, focused on -neovim: extensibility and usability. It is not a rewrite but a continuation -neovim: and extension of Vim. Many clones and derivatives exist, some very -neovim: clever-but none are Vim. Neovim is built for users who want the good -neovim: parts of Vim, and more. -neovim: -neovim: See a list of differences at :help vim-differences. -neovim: -neovim: -- cgit v1.2.3