Created attachment 257619 [details] patch.diff Hi, Please commit the patch.diff to update topgrade to 16.0.2 Thanks in advance. BTW: Here are my code snippets for automated port-upgrade-make-diff. Maybe you can automate this recurring task: --- #!/bin/sh new_version="16.0.2" port_revision="0" cd /usr/ports git fetch --prune git merge cd sysutils/topgrade git checkout main git branch -D upgrade/topgrade-${new_version} git checkout -b upgrade/topgrade-${new_version} sed -i.bak -e "s#^DISTVERSION=\(.*\)#DISTVERSION= ${new_version}#g" Makefile sed -i.bak -e "s#^PORTREVISION=\(.*\)#PORTREVISION= ${port_revision}#g" Makefile export BATCH=1 echo "Make: clean" make clean echo "Make: install-missing-packages" make install-missing-packages echo "Make: makesum" make makesum echo "Make: cargo-crates" make cargo-crates > Makefile.crates echo "Make: makesum" make makesum echo "Make: cargo-crates-licenses" make cargo-crates-licenses echo "Make: clean" make clean echo "Make: reinstall" make reinstall git commit -a -m "upgrade" git diff main upgrade/topgrade-${new_version} > patch.diff --- Best, C.
Your patch adds garbage to sysutils/topgrade/Makefile.crates. Weirdly enough, there is already garbage in that file. It shouldn't be there. I suppose your upgrading scripts are defective and you didn't review the patch before you submitted it. Please check and resubmit. Also make sure the patch has been build tested with Poudriere before you submit it.
Created attachment 257647 [details] patch.diff Dear Robert, I am very sorry for the inconveniences. I created a new patch that will also remove the garbage in the Makefile.crates file. And yes, I have tested topgrade before upload the ports patch file. The artifact end to end test could also be automated but it isn't yet I am wondering why it is not possible to have a Makefile for port-upgrades in the ports for easier handling. Ex.: export PORT_NEW_VERSION=16.0.4 make update-port generate-update-patch Best, Cliff
(In reply to freebsd from comment #2) Again: because while it's often as easy as bumping a distversion and then regenerating the distinfo, it isn't always. Upstream may do random changes that require your intervention as the package maintainer. That's why as the maintainer you need to (1) read the release notes (2) update the package (3) test the port and check if it still works; this starts with a build test, then running the test suite if applicable and then running the packaged tools to check if they still do their job (4) check if there are any new bits that need to be packaged and (5) adjust the package manually if needed. I mean sure you can build some scripting to automate part (2), but that's by far the easiest out of all the parts involved in updating a port. I hope you are also doing the other steps when you update your ports. If not, you have some work to do. We want that the ports we ship actually work and aren't just an unfiltered collection of random projects in various state of disrepair. Now to continue, is there a changelog and could you provide me with a link to it? If not, could you summarise the upstream changes? As for the garbage in Makefile.crates, I'm pretty sure you want to run "make cargo-crates-merge" to update the file. That's the target we have for this purpose and it doesn't generate any garbage. The fact that you didn't notice the garbage in the file makes me seriously wonder how much review of the generated patches you actually did. Seems like you didn't even look at the patch file. As for your patch, there is an immediate issue in that you have used spaces for indentation when you should use tabs. Please make sure the port Makefile is indented with tabs, not spaces. I'll fix that for now, but please make sure it's correct with your next patch. Also finally, please check if you can submit future patches in git-format-patch(1) format. This makes it easier to deal with them as they already have commit information.
(In reply to Robert Clausecker from comment #3) "Upstream may do random changes that require your intervention as the package maintainer. That's why as the maintainer you need to (1) read the release notes (2) update the package (3) test the port and check if it still works; this starts with a build test, then running the test suite if applicable and then running the packaged tools to check if they still do their job (4) check if there are any new bits that need to be packaged and (5) adjust the package manually if needed." Totally agree. But as a new porter it is a lot of work to setup the local env. for doing all this steps. There is no shared infrastructure prepared already. And beside that you need to read a lot of informations how to create the Makefile correct and so on. I just want to make suggestions to improve port changes for minor updates. "Now to continue, is there a changelog and could you provide me with a link to it? If not, could you summarise the upstream changes?" Yes, the changelog can be found here: https://github.com/topgrade-rs/topgrade/releases/tag/v16.0.2 "As for your patch, there is an immediate issue in that you have used spaces for indentation when you should use tabs. Please make sure the port Makefile is indented with tabs, not spaces. I'll fix that for now, but please make sure it's correct with your next patch." Thanks for fixing it. I found the issue in my sed command. "Also finally, please check if you can submit future patches in git-format-patch(1) format. This makes it easier to deal with them as they already have commit information." Sure I will. Best, Cliff
(In reply to freebsd from comment #4) > Totally agree. > But as a new porter it is a lot of work to setup the local env. for doing all this steps. There is no shared infrastructure prepared already. And beside that you need to read a lot of informations how to create the Makefile correct and so on. I just want to make suggestions to improve port changes for minor updates. Yes, there is a learning curve and yes you may need a bit of a set to test thoroughly. The ports ecosystem is based on trust and part of this trust is that submitters test their patches. If you cannot test your patches, either state clearly that they are untested or hold them until you can test them. People who automatise the submission of tons of untested patches are of no help at all to the project. The limiting factor is not the mechanical action of bumping the port version. It's ensuring the result is correct and works. And even minor updates can break things. We have no control over upstream and upstream is often not aware of basic software engineering practices, like keeping compatibility. We've had packages that break all their consumers in what they declare to be a minor update. So again: every update *must* be manually tested. The submitter of the patch *must* read the release notes and check if there is any problem. Bumping DISTVERSION and regenerating distinfo is trivial, and if you think that is the hard part that is keeping people away from maintaining packages, I have bad news for you.
A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/ports/commit/?id=1399fc8230268a573147935058ff9089971c519c commit 1399fc8230268a573147935058ff9089971c519c Author: freebsd <freebsd@scd-systems.net> AuthorDate: 2025-02-19 10:51:02 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2025-02-20 23:27:24 +0000 sysutils/topgrade: update to 16.0.2 Changelog: https://github.com/topgrade-rs/topgrade/releases/tag/v16.0.2 PR: 284878 sysutils/topgrade/Makefile | 4 ++-- sysutils/topgrade/Makefile.crates | 6 ------ sysutils/topgrade/distinfo | 6 +++--- 3 files changed, 5 insertions(+), 11 deletions(-)
Thank you for your contribution.