Created attachment 217211 [details] Makefile, distinfo and pkg-plist diffs Update net-mgmt/php-ipam to 1.4.1. Biggest change, besides bumping PORTVERSION, `make makesum`-ing distinfo and regenerating pkg-plist is switch from SF to GH for fetching distfile. Poudriere tesport passes, works fine for me, but I had a little problem with the upgrade. Database wouldn't upgrade because of incorrect timestamps, as described here: https://github.com/phpipam/phpipam/issues/2617#issuecomment-511794390 Changing timestamps in ipaddresses table as described above allowed for successful database upgrade: update ipaddresses set lastSeen='1970-01-01 00:00:01' where lastSeen < '0000-01-01 00:00:00'; Perhaps it would help to have this information in UPDATING?
Build info is available at https://gitlab.com/swills/freebsd-ports/pipelines/177952637
^Triage: If there is a changelog or release notes URL available for this version, please add it to the URL field. Any post upgrade instructions should be added in an UPDATING entry
Added changelog URL
I never wrote a patch for UPDATING. Should I take latest version and patch against it? Is it ok to write something like: --- ipaddresses table in phpipam database is likely to contain incorrect datetime values which prevent successful upgrade. Make sure to create backup of phpipam database. Before starting upgrade wizard in web interface run the following SQL query on phpipam database: update ipaddresses set lastSeen='1970-01-01 00:00:01' where lastSeen < '0000-01-01 00:00:00'; ---
+1 for 1.4.1 Seems to maintainer timeout. Any updates?
LGTM thanks for the patch
A commit references this bug: Author: lwhsu Date: Sat Mar 13 18:57:13 UTC 2021 New revision: 568272 URL: https://svnweb.freebsd.org/changeset/ports/568272 Log: net-mgmt/phpipam: Update to 1.4.1 PR: 248655 Submitted by: Marko Cupa? <marko.cupac@mimar.rs> Approved by: jake@xz.cx (maintainer) Changes: head/net-mgmt/phpipam/Makefile head/net-mgmt/phpipam/distinfo head/net-mgmt/phpipam/files/pkg-message.in head/net-mgmt/phpipam/pkg-plist
A commit references this bug: Author: lwhsu Date: Sat Mar 13 19:00:41 UTC 2021 New revision: 568273 URL: https://svnweb.freebsd.org/changeset/ports/568273 Log: Add updating notes for net-mgmt/phpipam 1.4.1 PR: 248655 Submitted by: Marko Cupa? <marko.cupac@mimar.rs> Changes: head/UPDATING
Committed with minor modification: no need to specify GH_* if the value is the same with PORTNAME. Besides UPDATING, I also add upgrading notes to files/pkg-message.in for pkg users.