public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/org-mode/
Date: Mon, 21 Sep 2020 07:59:48 +0000 (UTC)	[thread overview]
Message-ID: <1600675103.067455382422794774ce7e7d08f16c010b6e6233.ulm@gentoo> (raw)

commit:     067455382422794774ce7e7d08f16c010b6e6233
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 21 07:58:23 2020 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Sep 21 07:58:23 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06745538

app-emacs/org-mode: Version bump to 9.4.

Closes: https://bugs.gentoo.org/742566
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 app-emacs/org-mode/Manifest            |  1 +
 app-emacs/org-mode/org-mode-9.4.ebuild | 59 ++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/app-emacs/org-mode/Manifest b/app-emacs/org-mode/Manifest
index a7638fc2607..05a023370d4 100644
--- a/app-emacs/org-mode/Manifest
+++ b/app-emacs/org-mode/Manifest
@@ -1,2 +1,3 @@
 DIST org-8.3.2.tar.gz 4442361 BLAKE2B f21f07578e870cd3edaa3721a53f679627c0115c320c666c2086e201e272c0ef03540bfdd90936a624cd4c4dcbac21b91346ba975b6006ada2d46184f73574f3 SHA512 3e1ff47c875a2db3239add8b060f555da357e465161ca62860c0ac2734c2e31c5387d2df4223ab7ea8ea60050f9a845d160b0bcb3afcf36f1d3cabcaa961e6a2
 DIST org-9.3.6.tar.gz 4669953 BLAKE2B 1d221918f8145b789d979ee7822640dd37c5722e9f65ba36e945f7d574cfb89d48e2da1812d5dc727301ef1ad8bd2ef5628f54cbbfef5bffbab48656ed4c1e65 SHA512 47b5b81f47474d399cc7aada0e32f376d4c8758f6e955b7d889035610c20a4c372ea0571a510695822d2b87bd1e8002c2d0d8c73dc730144540c59b5ef25e090
+DIST org-9.4.tar.gz 4724986 BLAKE2B 8f56c2459e1718d4982ccdba3a8fb1403ff4a66a5425ec341f6d5ef01b2415c87d77c7ac8a8cd7046b4398a18688ef5fb4f92d0131f6694bc6047b32e3dd5827 SHA512 480377b13950e1f9cfa2ec553f274156ff9a25a5572d5eb6137fa08a3d6f1d5c0a6942f4d139379974861ee467c3be17105bec6b17640beaa308c8fa6825f8f5

diff --git a/app-emacs/org-mode/org-mode-9.4.ebuild b/app-emacs/org-mode/org-mode-9.4.ebuild
new file mode 100644
index 00000000000..60448056b54
--- /dev/null
+++ b/app-emacs/org-mode/org-mode-9.4.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+NEED_EMACS=24
+
+inherit elisp readme.gentoo-r1
+
+DESCRIPTION="An Emacs mode for notes and project planning"
+HOMEPAGE="https://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-macos"
+IUSE="contrib doc odt-schema"
+RESTRICT="test"
+
+BDEPEND="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
+		( docinto contrib; dodoc -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 etc/ORG-NEWS
+	use doc && dodoc doc/org.pdf doc/orgcard.pdf doc/orgguide.pdf
+
+	DOC_CONTENTS="Org mode has a large variety of run-time dependencies,
+		so you may have to install one or more additional packages.
+		A non-exhaustive list of these dependencies may be found at
+		<http://orgmode.org/worg/org-dependencies.html>."
+	readme.gentoo_create_doc
+}


             reply	other threads:[~2020-09-21  7:59 UTC|newest]

