From: Victor Martinez Date: Fri, 27 Jul 2018 01:30:41 +0000 (+0200) Subject: bash: removed not needed overlay X-Git-Url: http://gitweb/?a=commitdiff_plain;h=5ffab45c62452e0f51c4944833897d560c869ad6;p=ports%2Fcore-arm.git bash: removed not needed overlay --- diff --git a/bash/.footprint b/bash/.footprint deleted file mode 100644 index 45306de..0000000 --- a/bash/.footprint +++ /dev/null @@ -1,9 +0,0 @@ -drwxr-xr-x root/root bin/ --rwxr-xr-x root/root bin/bash -drwxr-xr-x root/root etc/ --rw-r--r-- root/root etc/profile -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/bash.1.gz diff --git a/bash/.md5sum b/bash/.md5sum deleted file mode 100644 index 8a41cd8..0000000 --- a/bash/.md5sum +++ /dev/null @@ -1,3 +0,0 @@ -6d9519d872f09b8cc5e001c9bd9ff2e6 bash-4.4.19.patch.gz -148888a7c95ac23705559b6f477dfe25 bash-4.4.tar.gz -be4c698ea8bb7d52eab2d6ce2c3fab8e profile diff --git a/bash/Pkgfile b/bash/Pkgfile deleted file mode 100644 index 1bf3ac7..0000000 --- a/bash/Pkgfile +++ /dev/null @@ -1,29 +0,0 @@ -# Description: An sh-compatible command language interpreter -# URL: http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html -# Maintainer: CRUX System Team, core-ports at crux dot nu -# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu -# Depends on: ncurses readline - -name=bash -version=4.4.19 -release=1 -source=(http://ftpmirror.gnu.org/gnu/$name/$name-${version:0:3}.tar.gz \ - $name-$version.patch.gz profile) - -build() { - cd $name-${version:0:3} - - gunzip -c $SRC/$name-$version.patch.gz | patch -p0 - - ./configure --prefix=/usr \ - --build=arm-unknown-linux-gnueabihf \ - --exec-prefix= \ - --disable-nls \ - --with-curses \ - --with-installed-readline - make -j1 - - install -D -m 755 bash $PKG/bin/bash - install -D -m 644 doc/bash.1 $PKG/usr/share/man/man1/bash.1 - install -D -m 644 $SRC/profile $PKG/etc/profile -} diff --git a/bash/bash-4.4.19.patch.gz b/bash/bash-4.4.19.patch.gz deleted file mode 100644 index ec45645..0000000 Binary files a/bash/bash-4.4.19.patch.gz and /dev/null differ diff --git a/bash/profile b/bash/profile deleted file mode 100644 index 1379554..0000000 --- a/bash/profile +++ /dev/null @@ -1,21 +0,0 @@ -# -# /etc/profile: system-wide defaults for bash(1) login shells -# - -if [ "$UID" = "0" ]; then - export PATH="/sbin:/usr/sbin:/opt/sbin:/bin:/usr/bin:/opt/bin" -else - export PATH="/bin:/usr/bin:/opt/bin" -fi - -if [ ! -f ~/.inputrc ]; then - export INPUTRC="/etc/inputrc" -fi - -export LESS="-R" -export PS1="\[\033[1m\]\\$ \[\033[0m\]" -export PS2="\[\033[1m\]> \[\033[0m\]" - -umask 022 - -# End of file