[PATCH weston 4/4] doc: Use GitLab MRs for patches, not the list

Pekka Paalanen ppaalanen at gmail.com
Fri Aug 3 11:05:11 UTC 2018


On Sat, 14 Jul 2018 14:09:07 +0100
Daniel Stone <daniels at collabora.com> wrote:

> Though Wayland and the protocols still use mail-based patch review,
> Weston can now move to GitLab MRs with review through that system.
> 
> Add some documentation on how to submit patches through GitLab,
> specifically targeted at people who may be familiar with GitLab review,
> but not familiar with our rebasing microcommit workflow.
> 
> Signed-off-by: Daniel Stone <daniels at collabora.com>
> ---
>  CONTRIBUTING.md | 140 ++++++++++++++++++++++++------------------------
>  1 file changed, 70 insertions(+), 70 deletions(-)

Hi Daniel,

I'm happy to move to MR-based work flow immediately.

> 
> diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
> index 91b3fffe9..33b78510e 100644
> --- a/CONTRIBUTING.md
> +++ b/CONTRIBUTING.md
> @@ -4,8 +4,45 @@ Contributing to Weston
>  Sending patches
>  ---------------
>  
> -Patches should be sent to **wayland-devel at lists.freedesktop.org**, using
> -`git send-email`. See [git documentation] for help.
> +Patches should be sent via
> +[GitLab merge requests](https://docs.gitlab.com/ce/gitlab-basics/add-merge-request.html).
> +Weston is
> +[hosted on freedesktop.org's GitLab](https://gitlab.freedesktop.org/wayland/weston/):
> +in order to submit code, you should create an account on this GitLab instance,
> +fork the core Weston repository, push your changes to a branch in your new
> +repository, and then submit these patches for review through a merge request.
> +
> +Weston formerly accepted patches via `git-send-email`, sent to
> +**wayland-devel at lists.freedesktop.org**; these were
> +[tracked using Patchwork](https://patchwork.freedesktop.org/projects/wayland/).
> +Some old patches continue to be sent this way, and we may accept small new
> +patches sent to the list, but please send all new patches through GitLab merge
> +requests.
> +
> +Formatting and separating commits
> +---------------------------------
> +
> +Unlike many projects using GitHub and GitLab, Weston has a
> +[linear history](http://www.bitsnbites.eu/a-tidy-linear-git-history/). This

From the above link, I found this:
http://www.bitsnbites.eu/git-history-work-log-vs-recipe/
which explain the below in more words. Maybe include this link as well?

Linear history doesn't exactly imply "recipe" history, we want both. I
only came to think of the differences after reading both of the above
links.

> +means that every commit should be small, digestible, stand-alone, and
> +functional. Rather than a chronological commit history like this:
> +
> +    doc: final docs for view transforms
> +    fix tests when disabled, redo broken doc formatting
> +    better transformed-view iteration (thanks Hannah!)
> +    try to catch more cases in tests
> +    tests: add new spline test
> +    fix compilation on splines
> +    doc: notes on reticulating splines
> +    compositor: add spline reticulation for view transforms
> +
> +we aim to have a clean history which only reflects the final state, broken up
> +into functional groupings:
> +
> +    compositor: add spline reticulation for view transforms
> +    compositor: new iterator for view transforms
> +    tests: add view-transform correctness tests
> +    doc: fix Doxygen formatting for view transforms
>  
>  The first line of a commit message should contain a prefix indicating
>  what part is affected by the patch followed by one sentence that
> @@ -54,74 +91,37 @@ deserve, and the patches may cause redundant review effort.
>  Tracking patches and following up
>  ---------------------------------
>  
> -[Wayland Patchwork](http://patchwork.freedesktop.org/project/wayland/list/) is
> -used for tracking patches to Wayland and Weston. Xwayland patches are tracked
> -with the [Xorg project](https://patchwork.freedesktop.org/project/Xorg/list/)
> -instead. Libinput patches, even though they use the same mailing list as
> -Wayland, are not tracked in the Wayland Patchwork.
> -
> -The following applies only to Wayland and Weston.

We need a wayland patch to remove notes about Weston like the above.


...

> -There is also a command line interface to Patchwork called `pwclient`, see
> -http://patchwork.freedesktop.org/project/wayland/
> -for links where to get it and the sample `.pwclientrc` for Wayland/Weston.
> +Once submitted to GitLab, your patches will be reviewed by the Weston
> +development team on GitLab. Review may be entirely positive and result in your
> +code landing instantly, in which case, great! You're done. However, we may ask
> +you to make some revisions: fixing some bugs we've noticed, working to a
> +slightly different design, or adding documentation and tests.
> +
> +If you do get asked to revise the patches, please bear in mind the notes above.
> +You should use `git rebase -i` to make revisions, so that your patches follow
> +the clear linear split documented above. Following that split makes it easier
> +for reviewers to understand your work, and to verify that the code you're
> +submitting is correct.
> +
> +A common request is to split single large patch into multiple patches. This can
> +happen, for example, if when adding a new feature you notice a bug in Weston's
> +core which you need to fix to progress. Separating these changes into separate
> +commits will allow us to verify and land the bugfix quickly, pushing part of
> +your work for the good of everyone, whilst revision and discussion continues on
> +the larger feature part. It also allows us to direct you towards reviewers who
> +best understand the different areas you are working on.
> +
> +When you have made any requested changes, please rebase the commits, verify
> +that they still indivdiually look good, then force-push your new branch to

"individually"

> +GitLab. This will update the merge request and notify everyone subscribed to
> +your merge request, so they can review it again.
> +
> +There are also
> +[many GitLab CLI clients](https://about.gitlab.com/applications/#cli-clients),
> +if you prefer to avoid the web interface. It may be difficult to follow review
> +comments without using the web interface though, so we do recommend using this
> +to go through the review process, even if you use other clients to track the
> +list of available patches.
>  
>  
>  Coding style

Looks good!

Patches 1 and 2:
Reviewed-by: Pekka Paalanen <pekka.paalanen at collabora.co.uk>

Patch 4 also R-b with fixes, and patch 3 practically as well.

Oh wait, the rename of README to README.md will probably drop the file
from the dist tar-ball, since it's not auto-magic by autotools anymore.
CONTRIBUTING.md should also be added to dist. And the screenshot.jpg.

Should we start with Gitlab MRs already, but merge the doc patches only
after the final release, as per our documented release process?


Thanks,
pq
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 833 bytes
Desc: OpenPGP digital signature
URL: <https://lists.freedesktop.org/archives/wayland-devel/attachments/20180803/7b1bf9cd/attachment.sig>


More information about the wayland-devel mailing list