Package: fceux / 2.3.0+dfsg1-3

use-correct-git-repo-commit-hash-for-upstream-release.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: Joseph Nahmias <jello@debian.org>
Date: Mon, 18 Jan 2021 23:13:50 -0500
Subject: use correct git repo & commit hash for upstream release

---
 scripts/genGitHdr.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/genGitHdr.sh b/scripts/genGitHdr.sh
index 64f4d59..0cb9f07 100755
--- a/scripts/genGitHdr.sh
+++ b/scripts/genGitHdr.sh
@@ -7,8 +7,8 @@ TMP_FILE="/tmp/$FILE";
 
 echo "Output File: $OUTPUT_DIR/$FILE";
 
-GIT_URL=`git config --get remote.origin.url`;
-GIT_REV=`git rev-parse HEAD`;
+GIT_URL='https://github.com/TASVideos/fceux.git'
+GIT_REV='65c5b0d2a1c08db75bb41340bfa5534578926944'
 
 echo "// fceux_gitrev.cpp -- DO NOT EDIT: This file is auto-generated at build" >| $TMP_FILE;
 echo "#include \"Qt/fceux_git_info.h\" " >> $TMP_FILE;