Commit Briefs


Omar Polo

install gg too


Omar Polo

typo


Omar Polo

track file dependency using -MMD if available

While here, move the SRCS variable to the configure and add the -includes in Makefile.local; it de-clutters the Makefile a bit.






Omar Polo

add ability to proxy requests

Add to gmid the ability to forwad a request to another gemini server and thus acting like a reverse proxy. The current syntax for the config file is server "example.com" { ... proxy relay-to host:port } Further options (like the use of custom certificates) are planned. cf. github issue #7


Omar Polo

reimplement gg

This is a better version of gg. Initially it grew with flags directly needed to the specific test cases I wanted to write, so it's ugly to use but handy for tests. This is a new and re-thought implementation that it is (hopefully) easier to use both and "curl-like for gemini" but also for scripts and tests cases. One completely new feature is the proxying support with -P to send the request to the given host.


Omar Polo

allow to run only a subset of the runtime tests

with make TESTS='test_1 test_2 ...' regress now it's possible to run only that specified subset of tests. It's really useful during debugging :)


Omar Polo

fix "warning: jobserver unavailable: using -j1"

https://www.gnu.org/software/make/manual/html_node/Error-Messages.html


Omar Polo

remove last occurrences of lex


Omar Polo

drop the dependency on lex by implementing yylex by ourselves

The actual implementation is based off doas' parse.y. This gave us various benefits, like cleaner code, \ to break long lines, better handling of quotes etc...


Omar Polo

move gg to regress