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 357441395E3 for ; Sun, 27 Nov 2016 12:26:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFD20E084B; Sun, 27 Nov 2016 12:26:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 94048E084B for ; Sun, 27 Nov 2016 12:26:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 894AF340F1A for ; Sun, 27 Nov 2016 12:26:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B42B49C for ; Sun, 27 Nov 2016 12:26:40 +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: <1480249594.2bcef4197e17a40976bfa07a870794dd251fee69.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/org-mode/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/org-mode/org-mode-8.3.2.ebuild X-VCS-Directories: app-emacs/org-mode/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 2bcef4197e17a40976bfa07a870794dd251fee69 X-VCS-Branch: master Date: Sun, 27 Nov 2016 12:26:40 +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-Archives-Salt: 79bca570-82ca-4b69-a5ee-9ad6903fb875 X-Archives-Hash: 65721d9a83c6f5624bcd9d64d6eb0fe1 commit: 2bcef4197e17a40976bfa07a870794dd251fee69 Author: Ulrich Müller gentoo org> AuthorDate: Sun Nov 27 12:22:02 2016 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Nov 27 12:26:34 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bcef419 app-emacs/org-mode: Remove old. Package-Manager: portage-2.3.2 app-emacs/org-mode/org-mode-8.3.2.ebuild | 54 -------------------------------- 1 file changed, 54 deletions(-) diff --git a/app-emacs/org-mode/org-mode-8.3.2.ebuild b/app-emacs/org-mode/org-mode-8.3.2.ebuild deleted file mode 100644 index 88250cb..00000000 --- a/app-emacs/org-mode/org-mode-8.3.2.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit elisp - -DESCRIPTION="An Emacs mode for notes and project planning" -HOMEPAGE="http://www.orgmode.org/" -SRC_URI="http://orgmode.org/org-${PV}.tar.gz" - -LICENSE="GPL-3+ FDL-1.3+ contrib? ( GPL-2+ MIT ) odt-schema? ( OASIS-Open )" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd ~x86-macos" -IUSE="contrib doc odt-schema" -RESTRICT="test" - -DEPEND="doc? ( virtual/texi2dvi )" - -S="${WORKDIR}/org-${PV}" -SITEFILE="50${PN}-gentoo.el" - -src_compile() { - emake datadir="${EPREFIX}${SITEETC}/${PN}" - use doc && emake pdf card -} - -src_install() { - emake \ - DESTDIR="${D}" \ - ETCDIRS="styles $(use odt-schema && echo schema)" \ - lispdir="${EPREFIX}${SITELISP}/${PN}" \ - datadir="${EPREFIX}${SITEETC}/${PN}" \ - infodir="${EPREFIX}/usr/share/info" \ - install - - cp "${FILESDIR}/${SITEFILE}" "${T}/${SITEFILE}" || die - - if use contrib; then - elisp-install ${PN}/contrib contrib/lisp/{org,ob,ox}*.el - insinto /usr/share/doc/${PF}/contrib - doins -r contrib/README contrib/scripts - find "${ED}/usr/share/doc/${PF}/contrib" -type f -name '.*' \ - -exec rm -f '{}' '+' - # add the contrib subdirectory to load-path - sed -i -e 's:\(.*@SITELISP@\)\(.*\):&\n\1/contrib\2:' \ - "${T}/${SITEFILE}" || die - fi - - elisp-site-file-install "${T}/${SITEFILE}" - dodoc README doc/library-of-babel.org doc/orgcard.txt etc/ORG-NEWS - use doc && dodoc doc/org.pdf doc/orgcard.pdf doc/orgguide.pdf -}