Page MenuHomeFreeBSD

mail/mutt: update to 2.2.13
ClosedPublic

Authored by uzsolt on Mar 10 2024, 9:25 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Jun 26, 12:37 PM
Unknown Object (File)
Fri, Jun 7, 6:03 PM
Unknown Object (File)
May 19 2024, 7:33 AM
Unknown Object (File)
May 10 2024, 5:22 AM
Unknown Object (File)
May 9 2024, 4:21 PM
Unknown Object (File)
May 6 2024, 5:05 AM
Unknown Object (File)
May 4 2024, 1:21 PM
Unknown Object (File)
Apr 27 2024, 6:11 PM
Subscribers
None

Details

Summary
Test Plan

Poudriere testport done.
Portlint, portfmt are ok, portclippy reports a warning of unknown GNU_CONFIGURE_MANPREFIX variable.

Diff Detail

Repository
R11 FreeBSD ports repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

uzsolt created this revision.

Planned commit message:

mail/mutt: update to 2.2.13

Changelog: https://marc.info/?l=mutt-users&m=170998444711121&w=2

PR: 277604
Reported by: dereks@lifeofadishwasher.com (maintainer)
Approved by: ...
Differential Revision: https://reviews.freebsd.org/D44293

Just in case you miss the other mail:

  1. Commit with git commit --author NAME <email>
  2. Remove Reported by:
  3. Use Approved by: Submitter is maintainer
This revision is now accepted and ready to land.Mar 11 2024, 1:55 PM

Just in case you miss the other mail:

  1. Commit with git commit --author NAME <email>
  2. Remove Reported by:
  3. Use Approved by: Submitter is maintainer

Okay. I forgot this mail :(
For clarification, the commit message:

mail/mutt: Update to 2.2.13

Changelog: https://marc.info/?l=mutt-users&m=170998444711121&w=2

PR: 277604
Approved by: Submitter is maintainer
Differential Revision: https://reviews.freebsd.org/D44293

  • commit message end ---

So, don't you appear in "approved by" in similar cases?
And should commit with:

git commit --author "Derek Schrock <dereks@lifeofadishwasher.com>"

After it pull --ff-only, rebase and push.

Okay. I forgot this mail :(
For clarification, the commit message:

mail/mutt: Update to 2.2.13

Changelog: https://marc.info/?l=mutt-users&m=170998444711121&w=2

PR: 277604
Approved by: Submitter is maintainer
Differential Revision: https://reviews.freebsd.org/D44293

  • commit message end ---

So, don't you appear in "approved by" in similar cases?
And should commit with:

git commit --author "Derek Schrock <dereks@lifeofadishwasher.com>"

After it pull --ff-only, rebase and push.

Oh damn. I simply forgot you are still under mentorship. :)

Change it to : Approved by: Submitter is maintainer, bofh (mentor), dizzy (mentor) like this

If you already have committed then you need to amend the commit and not create a new commit. Which will be something like:

git commit --amend --author "Derek Schrock <dereks@lifeofadishwasher.com>"

In plain sight it's difficult to grab the changes. But you will see this name somewhere in the commit message as Author.

Let me know if there are multiple commits then you intend to push and this is not the latest commit in the queue then you will need some more work.

Oh damn. I simply forgot you are still under mentorship. :)

:)

If you already have committed then you need to amend the commit and not create a new commit. Which will be something like:

git commit --amend --author "Derek Schrock <dereks@lifeofadishwasher.com>"

In plain sight it's difficult to grab the changes. But you will see this name somewhere in the commit message as Author.

Let me know if there are multiple commits then you intend to push and this is not the latest commit in the queue then you will need some more work.

I don't make commits only after approval. I make on my own branch "git diff --output file.diff", "git restore" and if it's approved use "git apply". I feel it safer as the commits.

This revision was automatically updated to reflect the committed changes.