aboutsummaryrefslogtreecommitdiff
path: root/deskutils/howm
diff options
context:
space:
mode:
authorJun Kuriyama <kuriyama@FreeBSD.org>2016-11-29 06:59:36 +0000
committerJun Kuriyama <kuriyama@FreeBSD.org>2016-11-29 06:59:36 +0000
commit9a3d6c3c2a98d997dfec29eef5439923694ed5e1 (patch)
tree0fc6ab6512acdc82dcaf54c747602b0ebb0de366 /deskutils/howm
parent8927c638ca77b7ee49e1a5beaafc6b2bf3888b95 (diff)
downloadports-9a3d6c3c2a98d997dfec29eef5439923694ed5e1.tar.gz
ports-9a3d6c3c2a98d997dfec29eef5439923694ed5e1.zip
- Upgrade to 1.4.3 and unbreak.
Notes
Notes: svn path=/head/; revision=427359
Diffstat (limited to 'deskutils/howm')
-rw-r--r--deskutils/howm/Makefile4
-rw-r--r--deskutils/howm/distinfo5
-rw-r--r--deskutils/howm/files/patch-howm-vars.el18
3 files changed, 13 insertions, 14 deletions
diff --git a/deskutils/howm/Makefile b/deskutils/howm/Makefile
index ce855c753190..1573b0507f96 100644
--- a/deskutils/howm/Makefile
+++ b/deskutils/howm/Makefile
@@ -1,15 +1,13 @@
# $FreeBSD$
PORTNAME= howm
-PORTVERSION= 1.4.2
+PORTVERSION= 1.4.3
CATEGORIES= deskutils
MASTER_SITES= http://howm.sourceforge.jp/a/
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Write fragmentarily and read collectively
-BROKEN= fails to build
-
GNU_CONFIGURE= yes
USE_EMACS= yes
ELISP= action-lock.el bcomp.el cheat-font-lock.el \
diff --git a/deskutils/howm/distinfo b/deskutils/howm/distinfo
index f14b578105e6..eaaa9ca7739c 100644
--- a/deskutils/howm/distinfo
+++ b/deskutils/howm/distinfo
@@ -1,2 +1,3 @@
-SHA256 (howm-1.4.2.tar.gz) = 6d4683ff55573e4edefad8bc03ee2714c9f443151936903f0b5ad99d73e73e7f
-SIZE (howm-1.4.2.tar.gz) = 544559
+TIMESTAMP = 1480165897
+SHA256 (howm-1.4.3.tar.gz) = fb7336e0a52df3d5fe72e1bbf4ffb57f1139757f6af2964ee62cc94b4729dcab
+SIZE (howm-1.4.3.tar.gz) = 552747
diff --git a/deskutils/howm/files/patch-howm-vars.el b/deskutils/howm/files/patch-howm-vars.el
index 57588532f0fb..dc235cd564af 100644
--- a/deskutils/howm/files/patch-howm-vars.el
+++ b/deskutils/howm/files/patch-howm-vars.el
@@ -1,11 +1,11 @@
---- howm-vars.el.orig 2011-08-23 20:48:27.000000000 +0900
-+++ howm-vars.el 2012-03-11 22:18:42.730947048 +0900
-@@ -679,7 +679,7 @@
- "*Command name for fgrep.
+--- howm-vars.el.orig 2015-12-31 22:41:45.000000000 +0900
++++ howm-vars.el 2016-11-26 22:46:32.596292000 +0900
+@@ -759,7 +759,7 @@
This variable is obsolete and may be removed in future.")
(defvar howm-view-grep-default-option
-- (labels ((ed (d) (concat "--exclude-dir=" d)))
-+ (labels ((ed (d) (concat "--exclude=" d)))
- (let* ((has-ed (condition-case nil
- (eq 0 (call-process howm-view-grep-command nil nil nil
- (ed "/") "--version"))
+ ;; "labels" causes a trouble in git-head emacs (d5e3922) [2015-01-31]
+- (let* ((ed (lambda (d) (concat "--exclude-dir=" d)))
++ (let* ((ed (lambda (d) (concat "--exclude=" d)))
+ (has-ed (condition-case nil
+ (eq 0 (call-process howm-view-grep-command nil nil nil
+ (apply ed "/") "--version"))