You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.2 KiB
31 lines
1.2 KiB
#!/bin/bash
|
|
|
|
PACKAGE=$(basename $(pwd))
|
|
VERSION=$(rpm -q --qf "%{version}" --specfile $PACKAGE.spec)
|
|
ME=$(whoami)
|
|
BRANCH=$(git branch | grep '*' | cut -d' ' -f2)
|
|
|
|
# Generate ChangeLog
|
|
git log --format=%H --grep="update changelog" > ignore_hash
|
|
git log --format=%H | grep -v -f ignore_hash | git log --pretty --stdin --no-walk > CHANGELOG
|
|
rm -f ignore_hash
|
|
git add CHANGELOG
|
|
git commit -m 'update changelog' CHANGELOG
|
|
|
|
# Tag GIT using the version in the spec file
|
|
git tag $VERSION
|
|
|
|
# Create needed dirs on the build box
|
|
ssh -l $ME build.firewall-services.com mkdir -p rpmbuild/{RPMS,SRPMS,SPECS,SOURCES}
|
|
|
|
# Generate a tgz archive from the repo
|
|
git archive --format=tar.gz --prefix=$PACKAGE-$VERSION/ $BRANCH | ssh -l $ME build.firewall-services.com "cat > rpmbuild/SOURCES/$PACKAGE-$VERSION.tar.gz"
|
|
|
|
# Upload the spec file
|
|
scp $PACKAGE.spec $ME@build.firewall-services.com:rpmbuild/SPECS/
|
|
|
|
# And build
|
|
ssh -l $ME build.firewall-services.com rpmbuild -bs --nodeps rpmbuild/SPECS/$PACKAGE.spec
|
|
ssh -l $ME build.firewall-services.com buildrpm rpmbuild/SRPMS/$PACKAGE-$VERSION-*.src.rpm $1
|
|
ssh -l $ME build.firewall-services.com rm -f rpmbuild/SPECS/$PACKAGE.spec rpmbuild/SOURCES/$PACKAGE-$VERSION.tar.gz rpmbuild/SRPMS/$PACKAGE-$VERSION*.src.rpm
|
|
|
|
|