From f4bd9d43b8b38441a85ba952460afcae383fd695 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 5 May 2016 14:19:16 -0400 Subject: [PATCH] Add script to update Expat from upstream --- Utilities/Scripts/update-expat.bash | 49 +++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100755 Utilities/Scripts/update-expat.bash diff --git a/Utilities/Scripts/update-expat.bash b/Utilities/Scripts/update-expat.bash new file mode 100755 index 000000000..8a2a5fe4f --- /dev/null +++ b/Utilities/Scripts/update-expat.bash @@ -0,0 +1,49 @@ +#!/usr/bin/env bash + +set -e +set -x +shopt -s dotglob + +readonly name="expat" +readonly ownership="Expat Upstream " +readonly subtree="Utilities/cmexpat" +readonly repo="http://git.code.sf.net/p/expat/code_git" +readonly tag="master" +readonly shortlog=false +readonly paths=" + expat/lib/asciitab.h + expat/lib/expat.h + expat/lib/xmltok.h + expat/lib/internal.h + expat/lib/xmlrole.h + expat/lib/iasciitab.h + expat/lib/latin1tab.h + expat/lib/xmlrole.c + expat/lib/utf8tab.h + expat/lib/nametab.h + expat/lib/ascii.h + expat/lib/xmltok_impl.h + expat/lib/xmltok_ns.c + expat/lib/winconfig.h + expat/lib/expat_external.h + expat/lib/xmltok.c + expat/lib/xmlparse.c + expat/lib/xmltok_impl.c + expat/README + expat/ConfigureChecks.cmake + expat/CMakeLists.txt + expat/expat_config.h.cmake + expat/COPYING +" + +extract_source () { + git_archive + pushd "${extractdir}/${name}-reduced" + fromdos expat/ConfigureChecks.cmake expat/CMakeLists.txt expat/expat_config.h.cmake + chmod a-x expat/ConfigureChecks.cmake expat/CMakeLists.txt expat/expat_config.h.cmake + mv expat/* . + rmdir expat + popd +} + +. "${BASH_SOURCE%/*}/update-third-party.bash"