pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/www/ikiwiki Avoid -regex, not available in OpenBSD fin...
details: https://anonhg.NetBSD.org/pkgsrc/rev/25063b5e7363
branches: trunk
changeset: 338867:25063b5e7363
user: schmonz <schmonz%pkgsrc.org@localhost>
date: Sat Aug 31 20:19:23 2019 +0000
description:
Avoid -regex, not available in OpenBSD find(1).
diffstat:
www/ikiwiki/distinfo | 3 ++-
www/ikiwiki/patches/patch-Makefile.PL | 20 ++++++++++++++++++++
2 files changed, 22 insertions(+), 1 deletions(-)
diffs (38 lines):
diff -r e14f44df795b -r 25063b5e7363 www/ikiwiki/distinfo
--- a/www/ikiwiki/distinfo Sat Aug 31 19:56:48 2019 +0000
+++ b/www/ikiwiki/distinfo Sat Aug 31 20:19:23 2019 +0000
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.133 2019/05/27 03:53:31 schmonz Exp $
+$NetBSD: distinfo,v 1.134 2019/08/31 20:19:23 schmonz Exp $
SHA1 (ikiwiki_3.20190228.orig.tar.xz) = 46f5b0a1498c1e098fe248eae1f2e3f56b25dc2f
RMD160 (ikiwiki_3.20190228.orig.tar.xz) = f47968a69528aea864ad412c8508a8c5063edb9d
SHA512 (ikiwiki_3.20190228.orig.tar.xz) = 125147d83dae6166b45541ed9176398ba4bd22ef3389d3efb3f442e558e326e0b004583d29aa32ed4bfca489c9d55b4232f074aab5fa649e51d9edd103685172
Size (ikiwiki_3.20190228.orig.tar.xz) = 2672244 bytes
SHA1 (patch-IkiWiki_Plugin_highlight.pm) = 14a2d8e1d3eb671863cdef4a936ebbb7b09ce3b9
+SHA1 (patch-Makefile.PL) = c711a5f4d6f10ba0442baca1d2950e912665d467
SHA1 (patch-ikiwiki-mass-rebuild) = b8d5785d77736508de9cfc0f059cc36e0e607bce
diff -r e14f44df795b -r 25063b5e7363 www/ikiwiki/patches/patch-Makefile.PL
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/www/ikiwiki/patches/patch-Makefile.PL Sat Aug 31 20:19:23 2019 +0000
@@ -0,0 +1,20 @@
+$NetBSD: patch-Makefile.PL,v 1.5 2019/08/31 20:19:23 schmonz Exp $
+
+Avoid -regex, not available in OpenBSD find(1).
+
+--- Makefile.PL.orig 2019-02-26 23:01:54.000000000 +0000
++++ Makefile.PL
+@@ -140,11 +140,11 @@ underlay_install:
+ extra_install: underlay_install
+ # Install example sites.
+ set -e; \
+- for dir in `$(FIND) doc/examples -type d ! -regex '.*discussion.*' | $(SED) -e 's|^doc/examples/||'`; do \
++ for dir in `$(FIND) doc/examples -type d ! -name discussion | $(SED) -e 's|^doc/examples/||'`; do \
+ install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$dir; \
+ done
+ set -e; \
+- for file in `$(FIND) doc/examples -type f ! -regex '.*discussion.*' | $(SED) -e 's|^doc/examples/||'`; do \
++ for file in `$(FIND) doc/examples -type f ! -name discussion.mdwn | $(SED) -e 's|^doc/examples/||'`; do \
+ if ! cp -pRL doc/examples/$$file $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$file 2>/dev/null; then \
+ install -m 644 doc/examples/$$file $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$file; \
+ fi; \
Home |
Main Index |
Thread Index |
Old Index