Created attachment 248025 [details] static-api diff file This is a simple application emulating a basic REST API. It allows CRUD operations (Create, Read, Update, Delete) on different collections, where each collection is represented as a JSON file in the file system. If the collection does not exist, it is automatically created.
Created attachment 258414 [details] static-api diff file ^Triage: rebase patch.
Created attachment 264357 [details] [PATCH] www/static-api: [NEW PORT] Simple application emulating a basic REST API Rebase to version 0.3.0
I'm not sure what the next step is. I created this port quite some time ago and hadn’t received any updates until now. I see that the update I made on GitHub for version 0.3.0 has been picked up. If you need my approval to proceed, please go ahead.
Thank you! I indeed was waiting for your approval of my proposed changes to the port and now have it. Just need to wait for some more time for approval from my mentors to allow me to commit it. Or, if you like to have it sooner, I may try to ask fellow committer to have it landed to the tree.
0.3.0-g20250922 is incorrect. It should be either 0.3.0-20250922, or it should be replaced with: DISTVERSION=0.1.0-12 DISTREVISION=-gc508ad0 The latter comes from 'git describe --tags'. I use the following script to get the full git revision qualifier: #!/bin/sh REPO=$1 REV=$2 GIT=git DIR=$(echo $1 | sed -e 's|.*/|| ; s|\.git$||') ( git clone $REPO && (cd $DIR && $GIT describe --tags $REV) && rm -rf $DIR )
(In reply to Yuri Victorovich from comment #5) Correction: DISTVERSION=0.1.0-12 DISTVERSIONSUFFIX=-gc508ad0 This is printed by the above script.