1c274146f6
From Brad (new maintainer). "theoretically ok" ajacoutot@
27 lines
971 B
Plaintext
27 lines
971 B
Plaintext
$OpenBSD: patch-version_sh,v 1.1 2009/04/14 19:50:47 kili Exp $
|
|
--- version.sh.orig Thu Jan 29 16:45:08 2009
|
|
+++ version.sh Thu Feb 12 01:24:30 2009
|
|
@@ -1,19 +1,6 @@
|
|
-#!/bin/bash
|
|
-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}'`
|
|
- if [ $VER != $LOCALVER ] ; then
|
|
- VER="$VER+$(($LOCALVER-$VER))"
|
|
- elif git status | grep -q "modified:" ; then
|
|
- VER="${VER}M"
|
|
- fi
|
|
- VER="$VER $(git rev-list HEAD -n 1 | head -c 7)"
|
|
- echo "#define X264_VERSION \" r$VER\"" >> config.h
|
|
-else
|
|
- echo "#define X264_VERSION \"\"" >> config.h
|
|
- VER="x"
|
|
-fi
|
|
+#!/bin/sh
|
|
+echo "#define X264_VERSION \"\"" >> config.h
|
|
+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\"" >> config.h
|