Changeset 3779

Show
Ignore:
Timestamp:
07/22/08 03:10:23 (1 month ago)
Author:
tg
Message:

upgrade; tested in chroot from 1.0/WIB image

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/package/joe/Makefile

    r3159 r3779  
    88 
    99PKG_NAME=               joe 
    10 PKG_VERSION=            3.1jupp8 
     10PKG_VERSION=            3.1jupp9 
    1111PKG_RELEASE=            1 
    12 PKG_MD5SUM=             8b1871c80ba09f170fd08b58121d2f41 
     12PKG_MD5SUM=             39018a33e210480595020ecf0870e160 
    1313 
    1414MASTER_SITES=           http://www.mirbsd.org/MirOS/dist/jupp/ \ 
  • trunk/freewrt/package/mksh/Config.in

    r3702 r3779  
    1010          shell good for interactive and especially script use.  It has 
    1111          UTF-8 support in the emacs command line editing mode; corres- 
    12           ponds to OpenBSD 4.3-beta ksh without GNU bash-like $PS1; the 
     12          ponds to OpenBSD 4.4-beta ksh without GNU bash-like $PS1; the 
    1313          build environment requirements are autoconfigured; throughout 
    1414          code simplification/bugfix/enhancement has been done, and the 
     
    1919          which can be used to further customise the look and feel. 
    2020 
    21           mksh is an essential part of the FreeWRT operating system; if you 
    22           disable it, your system will become unusable. 
     21          mksh is an essential part of the FreeWRT operating system; if 
     22          you disable it, your system will become unusable. 
    2323 
    2424          http://mirbsd.de/mksh 
  • trunk/freewrt/package/mksh/Makefile.inc

    r3735 r3779  
    66 
    77PKG_NAME=               mksh 
    8 PKG_VERSION=            33d 
     8PKG_VERSION=            35b 
    99PKG_RELEASE=            1 
    1010DISTFILES=              ${PKG_NAME}-R${PKG_VERSION}.cpio.gz 
    11 PKG_MD5SUM=             8ad2547ad55dc3a02b13554ab9b5c9c8 
     11PKG_MD5SUM=             0e96cd3f8141b7abc679bbb303a8be2c 
    1212 
    1313MASTER_SITES=           ${MASTER_SITE_MIRBSD:distfiles/=dist/mir/mksh/} 
  • trunk/freewrt/package/mksh/patches/patch-dot_mkshrc

    r3717 r3779  
    66          – yofuh doesn’t like $? in $PS1 
    77 
    8 --- mksh.orig/dot.mkshrc        Mon Mar  3 20:22:37 2008 
    9 +++ mksh/dot.mkshrc     Fri Mar 28 22:04:44 2008 
    10 @@ -25,13 +25,15 @@ 
    11  # sample mksh initialisation file for interactive shells; install as 
    12  # /etc/skel/.mkshrc (as root, for new accounts) or copy to ~/.mkshrc 
     8--- mksh.orig/dot.mkshrc        Sat May 17 18:27:55 2008 
     9+++ mksh/dot.mkshrc     Mon Jul 21 21:02:05 2008 
     10@@ -2,13 +2,15 @@ 
     11 #- 
     12 # ~/.mkshrc: mksh initialisation file for interactive shells 
    1313  
    1414-: ${EDITOR:=/bin/ed} ${TERM:=vt100} ${HOSTNAME:=$(ulimit -c 0;hostname -s 2>&-)} 
    1515+: ${EDITOR:=/bin/ed} ${TERM:=vt100} ${HOSTNAME:=$(</proc/sys/kernel/hostname)} 
    1616 [[ $HOSTNAME = @(localhost|*([  ])) ]] && HOSTNAME=$(ulimit -c 0;hostname 2>&-) 
    17  : ${HOSTNAME:=nil}; PS1='#'; [[ "$(ulimit -c 0; id -u 2>&-)" -eq 0 ]] || PS1='$' 
     17 : ${HOSTNAME:=nil}; if (( USER_ID )); then PS1='$'; else PS1='#'; fi 
    1818 function precmd { 
    19         typeset -Ui10 e=$? 
     19        typeset -i e=$? 
    2020  
    2121-       (( e )) && print -n "$e|" 
     
    2626 PS1='$(precmd)${USER:=$(ulimit -c 0;id -un 2>&- || print \?)}@${HOSTNAME%%.*}:$( 
    2727        typeset pfx=~ wd=${PWD:-?} 
    28 @@ -51,7 +53,7 @@ export EDITOR HOSTNAME LESSHISTFILE=- MK 
    29  alias l='/bin/ls -F' 
     28@@ -30,7 +32,7 @@ unalias ls 
     29 alias l='ls -F' 
    3030 alias la='l -a' 
    3131 alias ll='l -l' 
  • trunk/freewrt/tools/mksh/Makefile

    • Property svn:keywords set to FreeWRT=Id
    r3702 r3779  
    1313 
    1414${WRKBUILD}/mksh: ${WRKBUILD}/.configured 
    15         -uname -a; ${HOSTCC} -v 
    1615        cd ${WRKBUILD} && \ 
    1716            env CC='${HOSTCC}' CFLAGS='${HOSTCFLAGS}' \ 
    1817            ${BASH} Build.sh -Q -r 
     18        -cd ${WRKBUILD} && ./test.sh -v 
    1919 
    2020source: fetch