2effdf8b9c
from Brad (maintainer)
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
$OpenBSD: patch-version_sh,v 1.4 2012/05/25 07:45:33 ajacoutot Exp $
|
|
--- version.sh.orig Sun May 20 16:45:03 2012
|
|
+++ version.sh Sun May 20 20:08:39 2012
|
|
@@ -1,24 +1,6 @@
|
|
-#!/bin/bash
|
|
-[ -n "$1" ] && cd $1
|
|
-git rev-list HEAD | sort > config.git-hash
|
|
-LOCALVER=`wc -l config.git-hash | awk '{print $1}'`
|
|
-if [ $LOCALVER \> 1 ] ; then
|
|
- VER=`git rev-list origin/master | sort | join config.git-hash - | wc -l | awk '{print $1}'`
|
|
- VER_DIFF=$(($LOCALVER-$VER))
|
|
- echo "#define X264_REV $VER"
|
|
- echo "#define X264_REV_DIFF $VER_DIFF"
|
|
- if [ $VER_DIFF != 0 ] ; then
|
|
- VER="$VER+$VER_DIFF"
|
|
- fi
|
|
- if git status | grep -q "modified:" ; then
|
|
- VER="${VER}M"
|
|
- fi
|
|
- VER="$VER $(git rev-list HEAD -n 1 | cut -c 1-7)"
|
|
- echo "#define X264_VERSION \" r$VER\""
|
|
-else
|
|
- echo "#define X264_VERSION \"\""
|
|
- VER="x"
|
|
-fi
|
|
+#!/bin/sh
|
|
+echo "#define X264_VERSION \"\""
|
|
+VER="x"
|
|
rm -f config.git-hash
|
|
API=`grep '#define X264_BUILD' < x264.h | sed -e 's/.* \([1-9][0-9]*\).*/\1/'`
|
|
echo "#define X264_POINTVER \"0.$API.$VER\""
|