mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-10-31 19:24:25 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			424 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			424 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| ###
 | |
| # Helper script to update the Debian changelog locally
 | |
| ###
 | |
| 
 | |
| set -e
 | |
| set -x
 | |
| 
 | |
| #VERSION=$(grep -E "^Version:" icinga2.spec | cut -d" " -f2)
 | |
| VERSION=`git describe --abbrev=0 | sed 's/^v//' | grep -oP "^\d+\.\d+\.\d+(-.*)?" | sed 's/-/~/'`
 | |
| DEB_VERSION_SUFFIX=$(echo "+icingasnap"`date +%Y%m%d%H%M`"."`git rev-parse --short HEAD`)
 | |
| 
 | |
| # update Debian version
 | |
| dch "$@" --newversion "${VERSION}${DEB_VERSION_SUFFIX}" ""
 |