summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormef <mef@pkgsrc.org>2014-12-04 04:51:04 +0000
committermef <mef@pkgsrc.org>2014-12-04 04:51:04 +0000
commit18d78fd4edde579e268b38c07de4dc8cc0682c5a (patch)
tree1da11bb382bb7992d8e4b76f76b8845004a3ed11
parent896a74f8111e51c279fe9ad2f0fc7ff10078eb31 (diff)
downloadpkgsrc-18d78fd4edde579e268b38c07de4dc8cc0682c5a.tar.gz
Update 1.4.5 to 1.4.6
http://lists.roaringpenguin.com/pipermail/remind-fans/2013/002903.html --------------------- 2013-02-02 Release 1.4.6: * Fixed a failure to quote filenames in the editor commands provided by the default wyrdrc. * Fixed a crash when the terminal is resized while wyrd is executing an external editor or browser. (In some environments, this would happen every time a reminder file is edited.) * Fixed 'configure' errors when compiling with OCaml 4. * Added Oasis metadata. * Added automatic refresh of the display when reminder files are modified. * Added a backtrace printout for unhandled exceptions. * Fixed a parallel-make race conditoin resulting from integration of upstream ocaml-curses. * Fixed a crash when the terminal is resized. * Fixed some crashes which could be triggered by pressing arrow keys or entering non-printable characters from the "quick add" entry field.
-rw-r--r--time/wyrd/Makefile5
-rw-r--r--time/wyrd/distinfo9
-rw-r--r--time/wyrd/patches/patch-configure15
3 files changed, 6 insertions, 23 deletions
diff --git a/time/wyrd/Makefile b/time/wyrd/Makefile
index e112c5a59b7..49c172568a0 100644
--- a/time/wyrd/Makefile
+++ b/time/wyrd/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.11 2014/10/20 11:12:49 jaapb Exp $
+# $NetBSD: Makefile,v 1.12 2014/12/04 04:51:04 mef Exp $
#
-DISTNAME= wyrd-1.4.5
-PKGREVISION= 2
+DISTNAME= wyrd-1.4.6
CATEGORIES= time
MASTER_SITES= http://pessimization.com/software/wyrd/
diff --git a/time/wyrd/distinfo b/time/wyrd/distinfo
index 1dedf0ea83c..46b1ddce521 100644
--- a/time/wyrd/distinfo
+++ b/time/wyrd/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.3 2012/12/15 16:50:05 jaapb Exp $
+$NetBSD: distinfo,v 1.4 2014/12/04 04:51:04 mef Exp $
-SHA1 (wyrd-1.4.5.tar.gz) = 97b6c03ca532e5c209c112f5fb050cafbcecce6d
-RMD160 (wyrd-1.4.5.tar.gz) = b7962d9da6b86ec22d8fbd3e4e0632a35cad6850
-Size (wyrd-1.4.5.tar.gz) = 398294 bytes
+SHA1 (wyrd-1.4.6.tar.gz) = aaeca29b844825f45aadcf5207f4d1c875e4dc82
+RMD160 (wyrd-1.4.6.tar.gz) = 47319812942195d4b56f861b7cbb527e94e7495f
+Size (wyrd-1.4.6.tar.gz) = 425829 bytes
SHA1 (patch-Makefile.in) = 0dbd5042fa40810a76cb89b677ce3a71ececde9e
-SHA1 (patch-configure) = 84b866d7f77787a2bea9def9c1b5169041cc034b
diff --git a/time/wyrd/patches/patch-configure b/time/wyrd/patches/patch-configure
deleted file mode 100644
index fa387bf0a5c..00000000000
--- a/time/wyrd/patches/patch-configure
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-configure,v 1.1 2012/12/15 16:50:05 jaapb Exp $
-
-Correct faulty ocaml version detection
-(patch from https://bugs.launchpad.net/wyrd/+bug/1208142)
---- configure.orig 2010-10-23 18:50:24.000000000 +0000
-+++ configure
-@@ -1790,7 +1790,7 @@ OCAMLMAJORVERSION=`echo $OCAMLVERSION |
- OCAMLMINORVERSION=`echo $OCAMLVERSION | cut -d '.' -f 2`
- if test $OCAMLMAJORVERSION -lt 3 ; then
- as_fn_error "Wyrd requires OCaml version 3.08 or greater." "$LINENO" 5
--else
-+elif test $OCAMLMAJORVERSION = 3 ; then
- if test $OCAMLMINORVERSION -lt 8 ; then
- as_fn_error "Wyrd requires OCaml version 3.08 or greater." "$LINENO" 5
- fi