openbsd-ports/multimedia/x264/patches/patch-version_sh
jakemsr 36eed127e1 update to x264-snapshot-20101023-2245
works with upcoming mplayer update as well as current ports
from Brad (MAINTAINER)
2010-11-06 23:05:48 +00:00

28 lines
933 B
Plaintext

$OpenBSD: patch-version_sh,v 1.3 2010/11/06 23:05:48 jakemsr Exp $
--- version.sh.orig Wed Aug 4 16:45:08 2010
+++ version.sh Thu Aug 5 13:23:09 2010
@@ -1,20 +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))"
- 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\""