From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 947A2138334 for ; Thu, 17 Oct 2019 13:49:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D31CBE077A; Thu, 17 Oct 2019 13:49:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B6E42E077A for ; Thu, 17 Oct 2019 13:49:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8235C34BF37 for ; Thu, 17 Oct 2019 13:49:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8477C744 for ; Thu, 17 Oct 2019 13:49:44 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1571320151.9a2a5852bd8272c58b95e839e4d5c8d10c2a0c46.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/gnuserv/, app-emacs/gnuserv/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/gnuserv/files/gnuserv-3.12.8-backquotes.patch app-emacs/gnuserv/gnuserv-3.12.8-r4.ebuild app-emacs/gnuserv/gnuserv-3.12.8-r5.ebuild X-VCS-Directories: app-emacs/gnuserv/ app-emacs/gnuserv/files/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 9a2a5852bd8272c58b95e839e4d5c8d10c2a0c46 X-VCS-Branch: master Date: Thu, 17 Oct 2019 13:49:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4adacfc3-1969-4730-927a-7521649f6a69 X-Archives-Hash: 938d29fbfbbc0050d1bf17df61b65708 commit: 9a2a5852bd8272c58b95e839e4d5c8d10c2a0c46 Author: Ulrich Müller gentoo org> AuthorDate: Thu Oct 17 13:39:42 2019 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Oct 17 13:49:11 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a2a5852 app-emacs/gnuserv: Fix backquotes patch. This is mostly cosmetic, because the affected code in gnuserv-compat.el won't be called in current Emacs versions. Therefore committing this straight to stable. Bump EAPI to 7. Package-Manager: Portage-2.3.77, Repoman-2.3.17 Signed-off-by: Ulrich Müller gentoo.org> app-emacs/gnuserv/files/gnuserv-3.12.8-backquotes.patch | 4 ++-- .../gnuserv/{gnuserv-3.12.8-r4.ebuild => gnuserv-3.12.8-r5.ebuild} | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-emacs/gnuserv/files/gnuserv-3.12.8-backquotes.patch b/app-emacs/gnuserv/files/gnuserv-3.12.8-backquotes.patch index a16124821dd..fa31ac2e401 100644 --- a/app-emacs/gnuserv/files/gnuserv-3.12.8-backquotes.patch +++ b/app-emacs/gnuserv/files/gnuserv-3.12.8-backquotes.patch @@ -7,10 +7,10 @@ Use new-style backquotes, to make it compile with Emacs 27. nil) (defmacro defcustom (var value doc &rest args) - (` (defvar (, var) (, value) (, doc)))) -+ `(defvar (, var) (, value) (, doc))) ++ `(defvar ,var ,value ,doc)) (defmacro defface (var value doc &rest args) - (` (make-face (, var)))) -+ `(make-face (, var))) ++ `(make-face ,var)) (defmacro define-widget (&rest args) nil))) diff --git a/app-emacs/gnuserv/gnuserv-3.12.8-r4.ebuild b/app-emacs/gnuserv/gnuserv-3.12.8-r5.ebuild similarity index 97% rename from app-emacs/gnuserv/gnuserv-3.12.8-r4.ebuild rename to app-emacs/gnuserv/gnuserv-3.12.8-r5.ebuild index b7852e0d263..94972c40cfd 100644 --- a/app-emacs/gnuserv/gnuserv-3.12.8-r4.ebuild +++ b/app-emacs/gnuserv/gnuserv-3.12.8-r5.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit elisp multilib desktop xdg-utils