Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Step:15
smartmontools.29098
smartmontools-drivedb_h-update.sh
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File smartmontools-drivedb_h-update.sh of Package smartmontools.29098
#!/bin/bash # Packaged drivedb.h/smartmontools-drivedb.h update script. # Usage: bash ./smartmontools-drivedb_h-update.sh # Exit codes: # O: Changes performed. You should commit. # 1: No changes performed. # 2: Internal error. set -o errexit VERSION=`sed -n 's/^Version:[[:space:]]*//p' <smartmontools.spec` WORKDIR="smartmontools-drivedb_h-update.tmp" rm -rf "$WORKDIR" mkdir "$WORKDIR" cd "$WORKDIR" tar -zxf ../smartmontools-$VERSION.tar.gz smartmontools-$VERSION/update-smart-drivedb.in smartmontools-$VERSION/configure smartmontools-$VERSION/drivedb.h # There can be script update. # TODO: This patch can be generated automatically. if test -f ./smartmontools-update-smart-drivedb.patch ; then patch -p0 <../smartmontools-update-smart-drivedb.patch fi # Extract expression that derives DRIVEDB_BRANCH from the version string # (from configure, to not include autoconf square brackets): eval "$(sed -n '/^DRIVEDB_BRANCH=/,/`/p' <smartmontools-$VERSION/configure)" if test -z "$DRIVEDB_BRANCH"; then echo "Unable to derive DRIVEDB_BRANCH from VERSION=$VERSION." cd - >/dev/null rm -r "$WORKDIR" exit 2 fi BRANCHNAME=$DRIVEDB_BRANCH PCK_TIME=$(date -d "$(sed -n 's/^.*$Id: drivedb.h [0-9][0-9]* \([^ ]* [^ ]*\) .*$/\1/p' <smartmontools-$VERSION/drivedb.h)" +%s) echo "Updating drivedb.h for branch $DRIVEDB_BRANCH." # Generate and call specially crafted update-smart-drivedb. sed " /^PACKAGE=/i rm update-smart-drivedb-wd s:@PACKAGE@:smartmontools:g s:@VERSION@:$VERSION:g s:@DRIVEDB_BRANCH@:$DRIVEDB_BRANCH:g s:^DEST=.*$:DEST=smartmontools-drivedb.h: s:@drivedbdir@:.:g s:@os_dltools@:curl wget lynx:g s:exit 0:rm -f \"\$DEST.lastcheck\" ; exit 0: # Verification of the downloaded drivedb.h has to be done by the packaged smartctl. Skip it on the host system, and run it as part of %build stage. /# Check syntax/,/Keep old file if identical/d " <smartmontools-$VERSION/update-smart-drivedb.in >update-smart-drivedb-wd source ./update-smart-drivedb-wd rm -f "$DEST.lastcheck" rm -f "$DEST.old" BRANCHNAME=${location#branches/} UPD_TIME=$(date -d "$(sed -n 's/^.*$Id: drivedb.h [0-9][0-9]* \([^ ]* [^ ]*\) .*$/\1/p' <smartmontools-drivedb.h)" +%s) # Return to the OSC repository and perform needed changes. cd - >/dev/null if test $UPD_TIME -le $PCK_TIME ; then echo "No drivedb.h update available." if test -f smartmontools-drivedb.h ; then osc rm --force smartmontools-drivedb.h fi sed 's/^Source[0-9]*:[ ]*smartmontools-drivedb.h$/#&/;s/^cp -a .* drivedb\.h\.new$/#&/' <smartmontools.spec >"$WORKDIR/smartmontools.spec" if ! cmp -s smartmontools.spec "$WORKDIR/smartmontools.spec" ; then echo "Removing smartmontools-drivedb.h from spec file." osc vc -m "Remove smartmontools-drivedb.h. No update available in the upstream branch $BRANCHNAME." mv "$WORKDIR/smartmontools.spec" ./ fi else if test -f smartmontools-drivedb.h ; then if cmp -s "$WORKDIR/smartmontools-drivedb.h" smartmontools-drivedb.h ; then echo "smartmontools-drivedb.h is up to date. Nothing to be done." rm -r "$WORKDIR" exit 1 else echo "smartmontools-drivedb.h updated." mv "$WORKDIR/smartmontools-drivedb.h" ./ osc vc -m "Update smartmontools-drivedb.h to the latest version from the upstream branch $BRANCHNAME." fi else sed 's/^#\(Source[0-9]*:[ ]*smartmontools-drivedb.h\)$/\1/;s/^#\(cp -a .* drivedb\.h\.new\)$/\1/' <smartmontools.spec >"$WORKDIR/smartmontools.spec" if ! cmp -s smartmontools.spec "$WORKDIR/smartmontools.spec" ; then echo "Adding smartmontools-drivedb.h to the spec file." osc vc -m "Add smartmontools-drivedb.h, the latest version from the upstream branch $BRANCHNAME." mv "$WORKDIR/smartmontools.spec" ./ mv "$WORKDIR/smartmontools-drivedb.h" ./ osc add smartmontools-drivedb.h fi fi fi echo "Consider submitting of changes that just were done." rm -r "$WORKDIR"
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor