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 4B58A15817D for ; Thu, 20 Jun 2024 14:51:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9627EE2A21; Thu, 20 Jun 2024 14:51:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7E491E2A21 for ; Thu, 20 Jun 2024 14:51:13 +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 AD80A33BF28 for ; Thu, 20 Jun 2024 14:51:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E1FEF1D17 for ; Thu, 20 Jun 2024 14:51:10 +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: <1718895068.152639a3d65fd945aa9e5d411c807dbe9f7c5bf3.xgqt@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-9999.ebuild X-VCS-Directories: app-emacs/org-mode/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 152639a3d65fd945aa9e5d411c807dbe9f7c5bf3 X-VCS-Branch: master Date: Thu, 20 Jun 2024 14:51:10 +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: a329551f-d287-4511-b334-a3e93be28d7d X-Archives-Hash: 1d2d6b9885d60d5c0b43e452f745e47f commit: 152639a3d65fd945aa9e5d411c807dbe9f7c5bf3 Author: Maciej Barć gentoo org> AuthorDate: Thu Jun 20 14:44:07 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Thu Jun 20 14:51:08 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=152639a3 app-emacs/org-mode: sync live 9999 version Signed-off-by: Maciej Barć gentoo.org> app-emacs/org-mode/org-mode-9999.ebuild | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/app-emacs/org-mode/org-mode-9999.ebuild b/app-emacs/org-mode/org-mode-9999.ebuild index ac0cf59313b4..1fc3dbd33b95 100644 --- a/app-emacs/org-mode/org-mode-9999.ebuild +++ b/app-emacs/org-mode/org-mode-9999.ebuild @@ -1,41 +1,47 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit elisp readme.gentoo-r1 -if [[ ${PV} == 9999 ]]; then +DESCRIPTION="An Emacs mode for notes and project planning" +HOMEPAGE="https://orgmode.org/" + +if [[ "${PV}" == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://git.savannah.gnu.org/git/emacs/${PN}.git" EGIT_CHECKOUT_DIR="${WORKDIR}/org" - inherit git-r3 S="${WORKDIR}/org" else MY_P="${PN}-release_${PV}" + SRC_URI="https://git.savannah.gnu.org/cgit/emacs/${PN}.git/snapshot/${MY_P}.tar.gz" S="${WORKDIR}/${MY_P}" + KEYWORDS="~amd64 ~ppc ~x86" fi -DESCRIPTION="An Emacs mode for notes and project planning" -HOMEPAGE="https://www.orgmode.org/" - LICENSE="GPL-3+ FDL-1.3+ CC-BY-SA-3.0 odt-schema? ( OASIS-Open )" SLOT="0" IUSE="doc odt-schema" RESTRICT="test" -BDEPEND="doc? ( virtual/texi2dvi )" +BDEPEND=" + doc? ( virtual/texi2dvi ) +" SITEFILE="50${PN}-gentoo.el" src_compile() { - emake datadir="${EPREFIX}${SITEETC}/${PN}" - use doc && emake pdf card + emake -j1 datadir="${EPREFIX}${SITEETC}/${PN}" + + use doc && emake -j1 pdf card } src_install() { - emake \ + emake -j1 \ DESTDIR="${D}" \ ETCDIRS="styles csl $(use odt-schema && echo schema)" \ lispdir="${EPREFIX}${SITELISP}/${PN}" \