summaryrefslogtreecommitdiff
path: root/app-emacs/org-mode
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-10-04 07:07:04 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-10-04 07:07:04 +0000
commit7ff339a575ceba647347cd6a96d4f893756dc5b9 (patch)
treea1c294562846a298d28244dcdadeb7c977598400 /app-emacs/org-mode
parentaea0caf6fbf330077944736867748fcdabc85d33 (diff)
downloadbaldeagleos-repo-7ff339a575ceba647347cd6a96d4f893756dc5b9.tar.gz
baldeagleos-repo-7ff339a575ceba647347cd6a96d4f893756dc5b9.tar.xz
baldeagleos-repo-7ff339a575ceba647347cd6a96d4f893756dc5b9.zip
Adding metadata
Diffstat (limited to 'app-emacs/org-mode')
-rw-r--r--app-emacs/org-mode/Manifest1
-rw-r--r--app-emacs/org-mode/org-mode-9.7.33.ebuild84
-rw-r--r--app-emacs/org-mode/org-mode-9.7.34.ebuild2
3 files changed, 1 insertions, 86 deletions
diff --git a/app-emacs/org-mode/Manifest b/app-emacs/org-mode/Manifest
index 8162f44d41a8..4d52ace64533 100644
--- a/app-emacs/org-mode/Manifest
+++ b/app-emacs/org-mode/Manifest
@@ -1,2 +1 @@
-DIST org-mode-release_9.7.33.tar.gz 2365647 BLAKE2B faca0f94a0d5dc6fa1dd85d3cbe45e83d8283050c80313e8e06d8b69ef8147f4cddaeb105cdc9f0e4511860ae82d801fd9b7b7cb0b40a204ddb19039b1a8aaca SHA512 7989f09785933a1909d7ee757b32a60bbc1757182fd023b21699a13fb759266ead73f9589bf73f7ce10a7218fb5aa83ab90d37d8fd6a9fcd7ca7622465d80618
DIST org-mode-release_9.7.34.tar.gz 2365680 BLAKE2B 308389056148e7ae3dba51cc3e754484bc5ec925e2761f6fee7a48a2c11ba8bb2c1bffebbfef6e06f7eaee240a3fd07e39abeb6c2267824f3b1199b283650b2e SHA512 27b80ac4c8c73f9409ccac816322fcabe67fc74ff16ba4fb109bbbcc40dc2bbc32599268f31d124a47741f0113c41cd52d85938f1b08b89fb44807690191ee58
diff --git a/app-emacs/org-mode/org-mode-9.7.33.ebuild b/app-emacs/org-mode/org-mode-9.7.33.ebuild
deleted file mode 100644
index cd1d57a3d89d..000000000000
--- a/app-emacs/org-mode/org-mode-9.7.33.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp readme.gentoo-r1
-
-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}"
- EGIT_CHECKOUT_DIR="${WORKDIR}/org"
- 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 ~arm ~arm64 ppc ~riscv x86"
-fi
-
-LICENSE="GPL-3+ FDL-1.3+ CC-BY-SA-3.0 odt-schema? ( OASIS-Open )"
-SLOT="0"
-IUSE="doc odt-schema"
-
-BDEPEND="
- doc? (
- virtual/texi2dvi
- )
-"
-
-DOCS=( README.org CONTRIBUTE.org etc/ORG-NEWS )
-SITEFILE="50${PN}-gentoo.el"
-
-src_prepare() {
- elisp_src_prepare
-
- # Remove failing tests.
- rm ./testing/lisp/test-{ob,ob-exp,ob-tangle,ob-shell,org-clock}.el \
- || die "failed to remove some test files"
-
- EMAKEARGS=(
- ORGVERSION="${PV}"
- ETCDIRS="styles csl $(use odt-schema && echo schema)"
- lispdir="${EPREFIX}${SITELISP}/${PN}"
- datadir="${EPREFIX}${SITEETC}/${PN}"
- infodir="${EPREFIX}/usr/share/info"
- )
-}
-
-src_compile() {
- emake -j1 "${EMAKEARGS[@]}"
-
- if use doc ; then
- emake -j1 pdf
- emake -j1 card
- fi
-}
-
-src_test() {
- local -x LANG="C"
-
- emake -j1 "${EMAKEARGS[@]}" TEST_NO_AUTOCLEAN="TRUE" test-dirty
-}
-
-src_install() {
- if use doc ; then
- DOCS+=( doc/org.pdf doc/orgcard.pdf doc/orgguide.pdf )
- fi
-
- emake -j1 "${EMAKEARGS[@]}" DESTDIR="${D}" install
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
- einstalldocs
-
- local 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
-}
diff --git a/app-emacs/org-mode/org-mode-9.7.34.ebuild b/app-emacs/org-mode/org-mode-9.7.34.ebuild
index b907f5d7da8d..cd1d57a3d89d 100644
--- a/app-emacs/org-mode/org-mode-9.7.34.ebuild
+++ b/app-emacs/org-mode/org-mode-9.7.34.ebuild
@@ -20,7 +20,7 @@ else
SRC_URI="https://git.savannah.gnu.org/cgit/emacs/${PN}.git/snapshot/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~x86"
+ KEYWORDS="amd64 ~arm ~arm64 ppc ~riscv x86"
fi
LICENSE="GPL-3+ FDL-1.3+ CC-BY-SA-3.0 odt-schema? ( OASIS-Open )"