repo/gentoo:master commit in: app-emacs/denote/
Maciej BarÄ <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786705224.4e05d4837dab9c5d9f09ab00e5f69a0cdaff8b8f.xgqt@gentoo> |
commit: 4e05d4837dab9c5d9f09ab00e5f69a0cdaff8b8f
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 14 10:48:38 2026 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Aug 14 11:00:24 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e05d483
app-emacs/denote: drop old 4.2.0
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/denote/Manifest | 1 -
app-emacs/denote/denote-4.2.0.ebuild | 56 ------------------------------------
2 files changed, 57 deletions(-)
diff --git a/app-emacs/denote/Manifest b/app-emacs/denote/Manifest
index c63dad17bd8f..74b46913e3d7 100644
--- a/app-emacs/denote/Manifest
+++ b/app-emacs/denote/Manifest
@@ -1,2 +1 @@
-DIST denote-4.2.0.gh.tar.gz 301888 BLAKE2B 871f0665d1e2f559bbba0817a024be98322a9843bad96027c29eef910bfdf70207d2a463e9734b43d869eba073407959eeff0f949130201cf1b573f56ab551fb SHA512 4e53cae254da1d49e601e7fa350255d7e3b84296fcc473c80446055342ddb76cfeb3a2762735cc2e8112f818ec62a78856febae464202da8fe0a6db4722587da
DIST denote-4.2.3.gh.tar.gz 301905 BLAKE2B 27c5abb1850f091b310aa58184f56894f29c123fbefbf3175c17303386e7fef7b265eb8e1a3cb2b9bb5fb7dab8635ad0cc21e0249b2f72f999b917339edb1b50 SHA512 a1caebe5d0605086c860caf0b005f413bd16baee9270bdab666e7c67ae1bdf982320c76bc7ff7a14397ac41e71a2f12ff4163a070ec752ce29cff7aa04a39058
diff --git a/app-emacs/denote/denote-4.2.0.ebuild b/app-emacs/denote/denote-4.2.0.ebuild
deleted file mode 100644
index 6fd9b5aee23f..000000000000
--- a/app-emacs/denote/denote-4.2.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=9
-
-NEED_EMACS="28.1"
-
-inherit elisp
-
-DESCRIPTION="Simple notes for Emacs with an efficient file-naming scheme"
-HOMEPAGE="https://protesilaos.com/emacs/denote/
- https://github.com/protesilaos/denote/"
-
-if [[ "${PV}" == *9999* ]] ; then
- inherit git-r3
-
- EGIT_REPO_URI="https://github.com/protesilaos/${PN}"
-else
- SRC_URI="https://github.com/protesilaos/${PN}/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz"
-
- KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-
-DOCS=( CHANGELOG.org README.md )
-ELISP_TEXINFO="${PN}.texi"
-SITEFILE="50${PN}-gentoo.el"
-
-elisp-enable-tests ert tests
-
-src_prepare() {
- default
-
- # Skip failing test. Tests are marked as "WORK IN PROGRESS" at the
- # top of the file.
- local -a skip_tests=(
- dt-denote--date-convert
- dt-denote--make-denote-directory
- dt-denote-filetype-heuristics
- dt-denote-get-identifier
- dt-denote-identifier-p
- )
- local skip_test=""
- for skip_test in "${skip_tests[@]}"; do
- sed -i "/${skip_test}/a (ert-skip nil)" tests/denote-test.el || die
- done
-}
-
-src_compile() {
- elisp-org-export-to texinfo README.org
- elisp_src_compile
- elisp-make-autoload-file
-}