while there, switch from sourceforge to github upstream (there are many
new versions since this one, but the patches to get it to work on newer
openbsd versions haven't been fed upstream and upstream aren't keeping this
building themselves, so updating is a bit challenging, I made a start in
openbsd-wip but am not likely to finish it myself)
from 57fd690279
while here fix WANTLIB.
this project last release was in 2012, there are no real signs of life,
but it stills works fine in basic testing so lets keep it for shit and
.. (puts on sunglasses) giggles.
https://wiki.gnome.org/action/show/Apps/Gitg is the official 'blessed &
maintained' gnome git gui, but it isnt ported, and is in vala so meh.
- implicitly mark all files in work tree as up-to-date after 'got integrate'
- tog: fix behaviour if 'n' is pressed before search is started (found by naddy)
- in 'got clone', allow -l together with -q, for consistency with 'got fetch'
- add 'got commit -F' option to commit with a log message stored in a file
- simplify error message shown when 'got rebase' has nothing to do
- tolerate tag objects which lack tagger timestamp information (found by naddy)
- got info: fix a pasto in an error message (naddy)
- include remote branches in the output of 'got branch -l' (suggested by helg)
Add "-j" to print results in raw JSON format; for example,
to get all outdated ports in a category but defer processing
to an external filter:
$ portroach-cli -j -o -m . -p ^sysutils/ | jq -f ./filter
clang does not inline sqrt(3) on powerpc, leading to undefined references, it
requires libm (it has been applied to all archs). Thanks to gkoehler and naddy
for providing better explanations about the situation!
While here, remove a trailing whitespace in DESCR.
OK gkoehler@
The TLS tests currently fail when executed with libressl. Partly
because of bogus information in the certificates used by the tests.
GnuTLS and OpenSSL apparently accept that. Our rsyslog which uses
librelp is linked with GnuTLS.
ok tb