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 0DB7C15800D for ; Sat, 8 Jul 2023 21:22:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 299DFE093B; Sat, 8 Jul 2023 21:22:27 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0901FE091F for ; Sat, 8 Jul 2023 21:22:27 +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 04BB7340DFD for ; Sat, 8 Jul 2023 21:22:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57509AD0 for ; Sat, 8 Jul 2023 21:22:24 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1688851336.0f25bc166471dfcbd63bd766139059769b7049a3.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/pymacs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/pymacs/pymacs-0.26-r4.ebuild X-VCS-Directories: app-emacs/pymacs/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 0f25bc166471dfcbd63bd766139059769b7049a3 X-VCS-Branch: master Date: Sat, 8 Jul 2023 21:22:24 +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: 56e25980-0a47-46e1-aa66-dc01d45730e2 X-Archives-Hash: 89270edbc02da323157801071f237a68 commit: 0f25bc166471dfcbd63bd766139059769b7049a3 Author: Maciej Barć gentoo org> AuthorDate: Sat Jul 8 21:15:06 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sat Jul 8 21:22:16 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f25bc16 app-emacs/pymacs: port to DISTUTILS_USE_PEP517 Closes: https://bugs.gentoo.org/909871 Signed-off-by: Maciej Barć gentoo.org> app-emacs/pymacs/pymacs-0.26-r4.ebuild | 62 ++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/app-emacs/pymacs/pymacs-0.26-r4.ebuild b/app-emacs/pymacs/pymacs-0.26-r4.ebuild new file mode 100644 index 000000000000..3f6d1c1d330d --- /dev/null +++ b/app-emacs/pymacs/pymacs-0.26-r4.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..11} ) + +inherit elisp distutils-r1 + +DESCRIPTION="A tool that allows both-side communication between Python and Emacs Lisp" +HOMEPAGE="https://www.emacswiki.org/emacs/PyMacs + https://github.com/dgentry/Pymacs/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/dgentry/${PN^}.git" +else + SRC_URI="https://github.com/dgentry/${PN^}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + S="${WORKDIR}"/${P^} + KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +fi + +LICENSE="GPL-2+" +SLOT="0" +IUSE="doc" + +BDEPEND=" + doc? ( + >=dev-python/docutils-0.7 + virtual/latex-base + ) +" + +DOCS=( ${PN}.rst ) +SITEFILE="50${PN}-gentoo.el" + +python_configure() { + emake PYSETUP=: PYTHON=${EPYTHON} prepare +} + +src_prepare() { + distutils-r1_src_prepare + elisp_src_prepare +} + +src_compile() { + distutils-r1_src_compile + elisp_src_compile + + if use doc; then + VARTEXFONTS="${T}"/fonts emake RST2LATEX=rst2latex.py ${PN}.pdf + fi +} + +src_install() { + distutils-r1_src_install + elisp_src_install + + use doc && dodoc ${PN}.pdf +}