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 AD3F4138337 for ; Sat, 21 Dec 2019 11:41:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCEC6E0950; Sat, 21 Dec 2019 11:41:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A5B3AE0950 for ; Sat, 21 Dec 2019 11:41:03 +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 6F3CC34D7D0 for ; Sat, 21 Dec 2019 11:41:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 636FA97A for ; Sat, 21 Dec 2019 11:41:00 +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: <1576927609.46f58b50d48de2d1d751ae1a3e6111cc0d8e0887.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/notmuch/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/notmuch/notmuch-0.28.4.ebuild net-mail/notmuch/notmuch-0.29.2.ebuild net-mail/notmuch/notmuch-0.29.3.ebuild X-VCS-Directories: net-mail/notmuch/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 46f58b50d48de2d1d751ae1a3e6111cc0d8e0887 X-VCS-Branch: master Date: Sat, 21 Dec 2019 11:41:00 +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: 3a3e6a86-867b-424c-a310-974af40c3ae3 X-Archives-Hash: 970fb06c34effbe36396be2322885572 commit: 46f58b50d48de2d1d751ae1a3e6111cc0d8e0887 Author: Ulrich Müller gentoo org> AuthorDate: Sat Dec 21 11:22:41 2019 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Dec 21 11:26:49 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46f58b50 net-mail/notmuch: Update for elisp-common.eclass changes. Function elisp-need-emacs is deprecated, replace it by assigning NEED_EMACS and calling elisp-check-emacs-version in pkg_setup. Require emacs-24.1 as minimum version, because it is the first version with libxml2 support. Package-Manager: Portage-2.3.82, Repoman-2.3.20 Signed-off-by: Ulrich Müller gentoo.org> net-mail/notmuch/notmuch-0.28.4.ebuild | 9 ++++----- net-mail/notmuch/notmuch-0.29.2.ebuild | 9 ++++----- net-mail/notmuch/notmuch-0.29.3.ebuild | 9 ++++----- 3 files changed, 12 insertions(+), 15 deletions(-) diff --git a/net-mail/notmuch/notmuch-0.28.4.ebuild b/net-mail/notmuch/notmuch-0.28.4.ebuild index 2856cf698a2..c43123227e0 100644 --- a/net-mail/notmuch/notmuch-0.28.4.ebuild +++ b/net-mail/notmuch/notmuch-0.28.4.ebuild @@ -38,7 +38,7 @@ CDEPEND=" >=sys-libs/zlib-1.2.5.2 sys-libs/talloc crypt? ( dev-libs/gmime:3.0[crypt] ) - emacs? ( >=app-editors/emacs-23.1:* ) + emacs? ( >=app-editors/emacs-24.1:* ) python? ( ${PYTHON_DEPS} ) " DEPEND="${CDEPEND} @@ -49,7 +49,7 @@ DEPEND="${CDEPEND} ) test? ( app-misc/dtach - || ( >=app-editors/emacs-23[libxml2] >=app-editors/emacs-vcs-23[libxml2] ) + >=app-editors/emacs-24.1:*[libxml2] sys-devel/gdb crypt? ( app-crypt/gnupg dev-libs/openssl ) ) @@ -72,6 +72,7 @@ RDEPEND="${CDEPEND} " DOCS=( AUTHORS NEWS README ) +NEED_EMACS="24.1" SITEFILE="50${PN}-gentoo.el" MY_LD_LIBRARY_PATH="${WORKDIR}/${P}/lib" PATCHES=( @@ -104,9 +105,7 @@ pkg_pretend() { } pkg_setup() { - if use emacs; then - elisp-need-emacs 23 || die "Emacs version too low" - fi + use emacs && elisp-check-emacs-version } src_unpack() { diff --git a/net-mail/notmuch/notmuch-0.29.2.ebuild b/net-mail/notmuch/notmuch-0.29.2.ebuild index f848c35df5e..4ee535926dd 100644 --- a/net-mail/notmuch/notmuch-0.29.2.ebuild +++ b/net-mail/notmuch/notmuch-0.29.2.ebuild @@ -38,7 +38,7 @@ CDEPEND=" >=sys-libs/zlib-1.2.5.2 sys-libs/talloc crypt? ( dev-libs/gmime:3.0[crypt] ) - emacs? ( >=app-editors/emacs-23.1:* ) + emacs? ( >=app-editors/emacs-24.1:* ) python? ( ${PYTHON_DEPS} ) " DEPEND="${CDEPEND} @@ -49,7 +49,7 @@ DEPEND="${CDEPEND} ) test? ( app-misc/dtach - || ( >=app-editors/emacs-23[libxml2] >=app-editors/emacs-vcs-23[libxml2] ) + >=app-editors/emacs-24.1:*[libxml2] sys-devel/gdb crypt? ( app-crypt/gnupg dev-libs/openssl ) ) @@ -72,6 +72,7 @@ RDEPEND="${CDEPEND} " DOCS=( AUTHORS NEWS README ) +NEED_EMACS="24.1" SITEFILE="50${PN}-gentoo.el" MY_LD_LIBRARY_PATH="${WORKDIR}/${P}/lib" PATCHES=( @@ -103,9 +104,7 @@ pkg_pretend() { } pkg_setup() { - if use emacs; then - elisp-need-emacs 23 || die "Emacs version too low" - fi + use emacs && elisp-check-emacs-version } src_unpack() { diff --git a/net-mail/notmuch/notmuch-0.29.3.ebuild b/net-mail/notmuch/notmuch-0.29.3.ebuild index f848c35df5e..4ee535926dd 100644 --- a/net-mail/notmuch/notmuch-0.29.3.ebuild +++ b/net-mail/notmuch/notmuch-0.29.3.ebuild @@ -38,7 +38,7 @@ CDEPEND=" >=sys-libs/zlib-1.2.5.2 sys-libs/talloc crypt? ( dev-libs/gmime:3.0[crypt] ) - emacs? ( >=app-editors/emacs-23.1:* ) + emacs? ( >=app-editors/emacs-24.1:* ) python? ( ${PYTHON_DEPS} ) " DEPEND="${CDEPEND} @@ -49,7 +49,7 @@ DEPEND="${CDEPEND} ) test? ( app-misc/dtach - || ( >=app-editors/emacs-23[libxml2] >=app-editors/emacs-vcs-23[libxml2] ) + >=app-editors/emacs-24.1:*[libxml2] sys-devel/gdb crypt? ( app-crypt/gnupg dev-libs/openssl ) ) @@ -72,6 +72,7 @@ RDEPEND="${CDEPEND} " DOCS=( AUTHORS NEWS README ) +NEED_EMACS="24.1" SITEFILE="50${PN}-gentoo.el" MY_LD_LIBRARY_PATH="${WORKDIR}/${P}/lib" PATCHES=( @@ -103,9 +104,7 @@ pkg_pretend() { } pkg_setup() { - if use emacs; then - elisp-need-emacs 23 || die "Emacs version too low" - fi + use emacs && elisp-check-emacs-version } src_unpack() {