Thread overview: 152+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-21  7:59 Ulrich Müller [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-08 23:07 [gentoo-commits] repo/gentoo:master commit in: app-emacs/org-mode/ Maciej Barć
2024-10-08 23:07 Maciej Barć
2024-10-08 23:07 Maciej Barć
2024-10-07 17:24 Sam James
2024-09-26 19:31 Sam James
2024-09-13 20:57 Maciej Barć
2024-09-13 20:57 Maciej Barć
2024-09-13 20:57 Maciej Barć
2024-09-03 18:44 Maciej Barć
2024-09-03 18:32 Jakov Smolić
2024-08-24 23:48 Maciej Barć
2024-08-24 23:48 Maciej Barć
2024-08-01 16:47 Arthur Zamarin
2024-07-31  0:03 Maciej Barć
2024-07-23 23:12 Maciej Barć
2024-07-15  7:10 Maciej Barć
2024-07-02  3:43 Maciej Barć
2024-06-23  0:58 Ulrich Müller
2024-06-22 22:04 Sam James
2024-06-22 19:05 Maciej Barć
2024-06-22 19:05 Maciej Barć
2024-06-22 19:05 Maciej Barć
2024-06-20 14:51 Maciej Barć
2024-06-20 14:51 Maciej Barć
2024-06-20 14:51 Maciej Barć
2024-06-12  2:01 Sam James
2024-06-11 23:16 Maciej Barć
2024-06-07 16:49 Arthur Zamarin
2024-05-25 14:06 Maciej Barć
2024-05-18  3:19 Sam James
2024-05-13 17:59 Maciej Barć
2024-05-10  7:45 Maciej Barć
2024-05-10  7:45 Maciej Barć
2024-05-06 18:00 Maciej Barć
2024-05-06 17:05 Sam James
2024-04-16  7:20 Maciej Barć
2024-04-04 19:01 Maciej Barć
2024-03-25 18:52 Maciej Barć
2024-03-25 18:52 Maciej Barć
2024-03-25 18:52 Maciej Barć
2024-03-25 18:50 Sam James
2024-03-25 15:41 Ulrich Müller
2024-03-25 15:41 Ulrich Müller
2024-03-25  7:25 Arthur Zamarin
2024-03-20 19:30 Maciej Barć
2024-03-02 16:32 Maciej Barć
2024-02-27 23:21 Sam James
2024-02-23  1:05 Maciej Barć
2024-02-02 21:36 Sam James
2024-01-23 22:07 Maciej Barć
2024-01-23 22:07 Maciej Barć
2024-01-22  5:04 Sam James
2023-12-29 22:48 Maciej Barć
2023-12-29 22:48 Maciej Barć
2023-12-22  5:07 Sam James
2023-12-22  1:03 Maciej Barć
2023-12-22  1:03 Maciej Barć
2023-12-22  1:03 Maciej Barć
2023-12-15  2:33 Sam James
2023-11-15 19:27 Maciej Barć
2023-11-15 19:27 Maciej Barć
2023-11-13 19:53 Sam James
2023-11-01 19:17 Maciej Barć
2023-10-09  7:35 Maciej Barć
2023-10-06 15:21 Maciej Barć
2023-10-06 15:21 Maciej Barć
2023-10-06 10:52 Arthur Zamarin
2023-10-01 18:07 Arthur Zamarin
2023-09-05 14:11 Maciej Barć
2023-08-23 22:14 Maciej Barć
2023-08-11 16:41 Maciej Barć
2023-08-11 16:41 Maciej Barć
2023-08-02  4:27 Sam James
2023-06-28  1:12 Maciej Barć
2023-06-28  1:12 Maciej Barć
2023-06-28  1:12 Maciej Barć
2023-06-20 16:12 Sam James
2023-06-07 15:50 Sam James
2023-05-25  7:46 Arthur Zamarin
2023-05-16 15:44 Maciej Barć
2023-05-16 15:44 Maciej Barć
2023-05-09  4:09 Arthur Zamarin
2023-05-02  0:39 Maciej Barć
2023-05-02  0:39 Maciej Barć
2023-04-27 23:32 Sam James
2023-04-18 20:52 Maciej Barć
2023-04-04  1:30 Maciej Barć
2023-03-28  0:57 Maciej Barć
2023-03-28  0:57 Maciej Barć
2023-03-28  0:57 Maciej Barć
2023-03-28  0:57 Maciej Barć
2023-02-13 23:24 Sam James
2023-01-16 13:35 Jakov Smolić
2023-01-13  2:30 Maciej Barć
2022-12-11  2:37 Sam James
2022-12-05  9:02 Ulrich Müller
2022-12-04 20:22 Maciej Barć
2022-12-04  5:35 Maciej Barć
2022-12-04  5:35 Maciej Barć
2022-09-25 16:46 Maciej Barć
2022-07-24 19:32 Ulrich Müller
2022-07-24 19:13 Sam James
2022-06-19 11:56 Matthew Smith
2022-05-20 18:42 Jakov Smolić
2022-05-20 18:34 Ulrich Müller
2022-04-20 16:30 Matthew Smith
2022-02-13 20:52 Jakov Smolić
2021-12-28 11:39 Jakov Smolić
2021-12-28 10:15 Ulrich Müller
2021-11-26 13:15 Ulrich Müller
2021-10-06 10:20 Ulrich Müller
2021-10-06 10:20 Ulrich Müller
2021-10-02  9:20 Ulrich Müller
2021-10-02  7:08 Ulrich Müller
2021-10-01 19:11 Ulrich Müller
2021-02-06 16:36 Ulrich Müller
2021-02-06 16:36 Ulrich Müller
2021-01-07  9:41 Ulrich Müller
2021-01-06 13:07 Fabian Groffen
2020-11-13  2:46 Sam James
2020-11-12 22:54 Thomas Deutschmann
2020-11-07 20:22 Sergei Trofimovich
2020-06-28 21:00 Ulrich Müller
2020-06-28 20:44 Agostino Sarubbo
2020-06-28 20:33 Agostino Sarubbo
2020-06-26 17:43 Agostino Sarubbo
2020-04-25  9:51 Ulrich Müller
2020-04-25  9:51 Ulrich Müller
2020-01-17  9:25 Agostino Sarubbo
2019-12-16 20:16 Ulrich Müller
2019-11-11 12:49 Ulrich Müller
2019-10-07 10:50 Ulrich Müller
2019-10-07  9:47 Agostino Sarubbo
2019-10-07  8:59 Agostino Sarubbo
2019-10-07  8:42 Agostino Sarubbo
2019-09-04 14:38 Ulrich Müller
2019-09-04 14:38 Ulrich Müller
2018-07-09  0:31 Mikle Kolyada
2018-07-06 13:43 Thomas Deutschmann
2018-05-28 20:48 Ulrich Müller
2018-05-28 20:48 Ulrich Müller
2017-02-05  9:53 Ulrich Müller
2017-02-05  9:53 Ulrich Müller
2016-12-29  7:46 Michael Palimaka
2016-12-21 17:28 Tobias Klausmann
2016-11-27 12:26 Ulrich Müller
2016-11-27 12:26 Ulrich Müller
2016-11-27 12:26 Ulrich Müller
2015-10-25 10:34 Michał Górny
2015-10-24 16:15 Ulrich Müller
2015-10-24 16:15 Ulrich Müller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1600675103.067455382422794774ce7e7d08f16c010b6e6233.ulm@gentoo \
    --to=ulm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox