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 69FD41586A0 for ; Sat, 25 Mar 2023 03:33:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7E330E08CE; Sat, 25 Mar 2023 03:32:59 +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 658AFE08CE for ; Sat, 25 Mar 2023 03:32:59 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 64A65341060 for ; Sat, 25 Mar 2023 03:32:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD70893A for ; Sat, 25 Mar 2023 03:32:56 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1679715158.7ab3a69ccc2bef6752e6b9c98c5ab58ac996295c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cython/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/cython/cython-3.0.0_beta1-r2.ebuild X-VCS-Directories: dev-python/cython/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7ab3a69ccc2bef6752e6b9c98c5ab58ac996295c X-VCS-Branch: master Date: Sat, 25 Mar 2023 03:32: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: 320aca35-4467-483d-b825-d61b08fb562d X-Archives-Hash: 65a1cf4245e85a82c825a554be6e5e52 commit: 7ab3a69ccc2bef6752e6b9c98c5ab58ac996295c Author: Sam James gentoo org> AuthorDate: Sat Mar 25 03:32:09 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 25 03:32:38 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ab3a69c dev-python/cython: drop USE=emacs from 3.0.0_beta1 It's now in a separate repo: https://github.com/cython/emacs-cython-mode, not yet packaged. Signed-off-by: Sam James gentoo.org> dev-python/cython/cython-3.0.0_beta1-r2.ebuild | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/dev-python/cython/cython-3.0.0_beta1-r2.ebuild b/dev-python/cython/cython-3.0.0_beta1-r2.ebuild index 1eb336a03196..3765013cc291 100644 --- a/dev-python/cython/cython-3.0.0_beta1-r2.ebuild +++ b/dev-python/cython/cython-3.0.0_beta1-r2.ebuild @@ -25,12 +25,9 @@ S=${WORKDIR}/${MY_P} LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" -IUSE="emacs test" +IUSE="test" RESTRICT="!test? ( test )" -RDEPEND=" - emacs? ( >=app-editors/emacs-23.1:* ) -" BDEPEND=" ${RDEPEND} test? ( @@ -46,8 +43,6 @@ PATCHES=( "${FILESDIR}/${PN}-0.29.23-pythran-parallel-install.patch" ) -SITEFILE=50cython-gentoo.el - distutils_enable_sphinx docs \ dev-python/jinja \ dev-python/sphinx-issues \ @@ -60,10 +55,6 @@ python_compile() { distutils-r1_python_compile } -python_compile_all() { - use emacs && elisp-compile Tools/cython-mode.el -} - python_test() { if has "${EPYTHON}" pypy3 python3.11; then einfo "Skipping tests on ${EPYTHON} (xfail)" @@ -80,17 +71,4 @@ python_test() { python_install_all() { local DOCS=( CHANGES.rst README.rst ToDo.txt USAGE.txt ) distutils-r1_python_install_all - - if use emacs; then - elisp-install ${PN} Tools/cython-mode.* - elisp-site-file-install "${FILESDIR}/${SITEFILE}" - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen }