From owner-svn-ports-head@freebsd.org Tue Nov 29 06:59:38 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 68A42C5B8EC; Tue, 29 Nov 2016 06:59:38 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2A727108C; Tue, 29 Nov 2016 06:59:38 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAT6xbb6006833; Tue, 29 Nov 2016 06:59:37 GMT (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAT6xbux006830; Tue, 29 Nov 2016 06:59:37 GMT (envelope-from kuriyama@FreeBSD.org) Message-Id: <201611290659.uAT6xbux006830@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kuriyama set sender to kuriyama@FreeBSD.org using -f From: Jun Kuriyama Date: Tue, 29 Nov 2016 06:59:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427359 - in head/deskutils/howm: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Nov 2016 06:59:38 -0000 Author: kuriyama Date: Tue Nov 29 06:59:36 2016 New Revision: 427359 URL: https://svnweb.freebsd.org/changeset/ports/427359 Log: - Upgrade to 1.4.3 and unbreak. Modified: head/deskutils/howm/Makefile head/deskutils/howm/distinfo head/deskutils/howm/files/patch-howm-vars.el Modified: head/deskutils/howm/Makefile ============================================================================== --- head/deskutils/howm/Makefile Tue Nov 29 06:59:09 2016 (r427358) +++ head/deskutils/howm/Makefile Tue Nov 29 06:59:36 2016 (r427359) @@ -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 \ Modified: head/deskutils/howm/distinfo ============================================================================== --- head/deskutils/howm/distinfo Tue Nov 29 06:59:09 2016 (r427358) +++ head/deskutils/howm/distinfo Tue Nov 29 06:59:36 2016 (r427359) @@ -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 Modified: head/deskutils/howm/files/patch-howm-vars.el ============================================================================== --- head/deskutils/howm/files/patch-howm-vars.el Tue Nov 29 06:59:09 2016 (r427358) +++ head/deskutils/howm/files/patch-howm-vars.el Tue Nov 29 06:59:36 2016 (r427359) @@ -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"))