*_proxy: Make it IPv6 listener compatible (while assuming it accepts IPv4).
[nethome.git] / .bashrc
diff --git a/.bashrc b/.bashrc
index 5a18e38..7de8245 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/
@@ -338,6 +341,12 @@ 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 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 };
@@ -369,7 +378,7 @@ function rpmsrclist
        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 yumupdate { yum makecache;yum -y --skip-broken update; }
 
 ulimit -S -c 0
 set +H