diff mbox

[dim,v2,2/2] dim: Add add-link command

Message ID 20170315150927.3477-1-ville.syrjala@linux.intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Ville Syrjälä March 15, 2017, 3:09 p.m. UTC
From: Ville Syrjälä <ville.syrjala@linux.intel.com>

Add the "add-link" command so that you can add the Link: tag to
patches that failed to apply directly.

v2: Drop the aliases
    Remove the temp file
    Clean up locals
    Use echoerr for error prints

Cc: Jani Nikula <jani.nikula@linux.intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 dim | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)
diff mbox

Patch

diff --git a/dim b/dim
index 8d76953d1746..f737b2878a42 100755
--- a/dim
+++ b/dim
@@ -664,6 +664,45 @@  function dim_apply_branch
 	eval $DRY $DIM_POST_APPLY_ACTION
 }
 
+function dim_add_link
+{
+	local branch file message_id
+
+	branch=$1
+	shift
+	file=$(mktemp)
+
+	assert_branch $branch
+	assert_repo_clean
+
+	cat > $file
+
+	message_id=$(message_get_id $file)
+
+	rm -f $file
+
+	if [ -n $message_id ]; then
+		dim_commit_add_tag "Link: http://patchwork.freedesktop.org/patch/msgid/$message_id"
+	else
+		echoerr "No message-id found in the patch file."
+	fi
+}
+
+function dim_add_link_queued
+{
+	dim_add_link drm-intel-next-queued "$@"
+}
+
+function dim_add_link_fixes
+{
+	dim_add_link drm-intel-fixes "$@"
+}
+
+function dim_add_link_next_fixes
+{
+	dim_add_link drm-intel-next-fixes "$@"
+}
+
 dim_alias_aq=apply-queued
 function dim_apply_queued
 {