Browse Source

tagging in 0.0.54

git-svn-id: http://trac.vinelinux.org/repos/projects/vbootstrap/tags/0.0.54@5575 ec354946-7b23-47d6-9f5a-488ba84defc7
munepi 12 years ago
parent
commit
42aba2384c
2 changed files with 9 additions and 6 deletions
  1. 4 1
      vbootstrap-vl.spec
  2. 5 5
      vbuilder-bash-completion.sh

+ 4 - 1
vbootstrap-vl.spec

@@ -1,7 +1,7 @@
 # This package is maintained on trac svn repository. Please do not change on local.
 # If you find a BUG, please report to Vine@vinelinux.org or mailing list or BTS.
 
-%define version 0.0.53
+%define version 0.0.54
 
 Summary: bootstrap scripts to create a basic Vine Linux system
 Summary(ja): Vine Linux の基本システムを作成するためのスクリプト
@@ -88,6 +88,9 @@ vbuilder は vbootstrap を利用して chroot 環境の構築し、
 
 
 %changelog
+* Sun Feb  5 2012 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.54-1
+- rename _filedir() as _vbootstrap_filedir()
+
 * Sat Jan 28 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.53-1
 - fix unmounting aufs
 

+ 5 - 5
vbuilder-bash-completion.sh

@@ -1,6 +1,6 @@
 [ -z "$BASH_VERSION" ] && return
 
-_filedir()
+_vbootstrap_filedir()
 {
 	local IFS=$'\t\n' xspec #glob
 
@@ -11,7 +11,7 @@ _filedir()
 	COMPREPLY=( ${COMPREPLY[@]:-} $( compgen -f -X "$xspec" -- "$cur" ) \
 		    $( compgen -d -- "$cur" ) )
 	#eval "$glob"    # restore glob setting.
-}
+} # _vbootstrap_filedir()
 
 _vbuilder()
 {
@@ -57,19 +57,19 @@ _vbuilder()
 
 	--bootstrap-dir|--unionfs-dir|--cache-dir|--built-rpms-dir)
 	    if [ $COMP_CWORD -eq 1 -o "${COMPREPLY+set}" != "set" ]; then
-		_filedir ''
+		_vbootstrap_filedir ''
 	    fi
 	    ;;
 
 	build-rpm)
 	    if [ $COMP_CWORD -eq 1 -o "${COMPREPLY+set}" != "set" ]; then
-		_filedir 'src.rpm'
+		_vbootstrap_filedir 'src.rpm'
 	    fi
 	    ;;
 
 	install-rpm|remove-rpm)
 	    if [ $COMP_CWORD -eq 1 -o "${COMPREPLY+set}" != "set" ]; then
-		_filedir 'rpm'
+		_vbootstrap_filedir 'rpm'
 	    fi
 	    ;;