From: Jani Nikula <jani.nikula@intel.com>
To: intel-gfx@lists.freedesktop.org
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>,
Rodrigo Vivi <rodrigo.vivi@intel.com>
Subject: Re: [maintainer-tools PATCH 2/2] dim: Accept patchwork URLs as apply-branch optional argument.
Date: Thu, 17 Aug 2017 10:37:08 +0300 [thread overview]
Message-ID: <87lgmiabmj.fsf@nikula.org> (raw)
In-Reply-To: <20170816181359.29998-2-rodrigo.vivi@intel.com>
On Wed, 16 Aug 2017, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> Instead of having to manually download mbox from patchwork
> let's make dim to do it directly.
>
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> Cc: Jani Nikula <jani.nikula@intel.com>
> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> dim | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/dim b/dim
> index e98d23b24ec0..73b48da7f436 100755
> --- a/dim
> +++ b/dim
> @@ -756,6 +756,16 @@ function dim_push
> dim_push_branch $(git_current_branch) "$@"
> }
>
> +function download_mbox
> +{
> + wget -q --spider ${1}
What's the benefit of doing this first?
> + if [ $? -ne "0" ]; then
> + echoerr "URL ${1} not found."
> + exit 1
Always just return 1 on errors, and set -e will handle the abort. This
way the caller can decide to use foo || true to ignore the error.
> + fi
> + wget -q ${1} -O $2
> +}
> +
> # ensure we're on branch $1, and apply patches. the rest of the arguments are
> # passed to git am.
> dim_alias_ab=apply-branch
> @@ -772,6 +782,14 @@ function dim_apply_branch
> assert_repo_clean
>
> case $1 in
> + *"patchwork.freedesktop.org"*"mbox")
> + download_mbox $1 $file
> + shift
> + ;;
> + *"patchwork.freedesktop.org"*)
> + download_mbox $1/mbox $file
> + shift
> + ;;
Really, the interface gets worse and worse here!
---
I may sound like a pedant looking after style and consistency in a shell
script, but this one has grown beyond the size where we can just ignore
its maintenance. I've put in quite a bit of effort since the user base
went from 1 to 2 to keep it together.
BR,
Jani.
> *".patch" | *".mbox")
> cat $1 > $file
> shift
--
Jani Nikula, Intel Open Source Technology Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2017-08-17 7:32 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-16 18:13 [maintainer-tools PATCH 1/2] dim: Accept .mbox and .patch files as apply-branch optional argument Rodrigo Vivi
2017-08-16 18:13 ` [maintainer-tools PATCH 2/2] dim: Accept patchwork URLs " Rodrigo Vivi
2017-08-16 18:17 ` Rodrigo Vivi
2017-08-17 7:45 ` Jani Nikula
2017-08-17 16:18 ` Rodrigo Vivi
2017-08-17 16:49 ` Rodrigo Vivi
2017-08-17 7:37 ` Jani Nikula [this message]
2017-08-17 16:08 ` Rodrigo Vivi
2017-08-17 7:30 ` [maintainer-tools PATCH 1/2] dim: Accept .mbox and .patch files " Jani Nikula
2017-08-17 7:57 ` Daniel Vetter
2017-08-17 8:12 ` Jani Nikula
2017-08-17 8:40 ` Daniel Vetter
2017-08-17 16:24 ` Rodrigo Vivi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87lgmiabmj.fsf@nikula.org \
--to=jani.nikula@intel.com \
--cc=daniel.vetter@ffwll.ch \
--cc=intel-gfx@lists.freedesktop.org \
--cc=rodrigo.vivi@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.