mirror of
				https://git.launchpad.net/ubuntu-dev-tools
				synced 2025-11-04 07:54:03 +00:00 
			
		
		
		
	for backwards compatibility (i.e. to keep pull-lp-source, pull-debian-source, and pull-uca-source) and for ease of use, create scripts that default the pull-pkg -p and -D params re-create pull-pkg script also, to call ubuntutools/pullpkg.py without any default pull or distro parameters
		
			
				
	
	
		
			12 lines
		
	
	
		
			284 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			284 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/python3
 | 
						|
#
 | 
						|
# pull-uca-udebs -- pull udeb package files for ubuntu cloud archive
 | 
						|
# Basic usage: pull-uca-udebs <package name> [version|release]
 | 
						|
#
 | 
						|
# See pull-pkg
 | 
						|
 | 
						|
from ubuntutools.pullpkg import PullPkg
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    PullPkg.main(distro='uca', pull='udebs')
 |