mirror of
				https://github.com/vyos/vyos-build.git
				synced 2025-10-01 20:28:40 +02:00 
			
		
		
		
	radvd: T6118: add custom build support with recent source version
(cherry picked from commit ed79a9fa939fdba80eb004a79989153d51eeea88)
This commit is contained in:
		
							parent
							
								
									48f7d41a60
								
							
						
					
					
						commit
						c0bb360c09
					
				
							
								
								
									
										2
									
								
								packages/radvd/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								packages/radvd/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@ -0,0 +1,2 @@
 | 
			
		||||
radvd/
 | 
			
		||||
*.deb
 | 
			
		||||
							
								
								
									
										30
									
								
								packages/radvd/Jenkinsfile
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								packages/radvd/Jenkinsfile
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@ -0,0 +1,30 @@
 | 
			
		||||
// Copyright (C) 2024 VyOS maintainers and contributors
 | 
			
		||||
//
 | 
			
		||||
// This program is free software; you can redistribute it and/or modify
 | 
			
		||||
// in order to easy exprort images built to "external" world
 | 
			
		||||
// it under the terms of the GNU General Public License version 2 or later as
 | 
			
		||||
// published by the Free Software Foundation.
 | 
			
		||||
//
 | 
			
		||||
// This program is distributed in the hope that it will be useful,
 | 
			
		||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
// GNU General Public License for more details.
 | 
			
		||||
//
 | 
			
		||||
// You should have received a copy of the GNU General Public License
 | 
			
		||||
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
@NonCPS
 | 
			
		||||
 | 
			
		||||
// Using a version specifier library, use 'current' branch. The underscore (_)
 | 
			
		||||
// is not a typo! You need this underscore if the line immediately after the
 | 
			
		||||
// @Library annotation is not an import statement!
 | 
			
		||||
@Library('vyos-build@sagitta')_
 | 
			
		||||
 | 
			
		||||
def pkgList = [
 | 
			
		||||
    ['name': 'radvd',
 | 
			
		||||
     'scmCommit': 'f2de4764559',
 | 
			
		||||
     'scmUrl': 'https://github.com/radvd-project/radvd',
 | 
			
		||||
     'buildCmd': 'cd ..; ./build.sh'],
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
// Start package build using library function from https://github.com/vyos/vyos-build
 | 
			
		||||
buildPackage('radvd', pkgList, null, true, "**/packages/radvd/**")
 | 
			
		||||
							
								
								
									
										29
									
								
								packages/radvd/build.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										29
									
								
								packages/radvd/build.sh
									
									
									
									
									
										Executable file
									
								
							@ -0,0 +1,29 @@
 | 
			
		||||
#!/bin/sh
 | 
			
		||||
SRC=radvd
 | 
			
		||||
if [ ! -d $SRC ]; then
 | 
			
		||||
    echo "source directory $SRC does not exist!"
 | 
			
		||||
    echo "$ git clone https://github.com/radvd-project/radvd"
 | 
			
		||||
    exit 1
 | 
			
		||||
fi
 | 
			
		||||
cd $SRC
 | 
			
		||||
 | 
			
		||||
INSTALL_DIR=debian
 | 
			
		||||
if [ -d $INSTALL_DIR ]; then
 | 
			
		||||
    rm -rf $INSTALL_DIR
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
./autogen.sh
 | 
			
		||||
./configure
 | 
			
		||||
make
 | 
			
		||||
 | 
			
		||||
install --directory debian/lib/systemd/system debian/usr/sbin
 | 
			
		||||
install --mode 0644 radvd.service debian/lib/systemd/system
 | 
			
		||||
install --strip --mode 0755 radvd debian/usr/sbin
 | 
			
		||||
 | 
			
		||||
# Version' field value 'v0.14-20-g613277f': version number does not start with digit
 | 
			
		||||
# "cut" first character from version string
 | 
			
		||||
fpm --input-type dir --output-type deb --name radvd \
 | 
			
		||||
    --version $(git describe --always | cut -c2- | tr _ -) --deb-compression gz \
 | 
			
		||||
    --maintainer "VyOS Package Maintainers <maintainers@vyos.net>" \
 | 
			
		||||
    --description "RADVD router advertisement daemon" \
 | 
			
		||||
    --license "RADVD" -C $INSTALL_DIR --package ..
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user