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 05397138334 for ; Fri, 1 Nov 2019 19:36:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8243E0839; Fri, 1 Nov 2019 19:36:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 B6A51E0839 for ; Fri, 1 Nov 2019 19:36:08 +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 4D2F734C680 for ; Fri, 1 Nov 2019 19:36:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 859868A1 for ; Fri, 1 Nov 2019 19:36:05 +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: <1572636957.de9c6483524eab471e6ffe963e9abd08c72e1bbb.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/auctex/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/auctex/auctex-12.1.ebuild X-VCS-Directories: app-emacs/auctex/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: de9c6483524eab471e6ffe963e9abd08c72e1bbb X-VCS-Branch: master Date: Fri, 1 Nov 2019 19:36:05 +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: 27e113f9-d78c-4d2c-8bc2-091bef6efcbb X-Archives-Hash: 87f1de61200a21b6d189ff6e29ac5fba commit: de9c6483524eab471e6ffe963e9abd08c72e1bbb Author: Ulrich Müller gentoo org> AuthorDate: Fri Nov 1 19:33:31 2019 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Nov 1 19:35:57 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de9c6483 app-emacs/auctex: Remove old. Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Ulrich Müller gentoo.org> app-emacs/auctex/auctex-12.1.ebuild | 61 ------------------------------------- 1 file changed, 61 deletions(-) diff --git a/app-emacs/auctex/auctex-12.1.ebuild b/app-emacs/auctex/auctex-12.1.ebuild deleted file mode 100644 index ad2a784723d..00000000000 --- a/app-emacs/auctex/auctex-12.1.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -NEED_EMACS=24 - -inherit elisp - -DESCRIPTION="Extensible package for writing and formatting TeX files in Emacs" -HOMEPAGE="https://www.gnu.org/software/auctex/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" - -LICENSE="GPL-3+ FDL-1.3+" -SLOT="0" -KEYWORDS="amd64 arm ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" -IUSE="preview-latex" - -DEPEND="virtual/latex-base - preview-latex? ( - app-text/dvipng - app-text/ghostscript-gpl - )" -RDEPEND="${DEPEND}" - -TEXMF="/usr/share/texmf-site" - -src_configure() { - econf --with-emacs \ - --with-auto-dir="${EPREFIX}/var/lib/auctex" \ - --with-lispdir="${EPREFIX}${SITELISP}/${PN}" \ - --with-packagelispdir="${EPREFIX}${SITELISP}/${PN}" \ - --with-packagedatadir="${EPREFIX}${SITEETC}/${PN}" \ - --with-texmf-dir="${EPREFIX}${TEXMF}" \ - --docdir="${EPREFIX}/usr/share/doc/${PF}" \ - --disable-build-dir-test \ - $(use_enable preview-latex preview) -} - -src_compile() { - export VARTEXFONTS="${T}"/fonts - emake -} - -src_install() { - emake -j1 DESTDIR="${D}" install - elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el" - if use preview-latex; then - elisp-site-file-install "${FILESDIR}/60${PN}-gentoo.el" - fi - dodoc ChangeLog* CHANGES FAQ INSTALL PROBLEMS.preview README RELEASE TODO -} - -pkg_postinst() { - use preview-latex && texmf-update - elisp-site-regen -} - -pkg_postrm(){ - use preview-latex && texmf-update - elisp-site-regen -}