CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
bash: removed not needed overlay
authorVictor Martinez <pitillo@ono.com>
Fri, 27 Jul 2018 01:30:41 +0000 (03:30 +0200)
committerVictor Martinez <pitillo@ono.com>
Fri, 27 Jul 2018 01:30:41 +0000 (03:30 +0200)
bash/.footprint [deleted file]
bash/.md5sum [deleted file]
bash/Pkgfile [deleted file]
bash/bash-4.4.19.patch.gz [deleted file]
bash/profile [deleted file]

diff --git a/bash/.footprint b/bash/.footprint
deleted file mode 100644 (file)
index 45306de..0000000
+++ /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 (file)
index 8a41cd8..0000000
+++ /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 (file)
index 1bf3ac7..0000000
+++ /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 (file)
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 (file)
index 1379554..0000000
+++ /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