+gdb_7_2-branch
[nethome.git] / .bashrc
diff --git a/.bashrc b/.bashrc
index 34e77df..6fc61af 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -196,6 +196,7 @@ export HISTFILESIZE="$HISTSIZE"
 export GDBHISTFILE="$HOME/.gdb_history"
 export CVS_RSH="ssh"
 export TZ=":/usr/share/zoneinfo/Europe/Prague"
+export PYTHONUNBUFFERED=1
 export MAKEFLAGS=
 cpus="`getconf _NPROCESSORS_ONLN`"
 if [ -n "$cpus" ];then
@@ -206,7 +207,9 @@ unset cpus
 # as Sun workaround as Debian misses: /etc/termcap
 # expects: $uname_p
 [ "$TERM" = vt220 -a "${uname_p%86}" != "$uname_p" ] && export TERM=linux
-if grep 2>/dev/null -q '^..............:0C38 00000000:0000 0A ' /proc/net/tcp;then
+if grep 2>/dev/null -q '^..............:0C38 00000000:0000 0A ' /proc/net/tcp \
+|| grep 2>/dev/null -q '^....: 00000000000000000000000000000000:0C38 00000000000000000000000000000000:0000 0A ' /proc/net/tcp6 \
+;then
        export  http_proxy=http://127.0.0.1:3128/
        export https_proxy=http://127.0.0.1:3128/
        export   ftp_proxy=http://127.0.0.1:3128/
@@ -228,7 +231,8 @@ export LC_COLLATE=C
 # as it breaks Mutt "utf-8" and somehow it is no longer needed.
 # Re: [Bug-readline] Readline 6.0 patch 004 trapped signal echoed to conso
 # http://lists.gnu.org/archive/html/bug-readline/2009-09/msg00006.html
-stty -echoctl
+# 2>/dev/null for possible: stty: standard input: Inappropriate ioctl for device
+stty -echoctl 2>/dev/null
 
 function wclines { awk '{x[$0]++}END{for (i in x) print x[i]"\t"i}'; }
 # SunOS does not support "-m"
@@ -262,6 +266,7 @@ function ctags {(unset ctags
                                                -o -name "*.[chCy]" \
                                                -o -name "*.cc"    \
                                                -o -name "*.cxx"   \
+                                               -o -name "*.cpp"   \
                                                -o -name "*.java"  \
                                                -o -name "*.p[lm]" \
                                                -o -name "*.py" \
@@ -282,7 +287,8 @@ function diffi { diffc -X ~/.diffi.list "$@" | diffdecvs; }
 function cvs {(unset cvs
        local _opts _opts_d _now _line _o
        _opts_d="-d"
-       if grep -iw '\(sources.redhat.com\|sourceware.org\|cvs.fedoraproject.org\):/cvs/src' CVS/Root &>/dev/null;then _opts_d="";fi
+       if grep -iw '\(sources.redhat.com\|sourceware.org\):/cvs/src' CVS/Root &>/dev/null;then _opts_d="";fi
+       if grep -iw '\(cvs.fedoraproject.org\):/cvs/pkgs' CVS/Root &>/dev/null;then _opts_d="";fi
        if grep '^tests/kernel/syscalls/ptrace' CVS/Repository &>/dev/null;then _opts_d="";fi
        _now=false
        _line=""
@@ -329,6 +335,8 @@ function sourcewarecvscheckout {(set -ex
        #(set +x;cvsignoresall)
        (set +x;ignoresall)
        );}
+function gdbgitclone { git clone git://sourceware.org/git/gdb.git gdb-git; }
+function binutilsgitclone { git clone git://sourceware.org/git/binutils.git binutils-git; }
 function gdbcvscheckout { sourcewarecvscheckout gdb; }
 function binutilscvscheckout { sourcewarecvscheckout binutils; }
 function gdbdevelcvscheckout {(set -ex
@@ -337,9 +345,26 @@ function gdbdevelcvscheckout {(set -ex
        cd gdb-devel
        make sources
        );}
+function gdbf12cvscheckout {(set -ex
+       ! test -d gdb-F-12
+       (set +x;CVSROOT=:pserver:anonymous@cvs.fedoraproject.org:/cvs/pkgs cvs checkout -d gdb-F-12 rpms/gdb/F-12)
+       cd gdb-F-12
+       make sources
+       );}
+function gdbf13cvscheckout {(set -ex
+       ! test -d gdb-F-13
+       (set +x;CVSROOT=:pserver:anonymous@cvs.fedoraproject.org:/cvs/pkgs cvs checkout -d gdb-F-13 rpms/gdb/F-13)
+       cd gdb-F-13
+       make sources
+       );}
 function uri_escape   { perl -MURI::Escape -le '$_=<>;chomp;print uri_escape   $_;'; };
 function uri_unescape { perl -MURI::Escape -le '$_=<>;chomp;print uri_unescape $_;'; };
-function n { if [ "$1" = "-p" ];then renice +19 "$@";ionice -c3 "$@";else nice -n19 ionice -c3 "$@";fi };
+if which ionice &>/dev/null;then
+       IONICE="ionice -c3"
+else
+       IONICE=""
+fi
+function n { if [ "$1" = "-p" ];then renice +19 "$@";test -n "$IONICE" && $IONICE "$@";else nice -n19 $IONICE "$@";fi };
 function rpmsrclist
 {
        if [ -z "$*" ]; then
@@ -367,8 +392,8 @@ function rpmsrclist
                        | sort -u
        fi
 }
-function valgrind {(unset valgrind;s=~/.python.valgrind;perl -e 'undef $/;$_=<>;1 while s/^(?:###)?({\n)(?:###)?( *ADDRESS_IN_RANGE.*\n(?:[^}#].*\n)*)###/$1$2/gm;print;' </usr/share/doc/python-devel-2.*/valgrind-python.supp >$s;valgrind --suppressions=$s "$@";);}
-function yumupdate { yum makecache;yum -y update; }
+function valgrind {(set -e;unset valgrind;s=~/.python.valgrind;rm -f $s;cp -p /usr/share/doc/python-devel-2.*/valgrind-python.supp $s;patch $s <$s.patch;perl -i -e 'undef $/;$_=<>;1 while s/^(?:###)?({\n)(?:###)?( *ADDRESS_IN_RANGE.*\n(?:[^}#].*\n)*)###/$1$2/gm;print;' $s;valgrind --suppressions=$s "$@";);}
+function yumupdate {(ulimit -v unlimited;yum makecache;yum -y --skip-broken update "$@";);}
 
 ulimit -S -c 0
 set +H