diff options
author | schmonz <schmonz@pkgsrc.org> | 2014-10-17 11:50:42 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2014-10-17 11:50:42 +0000 |
commit | 0f63deb4065b665791eb6548f10a360012c31385 (patch) | |
tree | 4462269e32065bfdd947e1b0555201455f19c5d2 /www/ikiwiki/Makefile | |
parent | d8654bbf746a2b461c7bb6424ef7e2ca173bacc1 (diff) | |
download | pkgsrc-0f63deb4065b665791eb6548f10a360012c31385.tar.gz |
Update to 3.20141016. From the changelog:
[ Joey Hess ]
* Fix crash that can occur when only_committed_changes is set and a
file is deleted from the underlay.
[ Simon McVittie ]
* core: avoid dangerous use of CGI->param in list context, which led
to a security flaw in Bugzilla; as far as we can tell, ikiwiki
is not vulnerable to a similar attack, but it's best to be safe
* core: new reverse_proxy option prevents ikiwiki from trying to detect
how to make self-referential URLs by using the CGI environment variables,
for instance when it's deployed behind a HTTP reverse proxy
(Closes: #745759)
* core: the default User-Agent is now "ikiwiki/$version" to work around
ModSecurity rules assuming that only malware uses libwww-perl
* core: use protocol-relative URLs (e.g. //www.example.com/wiki) so that
https stays on https and http stays on http, particularly if the
html5 option is enabled
* core: avoid mixed content when a https cgiurl links to http static pages
on the same server (the static pages are assumed to be accessible via
https too)
* core: force the correct top URL in w3mmode
* google plugin: Use search form
* docwiki: replace Paypal and Flattr buttons with text links
* comments: don't record the IP address in the wiki if the user is
logged in via passwordauth or httpauth
* templates: add ARIA roles to some page elements, if html5 is enabled.
Thanks, Patrick
pkgsrc changes:
* For the python option, add missing py-expat dependency.
Diffstat (limited to 'www/ikiwiki/Makefile')
-rw-r--r-- | www/ikiwiki/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/www/ikiwiki/Makefile b/www/ikiwiki/Makefile index d6f5315bc72..13598e4c4ed 100644 --- a/www/ikiwiki/Makefile +++ b/www/ikiwiki/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.126 2014/10/03 18:37:11 schmonz Exp $ +# $NetBSD: Makefile,v 1.127 2014/10/17 11:50:42 schmonz Exp $ # -DISTNAME= ikiwiki_3.20140916 +DISTNAME= ikiwiki_3.20141016 PKGNAME= ${DISTNAME:S/_/-/} -PKGREVISION= 1 CATEGORIES= www textproc MASTER_SITES= ${MASTER_SITE_DEBIAN:=pool/main/i/ikiwiki/} @@ -36,11 +35,6 @@ PERL5_PACKLIST= auto/IkiWiki/.packlist USE_LANGUAGES= c USE_TOOLS+= gmake msgfmt perl:run xgettext -REPLACE_PERL+= Makefile.PL *.in *.cgi *.pm* */*.pm* */*/*.pm* */*.t -REPLACE_PERL+= *.setup */*.setup */*/*.setup -REPLACE_PERL+= ikiwiki-mass-rebuild ikiwiki-update-wikilist -REPLACE_PERL+= gitremotes mdwn2man pm_filter po/po2wiki -REPLACE_PERL+= plugins/externaldemo # XXX not installed # find . -type f -print | \ # perl -ne 'open(F, "<$_"); $l=<F>; print if $l =~ m|^#!/usr/bin/perl|' REPLACE_PYTHON+= plugins/proxy.py plugins/pythondemo plugins/rst |