diff options
author | Simon McVittie <smcv@debian.org> | 2015-06-09 11:28:04 +0100 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2015-06-09 22:30:43 +0100 |
commit | 361076e55d329c0297b2ddf450003ee7ce210925 (patch) | |
tree | 73588af543134104d9610880e3582c936b505656 | |
parent | 15939a2528d0615562618f6a22eb34427d829cda (diff) | |
download | ikiwiki-361076e55d329c0297b2ddf450003ee7ce210925.tar ikiwiki-361076e55d329c0297b2ddf450003ee7ce210925.tar.gz |
haiku: if deterministic build is requested, return a hard-coded haiku
-rw-r--r-- | IkiWiki/Plugin/haiku.pm | 8 | ||||
-rw-r--r-- | debian/changelog | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/haiku.pm b/IkiWiki/Plugin/haiku.pm index bf23dce67..7ce74696b 100644 --- a/IkiWiki/Plugin/haiku.pm +++ b/IkiWiki/Plugin/haiku.pm @@ -25,7 +25,13 @@ sub preprocess (@) { my $haiku; eval q{use Coy}; - if ($@ || ! Coy->can("Coy::with_haiku")) { + if ($config{deterministic}) { + $haiku = "Coy changes often. + For deterministic builds + try this substitute. + ", + } + elsif ($@ || ! Coy->can("Coy::with_haiku")) { my @canned=( "The lack of a Coy: No darting, subtle haiku. diff --git a/debian/changelog b/debian/changelog index d359bf262..41a47e57f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -34,6 +34,8 @@ ikiwiki (3.20150330) UNRELEASED; urgency=medium * Sort backlinks deterministically, by falling back to sorting by href if the link text is identical * Add a $config{deterministic} option and use it for the docwiki + * haiku: if deterministic build is requested, return a hard-coded haiku + * If deterministic build is requested, return a hard-coded haiku -- Joey Hess <id@joeyh.name> Tue, 28 Apr 2015 12:24:08 -0400 |