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 CCC0A1382C5 for ; Thu, 28 May 2020 17:13:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18514E0802; Thu, 28 May 2020 17:13:32 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 F03D9E0802 for ; Thu, 28 May 2020 17:13:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 BD24234F030 for ; Thu, 28 May 2020 17:13:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3894C242 for ; Thu, 28 May 2020 17:13:29 +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: <1590685992.d3731aab29de7dee98b1df80fbee31e1376cc0a3.ulm@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.ebuild X-VCS-Directories: app-emacs/pymacs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: d3731aab29de7dee98b1df80fbee31e1376cc0a3 X-VCS-Branch: master Date: Thu, 28 May 2020 17:13:29 +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: f8761c8b-33b0-4141-bb7a-a5e9d62b8b6f X-Archives-Hash: be18ef0985bf7e6b0e35c75d7ad2858d commit: d3731aab29de7dee98b1df80fbee31e1376cc0a3 Author: Ulrich Müller gentoo org> AuthorDate: Thu May 28 17:13:12 2020 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu May 28 17:13:12 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3731aab app-emacs/pymacs: Remove old. Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Ulrich Müller gentoo.org> app-emacs/pymacs/pymacs-0.26.ebuild | 55 ------------------------------------- 1 file changed, 55 deletions(-) diff --git a/app-emacs/pymacs/pymacs-0.26.ebuild b/app-emacs/pymacs/pymacs-0.26.ebuild deleted file mode 100644 index 729dc0e0a76..00000000000 --- a/app-emacs/pymacs/pymacs-0.26.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_6 ) - -inherit elisp distutils-r1 - -DESCRIPTION="A tool that allows both-side communication beetween Python and Emacs Lisp" -HOMEPAGE="https://www.emacswiki.org/emacs/PyMacs" -SRC_URI="https://github.com/dgentry/${PN^}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -#IUSE="doc" - -#BDEPEND="doc? ( -# >=dev-python/docutils-0.7 -# virtual/latex-base -# )" - -S="${WORKDIR}/${P^}" -DISTUTILS_IN_SOURCE_BUILD=1 -SITEFILE="50${PN}-gentoo.el" - -python_prepare_all() { - sed \ - -e '/pymacs-python-command/s/@PYTHON@/python/' \ - -i pymacs.el.in || die - distutils-r1_python_prepare_all -} - -# called by distutils-r1 for every python implementation -python_configure() { - # pre-process the files but don't run distutils - emake PYSETUP=: PYTHON=${EPYTHON} -} - -# called once -python_compile_all() { - elisp_src_compile - # "pdflatex pymacs.tex" fails with "undefined control sequence" - #if use doc; then - # VARTEXFONTS="${T}"/fonts emake RST2LATEX=rst2latex.py pymacs.pdf - #fi -} - -python_install_all() { - elisp_src_install - - distutils-r1_python_install_all - dodoc pymacs.rst - #use doc && dodoc pymacs.pdf -}