summaryrefslogtreecommitdiff
path: root/www/ikiwiki/patches
diff options
context:
space:
mode:
authorschmonz <schmonz@pkgsrc.org>2009-10-18 04:43:16 +0000
committerschmonz <schmonz@pkgsrc.org>2009-10-18 04:43:16 +0000
commita3cb9796b8b6da5f1f79eaffdd630d648f5164a1 (patch)
treec3695425c6ee2e21591adb3bc8ab4ad6a4beefd1 /www/ikiwiki/patches
parente79d886733a678a01863f410a548f8747031c92e (diff)
downloadpkgsrc-a3cb9796b8b6da5f1f79eaffdd630d648f5164a1.tar.gz
Update to 3.20091017. From the changelog:
* Added support framework for multiple types of dependencies, including dependncies that are only affected by page precence or link changes. * Rebuild wikis on upgrade to this version to get improved dependency info. * pagecount, calendar, postsparkline, progress: Use a presence dependency, which makes these directives much less expensive to use, since page edits will no longer trigger an unnecessary update. * map: Use a presence dependency unless show= is specified. This makes maps efficient enough that they can be used on sidebars! * inline: Use a presence dependency in quick mode. * brokenlinks: Use a link dependency. This makes it much more efficient, only updating when really necessary. * orphans, pagestats: Use a combination of presence and link dependencies. This makes them more efficient. It also fixes a longstanding bug, where if only a small set of pages were considered by orphans/pagestats, changes to links on other pages failed to cause an update. * linkmap: Use a combination of presence and link dependencies. This makes the map be regenerated much less frequently in many cases, so larger maps are more practical to use now. * Plugins providing PageSpec `match_*` functions should pass additional influence information when creating result objects. This allows correctly handling many more complicated dependencies. * API change: `pagespec_match_list` has completly changed its interface. The old interface will be removed soon, and a warning will be printed if any plugins try to use it. * Transitive dependencies are now correctly supported. * ikiwiki-calendar: New command automates creation of archive pages using the calendar plugin. * calendar: Fix midnight rebuild trigger of calendars with explicit month/year. * calendar: Fix bug in next/previous year/month links, which sometimes linked to an archive page from the wrong year, or were missing. * git: --getctime will now follow renames back to the original creation of a file. * calendar: Fix CSS for year calendar to match the plugin documentation. * Added minimal default CSS for calendar plugin, just highlighting the current day. * inline: Optimize generation of archives, etc by not getting inlined page content if the template does not use it.
Diffstat (limited to 'www/ikiwiki/patches')
-rw-r--r--www/ikiwiki/patches/patch-aa22
1 files changed, 12 insertions, 10 deletions
diff --git a/www/ikiwiki/patches/patch-aa b/www/ikiwiki/patches/patch-aa
index 1203fc68302..41f6870db3f 100644
--- a/www/ikiwiki/patches/patch-aa
+++ b/www/ikiwiki/patches/patch-aa
@@ -1,6 +1,6 @@
-$NetBSD: patch-aa,v 1.11 2009/08/30 23:30:08 schmonz Exp $
+$NetBSD: patch-aa,v 1.12 2009/10/18 04:43:16 schmonz Exp $
---- Makefile.PL.orig 2009-08-30 15:09:22.000000000 -0400
+--- Makefile.PL.orig 2009-10-14 13:24:13.000000000 -0400
+++ Makefile.PL
@@ -25,6 +25,8 @@ PROBABLE_INST_LIB=$(shell \\
@@ -11,7 +11,7 @@ $NetBSD: patch-aa,v 1.11 2009/08/30 23:30:08 schmonz Exp $
tflag=$(shell if [ -n "$$NOTAINT" ] && [ "$$NOTAINT" != 1 ]; then printf -- "-T"; fi)
extramodules=$(shell if [ "$$PROFILE" = 1 ]; then printf -- "-d:NYTProf"; fi)
-@@ -57,7 +59,7 @@ underlay_install:
+@@ -58,7 +60,7 @@ underlay_install:
for dir in `cd underlays && find . -follow -type d ! -regex '.*\.svn.*'`; do \
install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
for file in `find underlays/$$dir -follow -maxdepth 1 -type f`; do \
@@ -20,7 +20,7 @@ $NetBSD: patch-aa,v 1.11 2009/08/30 23:30:08 schmonz Exp $
install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
done; \
done
-@@ -76,7 +78,7 @@ extra_install: underlay_install
+@@ -77,7 +79,7 @@ extra_install: underlay_install
install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$dir; \
done
for file in `cd doc/examples; find . -type f ! -regex '.*\.svn.*'`; do \
@@ -29,7 +29,7 @@ $NetBSD: patch-aa,v 1.11 2009/08/30 23:30:08 schmonz Exp $
install -m 644 doc/examples/$$file $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$file; \
done
-@@ -95,14 +97,14 @@ extra_install: underlay_install
+@@ -96,15 +98,15 @@ extra_install: underlay_install
install -m 755 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
done
@@ -38,11 +38,13 @@ $NetBSD: patch-aa,v 1.11 2009/08/30 23:30:08 schmonz Exp $
- install -m 644 ikiwiki-makerepo.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-makerepo.1
- install -m 644 ikiwiki-transition.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-transition.1
- install -m 644 ikiwiki-update-wikilist.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-update-wikilist.1
+- install -m 644 ikiwiki-calendar.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-calendar.1
+ install -d $(DESTDIR)$(MANDIR)/man1
+ install -m 644 ikiwiki.man $(DESTDIR)$(MANDIR)/man1/ikiwiki.1
+ install -m 644 ikiwiki-makerepo.man $(DESTDIR)$(MANDIR)/man1/ikiwiki-makerepo.1
+ install -m 644 ikiwiki-transition.man $(DESTDIR)$(MANDIR)/man1/ikiwiki-transition.1
+ install -m 644 ikiwiki-update-wikilist.man $(DESTDIR)$(MANDIR)/man1/ikiwiki-update-wikilist.1
++ install -m 644 ikiwiki-calendar.man $(DESTDIR)$(MANDIR)/man1/ikiwiki-calendar.1
- install -d $(DESTDIR)$(PREFIX)/share/man/man8
- install -m 644 ikiwiki-mass-rebuild.man $(DESTDIR)$(PREFIX)/share/man/man8/ikiwiki-mass-rebuild.8
@@ -51,7 +53,7 @@ $NetBSD: patch-aa,v 1.11 2009/08/30 23:30:08 schmonz Exp $
install -d $(DESTDIR)$(PREFIX)/sbin
install ikiwiki-mass-rebuild $(DESTDIR)$(PREFIX)/sbin
-@@ -118,10 +120,10 @@ extra_install: underlay_install
+@@ -120,10 +122,10 @@ extra_install: underlay_install
# These might fail if a regular user is installing into a home
# directory.
@@ -59,10 +61,10 @@ $NetBSD: patch-aa,v 1.11 2009/08/30 23:30:08 schmonz Exp $
- -install -m 0644 wikilist $(DESTDIR)/etc/ikiwiki
- -install -m 0644 auto.setup $(DESTDIR)/etc/ikiwiki
- -install -m 0644 auto-blog.setup $(DESTDIR)/etc/ikiwiki
-+ -install -d $(DESTDIR)$(CONFIGDIR)
-+ -install -m 0644 wikilist $(DESTDIR)$(CONFIGDIR)
-+ -install -m 0644 auto.setup $(DESTDIR)$(CONFIGDIR)
-+ -install -m 0644 auto-blog.setup $(DESTDIR)$(CONFIGDIR)
++ -install -d $(DESTDIR)/$(CONFIGDIR)
++ -install -m 0644 wikilist $(DESTDIR)/$(CONFIGDIR)
++ -install -m 0644 auto.setup $(DESTDIR)/$(CONFIGDIR)
++ -install -m 0644 auto-blog.setup $(DESTDIR)/$(CONFIGDIR)
}
}