wok rev 273

Paving the road to put all hacker files in slitaz-hacker
author Christophe Lincoln <pankso@slitaz.org>
date Mon Feb 25 15:53:51 2008 +0100 (2008-02-25)
parents fb4b753f4f90
children cb1ff4692987
files slitaz-hacker/receipt slitaz-hacker/stuff/README slitaz-hacker/stuff/ash_history slitaz-hacker/stuff/hacker/.ash_history slitaz-hacker/stuff/hacker/.profile slitaz-hacker/stuff/profile
line diff
     1.1 --- a/slitaz-hacker/receipt	Mon Feb 25 15:33:46 2008 +0100
     1.2 +++ b/slitaz-hacker/receipt	Mon Feb 25 15:53:51 2008 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="slitaz-hacker"
     1.7 -VERSION="1.0"
     1.8 +VERSION="1.1"
     1.9  CATEGORY="base-system"
    1.10  SHORT_DESC="SliTaz user hacker."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12 @@ -17,8 +17,7 @@
    1.13  		$fs/home/hacker/Templates \
    1.14  		$fs/home/hacker/.local/bin \
    1.15  		$fs/home/hacker/.local/share
    1.16 -	cp -a stuff/ash_history $fs/home/hacker/.ash_history
    1.17 -	cp -a stuff/profile $fs/home/hacker/.profile
    1.18 +	cp -a stuff/hacker $fs/home/hacker
    1.19  	# Change permissions.
    1.20  	#
    1.21  	echo -n "Chmodig all files in $fs/home/hacker..."
     2.1 --- a/slitaz-hacker/stuff/README	Mon Feb 25 15:33:46 2008 +0100
     2.2 +++ b/slitaz-hacker/stuff/README	Mon Feb 25 15:53:51 2008 +0100
     2.3 @@ -3,6 +3,6 @@
     2.4  
     2.5  slitaz-hacker package provide SHell profile and Ash history, creat a few 
     2.6  directories (done by the receipt) and configure system wide file such as
     2.7 -/etc/passwd or /etc/group. Note that some addfiles are installed for hacker 
     2.8 +/etc/passwd or /etc/group. Note that some addfiles can be installed for hacker 
     2.9  when the LiveCD flavor is generated, depending on the flavor packages list.
    2.10  
     3.1 --- a/slitaz-hacker/stuff/ash_history	Mon Feb 25 15:33:46 2008 +0100
     3.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.3 @@ -1,18 +0,0 @@
     3.4 -ls -al
     3.5 -cat /proc/cpuinfo
     3.6 -cat /proc/partitions
     3.7 -free
     3.8 -ifconfig -a
     3.9 -exit
    3.10 -tazpkg list
    3.11 -cat Images/ASCII/tux.txt
    3.12 -less -EM /usr/share/doc/tazpkg/tazpkg.txt
    3.13 -less -EM /usr/share/doc/slitaz/apropos.txt
    3.14 -nInvaders
    3.15 -htop
    3.16 -rhapsody
    3.17 -nano
    3.18 -retawq 
    3.19 -retawq http://localhost/server-status
    3.20 -retawq http://localhost/
    3.21 -clex
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/slitaz-hacker/stuff/hacker/.ash_history	Mon Feb 25 15:53:51 2008 +0100
     4.3 @@ -0,0 +1,18 @@
     4.4 +ls -al
     4.5 +cat /proc/cpuinfo
     4.6 +cat /proc/partitions
     4.7 +free
     4.8 +ifconfig -a
     4.9 +exit
    4.10 +tazpkg list
    4.11 +cat Images/ASCII/tux.txt
    4.12 +less -EM /usr/share/doc/tazpkg/tazpkg.txt
    4.13 +less -EM /usr/share/doc/slitaz/apropos.txt
    4.14 +nInvaders
    4.15 +htop
    4.16 +rhapsody
    4.17 +nano
    4.18 +retawq 
    4.19 +retawq http://localhost/server-status
    4.20 +retawq http://localhost/
    4.21 +clex
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/slitaz-hacker/stuff/hacker/.profile	Mon Feb 25 15:53:51 2008 +0100
     5.3 @@ -0,0 +1,42 @@
     5.4 +# ~/.profile: Executed by Bourne-compatible login SHells.
     5.5 +#
     5.6 +
     5.7 +# Path to personal scripts and executables (~/.local/bin).
     5.8 +#
     5.9 +if [ -d "$HOME/.local/bin" ] ; then
    5.10 +	PATH=$HOME/.local/bin:$PATH
    5.11 +	export PATH
    5.12 +fi
    5.13 +
    5.14 +# Java JRE (paths).
    5.15 +#
    5.16 +#JAVA_HOME=$HOME/.local/lib/jre1.6.0_03
    5.17 +#JAVA_BINDIR=$JAVA_HOME/bin
    5.18 +#if [ -d "$JAVA_BINDIR" ] ; then
    5.19 +#	export PATH=$JAVA_BINDIR:$PATH
    5.20 +#fi
    5.21 +
    5.22 +# Environnement variables and prompt for Ash SHell
    5.23 +# or Bash. Default is a classic prompt.
    5.24 +#
    5.25 +PS1='\u@\h:\w\$ '
    5.26 +
    5.27 +EDITOR='nano'
    5.28 +PAGER='less -EM'
    5.29 +
    5.30 +export PS1 EDITOR PAGER
    5.31 +
    5.32 +# Alias definitions.
    5.33 +#
    5.34 +alias df='df -h'
    5.35 +alias du='du -h'
    5.36 +
    5.37 +alias ls='ls -p'
    5.38 +alias ll='ls -l'
    5.39 +alias la='ls -la'
    5.40 +
    5.41 +# Avoid errors... use -f to skip confirmation.
    5.42 +alias rm='rm -i'
    5.43 +alias mv='mv -i'
    5.44 +
    5.45 +umask 022
     6.1 --- a/slitaz-hacker/stuff/profile	Mon Feb 25 15:33:46 2008 +0100
     6.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.3 @@ -1,42 +0,0 @@
     6.4 -# ~/.profile: Executed by Bourne-compatible login SHells.
     6.5 -#
     6.6 -
     6.7 -# Path to personal scripts and executables (~/.local/bin).
     6.8 -#
     6.9 -if [ -d "$HOME/.local/bin" ] ; then
    6.10 -	PATH=$HOME/.local/bin:$PATH
    6.11 -	export PATH
    6.12 -fi
    6.13 -
    6.14 -# Java JRE (paths).
    6.15 -#
    6.16 -#JAVA_HOME=$HOME/.local/lib/jre1.6.0_03
    6.17 -#JAVA_BINDIR=$JAVA_HOME/bin
    6.18 -#if [ -d "$JAVA_BINDIR" ] ; then
    6.19 -#	export PATH=$JAVA_BINDIR:$PATH
    6.20 -#fi
    6.21 -
    6.22 -# Environnement variables and prompt for Ash SHell
    6.23 -# or Bash. Default is a classic prompt.
    6.24 -#
    6.25 -PS1='\u@\h:\w\$ '
    6.26 -
    6.27 -EDITOR='nano'
    6.28 -PAGER='less -EM'
    6.29 -
    6.30 -export PS1 EDITOR PAGER
    6.31 -
    6.32 -# Alias definitions.
    6.33 -#
    6.34 -alias df='df -h'
    6.35 -alias du='du -h'
    6.36 -
    6.37 -alias ls='ls -p'
    6.38 -alias ll='ls -l'
    6.39 -alias la='ls -la'
    6.40 -
    6.41 -# Avoid errors... use -f to skip confirmation.
    6.42 -alias rm='rm -i'
    6.43 -alias mv='mv -i'
    6.44 -
    6.45 -umask 022