[mupen64plus-core] 105/310: Imported Upstream version 1.99.4+77+8bb0e6b3ae3a

Sven Eckelmann ecsv-guest at moszumanska.debian.org
Thu Nov 26 05:57:29 UTC 2015


This is an automated email from the git hooks/post-receive script.

ecsv-guest pushed a commit to branch armhf_test
in repository mupen64plus-core.

commit fbe24373f25eb514b527f7cef9e65cb667438ea5
Author: Sven Eckelmann <sven at narfation.org>
Date:   Mon Aug 29 13:32:48 2011 +0200

    Imported Upstream version 1.99.4+77+8bb0e6b3ae3a
---
 tools/build_bundle_bin.sh  |  2 +-
 tools/build_bundle_src.sh  |  2 +-
 tools/build_modules_src.sh | 14 +++++++-------
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/tools/build_bundle_bin.sh b/tools/build_bundle_bin.sh
index e4ce8fd..a77058a 100755
--- a/tools/build_bundle_bin.sh
+++ b/tools/build_bundle_bin.sh
@@ -75,7 +75,7 @@ cp mupen64plus-core/tools/uninstall_binary_bundle.sh "../${OUTPUTDIR}/uninstall.
 cp mupen64plus-ui-console/doc/* "../${OUTPUTDIR}/"
 cd ..
 
-tar c "${OUTPUTDIR}" | gzip > "../${OUTPUTDIR}.tar.gz"
+tar c "${OUTPUTDIR}" --owner 0 --group 0 --numeric-owner | gzip -n > "../${OUTPUTDIR}.tar.gz"
 cd ..
 rm -rf "${TEMPDIR}"
 
diff --git a/tools/build_bundle_src.sh b/tools/build_bundle_src.sh
index eace2ea..0042c0e 100755
--- a/tools/build_bundle_src.sh
+++ b/tools/build_bundle_src.sh
@@ -51,7 +51,7 @@ rm -f m64p_get.sh m64p_update.sh
 
 echo "************************************ Creating archive"
 cd ..
-tar c "${OUTPUTDIR}" | gzip > "${OUTPUTDIR}.tar.gz"
+tar c "${OUTPUTDIR}" --owner 0 --group 0 --numeric-owner | gzip -n > "${OUTPUTDIR}.tar.gz"
 rm -rf "${OUTPUTDIR}"
 
 
diff --git a/tools/build_modules_src.sh b/tools/build_modules_src.sh
index 5fa0e6e..8b7f375 100755
--- a/tools/build_modules_src.sh
+++ b/tools/build_modules_src.sh
@@ -32,13 +32,13 @@ modules='mupen64plus-core mupen64plus-ui-console mupen64plus-audio-sdl mupen64pl
 for modname in ${modules}; do
   OUTPUTDIR="${modname}-$2"
   echo "************************************ Downloading and packaging module source code: ${modname}"
-  rm -rf "${OUTPUTDIR}"
-  hg clone -r $1 "http://bitbucket.org/richard42/$modname" "${OUTPUTDIR}"
-  rm -rf "${OUTPUTDIR}"/.hg*
+  rm -rf "tmp"
+  hg clone --noupdate "http://bitbucket.org/richard42/$modname" "tmp"
+  EXCLUDE="--exclude tmp/.hgtags --exclude tmp/.hg_archival.txt"
   if [ $# -eq 3 -a "$3" = "-norom" -a "$modname" = "mupen64plus-core" ]; then
-    rm -rf "${OUTPUTDIR}"/roms
+    EXCLUDE="${EXCLUDE} --exclude tmp/roms"
   fi
-  tar c "${OUTPUTDIR}" | gzip > "${OUTPUTDIR}.tar.gz"
-  rm -rf "${OUTPUTDIR}"
+  hg --repository tmp archive --no-decode --type tar --prefix "${OUTPUTDIR}/" ${EXCLUDE} -r $1 "${OUTPUTDIR}.tar"
+  gzip -n -f "${OUTPUTDIR}.tar"
+  rm -rf "tmp"
 done
-

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/mupen64plus-core.git



More information about the Pkg-games-commits mailing list