Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F310484E5D for ; Sun, 27 Aug 2023 10:36:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 7dkn4Xh44Z21 for ; Sun, 27 Aug 2023 10:36:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 410CC84CCF for ; Sun, 27 Aug 2023 10:36:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2E122FBDB; Sun, 27 Aug 2023 10:36:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169313260064240" MIME-Version: 1.0 Date: Sun, 27 Aug 2023 10:36:40 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/cad/dinotrace-mode To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20230827103640.2E122FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169313260064240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Sun Aug 27 10:36:40 UTC 2023 Modified Files: pkgsrc/cad/dinotrace-mode: Makefile Log Message: dinotrace-mode: restrict to emacs26 To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/cad/dinotrace-mode/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169313260064240 Content-Disposition: inline Content-Length: 1170 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/cad/dinotrace-mode/Makefile diff -u pkgsrc/cad/dinotrace-mode/Makefile:1.15 pkgsrc/cad/dinotrace-mode/Makefile:1.16 --- pkgsrc/cad/dinotrace-mode/Makefile:1.15 Sat May 14 22:25:32 2022 +++ pkgsrc/cad/dinotrace-mode/Makefile Sun Aug 27 10:36:40 2023 @@ -1,22 +1,24 @@ -# $NetBSD: Makefile,v 1.15 2022/05/14 22:25:32 dholland Exp $ +# $NetBSD: Makefile,v 1.16 2023/08/27 10:36:40 tnn Exp $ # VERSION= 9.4f DISTNAME= dinotrace-${VERSION} PKGNAME= ${EMACS_PKGNAME_PREFIX}dinotrace-mode-${VERSION} -PKGREVISION= 1 CATEGORIES= cad editors MASTER_SITES= ${MASTER_SITE_GITHUB:=veripool/} GITHUB_PROJECT= dinotrace GITHUB_TAG= v${VERSION} MAINTAINER= dmcmahill@NetBSD.org -HOMEPAGE= http://www.veripool.org/dinotrace/ +HOMEPAGE= https://github.com/veripool/dinotrace/blob/master/README.rst COMMENT= Emacs major mode for dinotrace LICENSE= gnu-gpl-v3 DEPENDS+= ${EMACS_PKGNAME_PREFIX}verilog-mode>=3.13:../../cad/verilog-mode +# failed to build with emacs28; needs athena widgets which are not enabled by default +EMACS_VERSIONS_ACCEPTED= emacs26 + .include "../../mk/bsd.prefs.mk" .include "../../editors/emacs/modules.mk" --_----------=_169313260064240--