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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 47CAB158094 for ; Tue, 16 Aug 2022 18:18:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7416BE0948; Tue, 16 Aug 2022 18:18:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 55881E0948 for ; Tue, 16 Aug 2022 18:18:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 69E1534127A for ; Tue, 16 Aug 2022 18:18:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C772521 for ; Tue, 16 Aug 2022 18:18:56 +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: <1660673931.bc6bb42842fd357b0a06042f073e5f242cdbd9ef.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pkgcheck/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/pkgcheck/pkgcheck-0.10.13.ebuild X-VCS-Directories: dev-util/pkgcheck/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: bc6bb42842fd357b0a06042f073e5f242cdbd9ef X-VCS-Branch: master Date: Tue, 16 Aug 2022 18:18:56 +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: 518327e8-7717-4d9c-b116-d9eb8d1f0cf9 X-Archives-Hash: c82c0b2f520f8c3c9133d2ecc697fa6e commit: bc6bb42842fd357b0a06042f073e5f242cdbd9ef Author: Ulrich Müller gentoo org> AuthorDate: Tue Aug 16 18:18:18 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Aug 16 18:18:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc6bb428 dev-util/pkgcheck: Drop Emacs support in 0.10.13 Fails to build because contrib/emacs is missing from the tarball. Signed-off-by: Ulrich Müller gentoo.org> dev-util/pkgcheck/pkgcheck-0.10.13.ebuild | 31 +------------------------------ 1 file changed, 1 insertion(+), 30 deletions(-) diff --git a/dev-util/pkgcheck/pkgcheck-0.10.13.ebuild b/dev-util/pkgcheck/pkgcheck-0.10.13.ebuild index a8ce557ca15d..e5703d13feb6 100644 --- a/dev-util/pkgcheck/pkgcheck-0.10.13.ebuild +++ b/dev-util/pkgcheck/pkgcheck-0.10.13.ebuild @@ -5,7 +5,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{8..11} ) DISTUTILS_IN_SOURCE_BUILD=1 -inherit elisp-common distutils-r1 optfeature +inherit distutils-r1 optfeature if [[ ${PV} == *9999 ]] ; then EGIT_REPO_URI="https://github.com/pkgcore/pkgcheck.git" @@ -20,7 +20,6 @@ HOMEPAGE="https://github.com/pkgcore/pkgcheck" LICENSE="BSD MIT" SLOT="0" -IUSE="emacs" if [[ ${PV} == *9999 ]]; then RDEPEND=" @@ -39,11 +38,6 @@ RDEPEND+=" dev-python/lxml[${PYTHON_USEDEP}] dev-python/pathspec[${PYTHON_USEDEP}] >=dev-python/tree-sitter-0.19.0[${PYTHON_USEDEP}] - emacs? ( - >=app-editors/emacs-24.1:* - app-emacs/ebuild-mode - app-emacs/flycheck - ) " BDEPEND=" ${RDEPEND} @@ -54,22 +48,10 @@ BDEPEND=" ) " -SITEFILE="50${PN}-gentoo.el" - distutils_enable_tests setup.py export USE_SYSTEM_TREE_SITTER_BASH=1 -src_compile() { - distutils-r1_src_compile - - if use emacs ; then - pushd "${S}"/contrib/emacs >/dev/null || die - elisp-compile *.el - popd >/dev/null || die - fi -} - src_test() { local -x PYTHONDONTWRITEBYTECODE= distutils-r1_src_test @@ -79,20 +61,9 @@ python_install_all() { local DOCS=( NEWS.rst ) [[ ${PV} == *9999 ]] || doman man/* distutils-r1_python_install_all - - if use emacs ; then - elisp-install ${PN} "${S}"/contrib/emacs/*.el{,c} - elisp-site-file-install "${FILESDIR}/${SITEFILE}" - fi } pkg_postinst() { - use emacs && elisp-site-regen - optfeature "Network check support" dev-python/requests optfeature "Perl module version check support" dev-perl/Gentoo-PerlMod-Version } - -pkg_postrm() { - use emacs && elisp-site-regen -}