summaryrefslogtreecommitdiffstats
path: root/netwerk/sctp/update_sctp.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
commit43a97878ce14b72f0981164f87f2e35e14151312 (patch)
tree620249daf56c0258faa40cbdcf9cfba06de2a846 /netwerk/sctp/update_sctp.sh
parentInitial commit. (diff)
downloadfirefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz
firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'netwerk/sctp/update_sctp.sh')
-rw-r--r--netwerk/sctp/update_sctp.sh35
1 files changed, 35 insertions, 0 deletions
diff --git a/netwerk/sctp/update_sctp.sh b/netwerk/sctp/update_sctp.sh
new file mode 100644
index 0000000000..45f33dd732
--- /dev/null
+++ b/netwerk/sctp/update_sctp.sh
@@ -0,0 +1,35 @@
+#!/bin/bash
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+# assume $1 is the directory with a checkout of the libsctp source
+#
+# sctp usrlib source was available (via svn) at:
+# svn co https://sctp-refimpl.googlecode.com/svn/trunk sctpSVN
+# now available via git:
+# git clone https://github.com/sctplab/usrsctp.git
+#
+# also assumes we've made *NO* changes to the SCTP sources! If we do, we have to merge by
+# hand after this process, or use a more complex one.
+#
+# For example, one could update an sctp library import head, and merge back to default. Or keep a
+# separate repo with this in it, and pull from there to m-c and merge.
+if [ "$1" ] ; then
+ export date=`date`
+ export revision=`(cd $1; git rev-parse HEAD)`
+
+ cp $1/usrsctplib/*.c $1/usrsctplib/*.h netwerk/sctp/src
+ cp $1/usrsctplib/netinet/*.c $1/usrsctplib/netinet/*.h netwerk/sctp/src/netinet
+ cp $1/usrsctplib/netinet6/*.c $1/usrsctplib/netinet6/*.h netwerk/sctp/src/netinet6
+
+ hg addremove netwerk/sctp/src --include "**.c" --include "**.h" --similarity 90
+
+ echo "sctp updated to version $revision from git on $date" >> netwerk/sctp/sctp_update.log
+ echo "sctp updated to version $revision from git on $date"
+else
+ echo "usage: $0 path_to_sctp_directory"
+ echo "run from the root of your m-c clone"
+ echo "example: sh netwerk/sctp/update.sh ../../sctp"
+fi