From 8cb7f6ee8f872938e257541c07d0e4b2ad0e3f35 Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Sun, 17 Jul 2011 19:50:07 +1000 Subject: - Added Utilities tab to Heimdall Frontend. - Fixed Heimdall command line support for PIT files without a reference to themselves. - Added tool tips to Heimdall Frontend. - Added heimdall 'info' and 'download-pit' actions. - Made 'detect' action return 0 if a device is detected, 1 otherwise. --- libusb-1.0/_bump.sh | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100755 libusb-1.0/_bump.sh (limited to 'libusb-1.0/_bump.sh') diff --git a/libusb-1.0/_bump.sh b/libusb-1.0/_bump.sh deleted file mode 100755 index 12c17d3..0000000 --- a/libusb-1.0/_bump.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# bump the version and update the git tree accordingly -# !!!THIS SCRIPT IS FOR INTERNAL DEVELOPER USE ONLY!!! - -type -P sed &>/dev/null || { echo "sed command not found. Aborting." >&2; exit 1; } -type -P git &>/dev/null || { echo "git command not found. Aborting." >&2; exit 1; } - -if [ ! -n "$1" ]; then - TAG=$(git describe --tags --abbrev=0 2>/dev/null) - if [ ! -n "$TAG" ]; then - echo Unable to read tag - aborting. - exit 1 - fi -else - TAG=$1 -fi -if [ ! ${TAG:0:3} = 'pbr' ]; then - echo Tag "$TAG" does not start with 'pbr' - aborting - exit 1 -fi -TAGVER=${TAG:3} -case $TAGVER in *[!0-9]*) - echo "$TAGVER is not a number" - exit 1 -esac -OFFSET=10000 -TAGVER=`expr $TAGVER + 1` -TAGVER_OFF=`expr $TAGVER + $OFFSET` -echo "Bumping version to pbr$TAGVER (nano: $TAGVER_OFF)" -sed -e "s/\(^m4_define(LIBUSB_NANO.*\)/m4_define(LIBUSB_NANO, [$TAGVER_OFF])/" configure.ac >> configure.ac~ -mv configure.ac~ configure.ac -# we're duplicating libusb_version.h generation here, but that avoids having to run configure -sed -e "s/\(^#define LIBUSB_VERSION_NANO.*\)/#define LIBUSB_VERSION_NANO $TAGVER_OFF/" libusb/libusb_version.h > libusb/libusb_version.h~ -mv libusb/libusb_version.h~ libusb/libusb_version.h -git commit -a -m "bumped internal version" -e -git tag "pbr$TAGVER" \ No newline at end of file -- cgit v1.2.3