summaryrefslogtreecommitdiff
path: root/www/stagit
AgeCommit message (Collapse)AuthorFilesLines
2022-09-15stagit: Update to 1.2leot2-6/+6
Changes: 1.2 --- * Unset a newly introduced option in libgit2 that do not allow different users from reading the git repository. This is not a security issue for stagit. See also the related page: https://github.blog/2022-04-12-git-security-vulnerability-announced/ * Add a workaround comment in the Makefile for distros or packagers using an older libgit2 version (Void Linux, Debian, etc).
2022-06-27*: drop maintainership for packages not related to toolchains and ELF.fcambus1-2/+2
2022-04-02stagit: update to 1.1.fcambus2-6/+6
ChangeLog: - do not percent-encode: ',' or '-' or '.' it looks ugly - libgit2 config opts: set the search to an empty path - add dark mode support for the example stylesheet - improve stream read and write error handling
2021-12-04stagit: update to 1.0.fcambus2-6/+6
ChangeLog: - small typo fixes and url -> URL - man pages: add EXAMPLES section - encode the name, it could contain XML entities - percent encode characters in path names - ignore '\r' in writing the blob aswell - Print the number of remaining commits
2021-10-26www: Replace RMD160 checksums with BLAKE2s checksumsnia1-2/+2
All checksums have been double-checked against existing RMD160 and SHA512 hashes Not committed (merge conflicts): www/nghttp2/distinfo Unfetchable distfiles (almost certainly fetched conditionally...): ./www/nginx-devel/distinfo array-var-nginx-module-0.05.tar.gz ./www/nginx-devel/distinfo echo-nginx-module-0.62.tar.gz ./www/nginx-devel/distinfo encrypted-session-nginx-module-0.08.tar.gz ./www/nginx-devel/distinfo form-input-nginx-module-0.12.tar.gz ./www/nginx-devel/distinfo headers-more-nginx-module-0.33.tar.gz ./www/nginx-devel/distinfo lua-nginx-module-0.10.19.tar.gz ./www/nginx-devel/distinfo naxsi-1.3.tar.gz ./www/nginx-devel/distinfo nginx-dav-ext-module-3.0.0.tar.gz ./www/nginx-devel/distinfo nginx-rtmp-module-1.2.2.tar.gz ./www/nginx-devel/distinfo nginx_http_push_module-1.2.10.tar.gz ./www/nginx-devel/distinfo ngx_cache_purge-2.5.1.tar.gz ./www/nginx-devel/distinfo ngx_devel_kit-0.3.1.tar.gz ./www/nginx-devel/distinfo ngx_http_geoip2_module-3.3.tar.gz ./www/nginx-devel/distinfo njs-0.5.0.tar.gz ./www/nginx-devel/distinfo set-misc-nginx-module-0.32.tar.gz ./www/nginx/distinfo array-var-nginx-module-0.05.tar.gz ./www/nginx/distinfo echo-nginx-module-0.62.tar.gz ./www/nginx/distinfo encrypted-session-nginx-module-0.08.tar.gz ./www/nginx/distinfo form-input-nginx-module-0.12.tar.gz ./www/nginx/distinfo headers-more-nginx-module-0.33.tar.gz ./www/nginx/distinfo lua-nginx-module-0.10.19.tar.gz ./www/nginx/distinfo naxsi-1.3.tar.gz ./www/nginx/distinfo nginx-dav-ext-module-3.0.0.tar.gz ./www/nginx/distinfo nginx-rtmp-module-1.2.2.tar.gz ./www/nginx/distinfo nginx_http_push_module-1.2.10.tar.gz ./www/nginx/distinfo ngx_cache_purge-2.5.1.tar.gz ./www/nginx/distinfo ngx_devel_kit-0.3.1.tar.gz ./www/nginx/distinfo ngx_http_geoip2_module-3.3.tar.gz ./www/nginx/distinfo njs-0.5.0.tar.gz ./www/nginx/distinfo set-misc-nginx-module-0.32.tar.gz
2021-10-07www: Remove SHA1 hashes for distfilesnia1-2/+1
2021-05-28stagit: update to 0.9.6.fcambus2-7/+7
ChangeLog: - man page: codemadness is the primary server. make logo brandless (not 2f30) - README: improve a bit the usage examples - do not simplify the history by first-parent - tiny comment change - add function to print a single line, ignoring \r and \n - add meta viewport on stagit-index too
2021-03-16stagit: update to 0.9.5.fcambus2-7/+7
ChangeLog: - change STAGIT_BASEURL to an -u option and also update the example script - add $STAGIT_BASEURL environment variable to make Atom links absolute - README: mention tags.xml feature - micro-optimization: fputc (function) -> putc (macro/inline function) - fix warning with libgit2 v0.99+, remain compatible with older versions - add abbreviated commit hash to submodule file - add meta viewport for scaling on mobile - style.css: improve contrast - use size_t to count lines - avoid shadowed `name' global variable - refs_cmp: remove unneeded cast - use LEN() macros for arrays
2020-08-17stagit: update to 0.9.4.fcambus2-8/+7
ChangeLog: - fix a small memleak in writeatom() - stagit-index: remove unveil support for argv - fix submodule lookup in bare repos - regression: do not show unset or empty tags - refactor get reference, add another feed for tags/releases - sort branches and tags by time (descending)
2020-04-06*: bump PKGREVISION for libgit2 shlib bumpwiz1-2/+2
2020-02-29Recursive revbump for libgit2-0.99.0nia1-1/+2
2020-02-23stagit: update to 0.9.3.fcambus2-17/+9
ChangeLog: - Makefile improvements - some README tweaks and rewording, reordering - add OpenBSD unveil support - small code-style white-space/newline - style.css: highlight anchor ids, useful for linking highlighting lines in a diff - improve includes, stagit-index does not need compat.h - atom.xml: improve output format a bit
2019-06-19www/stagit: import stagit-0.9.2.fcambus4-0/+60
stagit generates HTML pages for a Git repository, and supports the following features: - Log of all commits from HEAD. - Log and diffstat per commit. - Show file tree with linkable line numbers. - Show references: local branches and tags. - Detect README and LICENSE file from HEAD and link it as a webpage. - Detect submodules (.gitmodules file) from HEAD and link it as a webpage. - Atom feed log (atom.xml). - Make index page for multiple repositories with stagit-index. - After generating the pages (relatively slow) serving the files is very fast, simple and requires little resources (because the content is static), only a HTTP file server is required. - Usable with text-browsers such as dillo, links, lynx and w3m. OK kamil@, leot@