From owner-svn-ports-all@freebsd.org Fri Nov 29 18:18:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 333D41B8108; Fri, 29 Nov 2019 18:18:48 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47PjSS0d9Qz4B22; Fri, 29 Nov 2019 18:18:48 +0000 (UTC) (envelope-from pi@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E8AED1A07B; Fri, 29 Nov 2019 18:18:47 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xATIIlh0037413; Fri, 29 Nov 2019 18:18:47 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xATIIlR9037411; Fri, 29 Nov 2019 18:18:47 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201911291818.xATIIlR9037411@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Fri, 29 Nov 2019 18:18:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r518669 - in head/devel/treepy.el: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/devel/treepy.el: . files X-SVN-Commit-Revision: 518669 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Nov 2019 18:18:48 -0000 Author: pi Date: Fri Nov 29 18:18:47 2019 New Revision: 518669 URL: https://svnweb.freebsd.org/changeset/ports/518669 Log: devel/treepy.el: Add patch to fix incompatibility with recent snapshot of Emacs PR: 241859 Submitted by: Yasuhiro KIMURA (maintainer) Added: head/devel/treepy.el/files/ head/devel/treepy.el/files/patch-97d955be198ead6380706704cbe0005fffaccf64 (contents, props changed) Modified: head/devel/treepy.el/Makefile Modified: head/devel/treepy.el/Makefile ============================================================================== --- head/devel/treepy.el/Makefile Fri Nov 29 17:38:52 2019 (r518668) +++ head/devel/treepy.el/Makefile Fri Nov 29 18:18:47 2019 (r518669) @@ -2,7 +2,7 @@ PORTNAME= treepy.el DISTVERSION= 0.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel elisp PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} @@ -11,10 +11,6 @@ COMMENT= Generic tree traversing tools for Emacs Lisp LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE - -.if ${FLAVOR:U} == devel_full || ${FLAVOR:U} == devel_nox -BROKEN= fails to build -.endif USES= emacs USE_GITHUB= yes Added: head/devel/treepy.el/files/patch-97d955be198ead6380706704cbe0005fffaccf64 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/treepy.el/files/patch-97d955be198ead6380706704cbe0005fffaccf64 Fri Nov 29 18:18:47 2019 (r518669) @@ -0,0 +1,37 @@ +From 97d955be198ead6380706704cbe0005fffaccf64 Mon Sep 17 00:00:00 2001 +From: Yasuhiro KIMURA +Date: Tue, 5 Nov 2019 16:13:24 +0900 +Subject: [PATCH] Fix incompatibility with recent master branch of Emacs + +http://git.savannah.gnu.org/cgit/emacs.git/commit/?id=0e4dd67aae8b10032317a29a6bd99d2d4a64c897 + +After above commit treepy.el isn't compatible with master branch of +Emacs. + +For example byte-compiling it results in following error messages. + +In treepy--with-loc: +treepy.el:157:35:Warning: `'node' is a malformed function +treepy.el:157:35:Warning: `'context' is a malformed function +treepy.el:160:51:Warning: `t' called as a function +treepy.el:231:1:Error: Invalid function: 'node +*** Error code 1 +--- + treepy.el | 1 + + 1 file changed, 1 insertion(+) + +diff --git treepy.el treepy.el +index c60ee9f..08ad93c 100644 +--- treepy.el ++++ treepy.el +@@ -41,6 +41,7 @@ + ;;; Code: + + (require 'map) ++(require 'cl-lib) + + ;;; Walk (recursive tree traversal) + +-- +2.24.0 +