]> git.ipfire.org Git - people/pmueller/ipfire-3.x.git/blobdiff - bash/bash.nm
elfutils: Correctly configure debuginfod
[people/pmueller/ipfire-3.x.git] / bash / bash.nm
index d78fb71c62bd6a6ceaf2d48fbd3e68c689269428..79712e9341d0a59a86efe91b0e8340ae2cf3c0ea 100644 (file)
@@ -4,22 +4,22 @@
 ###############################################################################
 
 name       = bash
-version    = 4.2
-release    = 10
+version    = 5.2.15
+release    = 2
 
 groups     = System/Tools
-url        = http://www.gnu.org/software/bash/
+url        = https://www.gnu.org/software/bash/
 license    = GPLv2+
 summary    = Bash is short for born again shell.
 
 description
-       Bash is the shell, or command language interpreter, that will appear in \
-       the GNU operating system. Bash is an sh-compatible shell that incorporates \
-       useful features from the Korn shell (ksh) and C shell (csh). It is intended \
+       Bash is the shell, or command language interpreter, that will appear in
+       the GNU operating system. Bash is an sh-compatible shell that incorporates
+       useful features from the Korn shell (ksh) and C shell (csh). It is intended
        to conform to the IEEE POSIX P1003.2/ISO 9945.2 Shell and Tools standard.
 end
 
-source_dl  = http://ftp.gnu.org/gnu/bash/
+source_dl  = https://ftp.gnu.org/gnu/bash/
 
 build
        requires
@@ -28,7 +28,7 @@ build
                bison
                filesystem >= 002
                ncurses-devel
-               readline-devel
+               readline-devel >= 8.0
                texinfo
        end
 
@@ -37,24 +37,43 @@ build
                # RTLD_NOW (it is defined from <dlfcn.h>:
                sed -e "s/filename, RTLD_LAZY/filename, RTLD_NOW/" \
                        -i builtins/enable.def
-
-               sed -i "s|htmldir = @htmldir@|htmldir = /usr/share/doc/%{thisapp}|" \
-                       Makefile.in
        end
 
+       CPPFLAGS += -D_GNU_SOURCE %(getconf LFS_CFLAGS)
+
+       CPPFLAGS += -DNON_INTERACTIVE_LOGIN_SHELLS
+       CPPFLAGS += -DSSH_SOURCE_BASHRC
+
+       # Recycles pids is neccessary. When bash's last fork's pid was X
+       # and new fork's pid is also X, bash has to wait for this same pid.
+       # Without Recycles pids bash will not wait.
+       CPPFLAGS += -DRECYCLES_PIDS
+
+       CPPFLAGS += \
+               -DDEFAULT_PATH_VALUE='\"/usr/local/bin:/usr/bin\"' \
+               -DSTANDARD_UTILS_PATH='\"/bin:/usr/bin:/sbin:/usr/sbin\"' \
+               -DSYS_BASH_LOGOUT='\"/etc/bash.bash_logout\"'
+
        configure_options += \
-               --without-bash-malloc \
-               --with-installed-readline
+               --with-installed-readline \
+               --with-afs \
+               --with-bash-malloc=no
 
-       # Test hangs forever
-       #def test
-       #       make tests
-       #end
+       make_build_targets += CPPFLAGS="%{CPPFLAGS}"
+
+       test
+               make tests
+       end
 
        install_cmds
-               mkdir -pv %{BUILDROOT}/{etc/profile.d,root}
+               mkdir -pv %{BUILDROOT}%{sysconfdir}/{profile.d,skel}
+               install -v -m 700 -d %{BUILDROOT}/root
 
                # Bash startup files
+               cp -vf %{DIR_SOURCE}/dot_bash_logout %{BUILDROOT}%{sysconfdir}/skel/.bash_logout
+               cp -vf %{DIR_SOURCE}/dot_bash_profile %{BUILDROOT}%{sysconfdir}/skel/.bash_profile
+               cp -vf %{DIR_SOURCE}/dot_bashrc %{BUILDROOT}%{sysconfdir}/skel/.bashrc
+
                cp -vf %{DIR_SOURCE}/dot_bash_logout %{BUILDROOT}/root/.bash_logout
                cp -vf %{DIR_SOURCE}/dot_bash_profile %{BUILDROOT}/root/.bash_profile
                cp -vf %{DIR_SOURCE}/dot_bashrc %{BUILDROOT}/root/.bashrc
@@ -63,6 +82,19 @@ build
                cp -vf %{DIR_SOURCE}/profile.d/* %{BUILDROOT}/etc/profile.d
 
                ln -svf bash %{BUILDROOT}%{bindir}/sh
+
+               # https://bugzilla.redhat.com/show_bug.cgi?id=820192
+               # bug #820192, need to add execable alternatives for regular built-ins
+               for f in alias bg cd command fc fg getopts jobs read umask unalias wait; do
+                       (
+                               echo "#!/bin/sh"
+                               echo "builtin \"${f}\" \"\$@\""
+                       ) > "%{BUILDROOT}/%{bindir}/${f}"
+                       chmod +x "%{BUILDROOT}%{bindir}/${f}"
+               done
+
+               # Set correct permissions for binaries.
+               find %{BUILDROOT}%{bindir} -type f -executable -exec chmod 755 {} \;
        end
 end
 
@@ -81,6 +113,10 @@ packages
                        /bin/sh
                end
 
+               recommends
+                       bash-completion
+               end
+
                conflicts
                        filesystem < 002
                end