Module: kamailio
Branch: master
Commit: aed35ddb6aac8d12cdd60b07ce5bbc1e57a71b94
URL:
https://github.com/kamailio/kamailio/commit/aed35ddb6aac8d12cdd60b07ce5bbc1…
Author: S-P Chan <shihping.chan(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-10-06T08:31:35+02:00
pkg: add example script to create tarball with submodules instantiated
In preparation for packaging of tls_wolfssl, add an example script to
create source tarball with submodule code.
---
Added: pkg/scripts/git-archive-all.sh
---
Diff:
https://github.com/kamailio/kamailio/commit/aed35ddb6aac8d12cdd60b07ce5bbc1…
Patch:
https://github.com/kamailio/kamailio/commit/aed35ddb6aac8d12cdd60b07ce5bbc1…
---
diff --git a/pkg/scripts/git-archive-all.sh b/pkg/scripts/git-archive-all.sh
new file mode 100755
index 00000000000..71bacc7d896
--- /dev/null
+++ b/pkg/scripts/git-archive-all.sh
@@ -0,0 +1,25 @@
+#!/usr/bin/env bash
+# packaging script to include submodules
+# modified from:
https://gist.github.com/arteymix/03702e3eb05c2c161a86b49d4626d21f
+# Usage: pkg/scripts/git-archive-all.sh kamailio-5.8.0 ../output/kamailio-5.8.0_src
+
+usage() {
+ echo Usage: pkg/scripts/git-archive-all.sh kamailio-5.8.0
../output/kamailio-5.8.0_src
+}
+
+if [ -z $1 ]; then
+ echo "You must specify a prefix name."
+ usage
+ exit 1
+fi
+
+if [ -z $2 ]; then
+ echo "You must specify a super-archive name."
+ usage
+ exit 1
+fi
+
+git archive --prefix "$1/" -o "$2.tar" HEAD
+git submodule foreach --recursive "git archive --prefix=$1/\$sm_path/
--output=\$sha1.tar HEAD && tar --concatenate --file=$(pwd)/$2.tar \$sha1.tar
&& rm \$sha1.tar"
+
+gzip "$2.tar"