rpms/bash-completion/devel bash-completion-mock, 1.6, 1.7 bash-completion.spec, 1.36, 1.37

Ville Skyttä scop at fedoraproject.org
Mon Mar 23 19:15:17 UTC 2009


Author: scop

Update of /cvs/pkgs/rpms/bash-completion/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23006

Modified Files:
	bash-completion-mock bash-completion.spec 
Log Message:
* Mon Mar 23 2009 Ville Skyttä <ville.skytta at iki.fi> - 20080705-4.20090314gitf4f0984
- Add dependency on coreutils for triggers (#490768).
- Update and improve mock completion.



Index: bash-completion-mock
===================================================================
RCS file: /cvs/pkgs/rpms/bash-completion/devel/bash-completion-mock,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- bash-completion-mock	14 Mar 2009 21:09:35 -0000	1.6
+++ bash-completion-mock	23 Mar 2009 19:14:45 -0000	1.7
@@ -3,8 +3,6 @@
 #
 # bash completion for mock
 
-# TODO: --copyin, --copyout
-
 _mock()
 {
 	local cur prev plugins cfgdir
@@ -12,7 +10,7 @@
 	COMPREPLY=()
 	cur=`_get_cword`
 	prev=${COMP_WORDS[COMP_CWORD-1]}
-	plugins='ccache yum_cache root_cache bind_mount'
+	plugins='tmpfs root_cache yum_cache bind_mount ccache'
 	cfgdir=/etc/mock
 
 	count=0
@@ -26,46 +24,54 @@
 		count=$((++count))
 	done
 
+	# --name=value style option
+	if [[ "$cur" == --?*=* ]] ; then
+		prev="${cur/=*}"
+		cur="${cur#$prev=}"
+	fi
+
 	case $prev in
-		-@(-root|r))
+		-@(h|-help|-copy@(in|out)|-arch|D|-define|-with?(out)|-uniqueext|-rpmbuild_timeout|-sources|-cwd))
+			return 0
+			;;
+		-@(r|-root))
 			COMPREPLY=( $( command ls $cfgdir | \
 				sed -ne 's/^\('$cur'.*\)\.cfg$/\1/p') )
 			return 0
 			;;
-		-@(-help|h))
+		--@(config|result)dir)
+			_filedir -d
+			return 0
+			;;
+		--spec)
+			_filedir spec
+			return 0
+			;;
+		--target)
+			# Yep, compatible archs, not compatible build archs
+			# (e.g. ix86 chroot builds in x86_64 mock host)
+			# This would actually depend on what the target root
+			# can be used to build for...
+			COMPREPLY=( $( compgen -W "$( command rpm --showrc | sed -ne 's/^\s*compatible\s\+archs\s*:\s*\(.*\)/\1/i p' )" -- $cur ) )
+			return 0
+			;;
+		--@(en|dis)able-plugin)
+			COMPREPLY=( $( compgen -W "$plugins" -- $cur ) )
 			return 0
 			;;
 	esac
 
-	# --name=value style option
-	if [[ "$cur" == *=* ]] ; then
-		prev=${cur/=*/}
-		cur=${cur/*=/}
-		case $prev in 
-			--@(config|result)dir)
-				_filedir -d
-				return 0
-				;;
-			--@(en|dis)able-plugin)
-				COMPREPLY=( $( compgen -W "$plugins" -- $cur ) )
-				return 0
-				;;
-			--@(arch|target|define|with|without|uniqueext|rpmbuild_timeout|cwd))
-				return 0
-				;;
-		esac
-	fi
-
 	if [[ "$cur" == -* ]] ; then
 		COMPREPLY=( $( compgen -W '--version -h --help --rebuild \
-			--shell --chroot --clean --init --installdeps \
-			--install --update --orphanskill -r --root= --offline \
-			--no-clean --cleanup-after --no-cleanup-after --arch= \
-			--target= -D --define= --with= --without= \
-			--resultdir= --uniqueext= --configdir= \
-			--rpmbuild_timeout --unpriv --cwd= -v --verbose -q \
-			--quiet --trace --enable-plugin= --disable-plugin= \
-			--print-root-path' -- $cur ) )
+			--buildsrpm --shell --chroot --clean --init \
+			--installdeps --install --update --orphanskill \
+			--copyin --copyout -r --root --offline --no-clean \
+			--cleanup-after --no-cleanup-after --arch --target \
+			-D --define --with --without --resultdir --uniqueext \
+			--configdir --rpmbuild_timeout --unpriv --cwd --spec \
+			--sources -v --verbose -q --quiet --trace \
+			--enable-plugin --disable-plugin --print-root-path' \
+			-- $cur ) )
 	else
 		_filedir '?(no)src.rpm'
 	fi


Index: bash-completion.spec
===================================================================
RCS file: /cvs/pkgs/rpms/bash-completion/devel/bash-completion.spec,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- bash-completion.spec	15 Mar 2009 19:20:40 -0000	1.36
+++ bash-completion.spec	23 Mar 2009 19:14:45 -0000	1.37
@@ -2,7 +2,7 @@
 
 Name:           bash-completion
 Version:        20080705
-Release:        3%{?snap:.%{snap}}
+Release:        4%{?snap:.%{snap}}
 Summary:        Programmable completion for Bash
 
 Group:          System Environment/Shells
@@ -21,6 +21,8 @@
 
 BuildArch:      noarch
 Requires:       bash >= 2.05-12
+# For symlinking in triggers, #490768
+Requires:       coreutils
 
 %description
 bash-completion is a collection of shell functions that take advantage
@@ -263,6 +265,10 @@
 
 
 %changelog
+* Mon Mar 23 2009 Ville Skyttä <ville.skytta at iki.fi> - 20080705-4.20090314gitf4f0984
+- Add dependency on coreutils for triggers (#490768).
+- Update and improve mock completion.
+
 * Sun Mar 15 2009 Ville Skyttä <ville.skytta at iki.fi> - 20080705-3.20090314gitf4f0984
 - git snapshot f4f0984, fixes #484578 (another issue), #486998.
 




More information about the fedora-extras-commits mailing list