summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2025-11-28 19:50:01 +0100
committerMaciej Barć <xgqt@gentoo.org>2025-11-29 00:51:59 +0100
commit7b5dbd1dba130b1471d555e1c5b54524b7e4dc33 (patch)
tree126df237261bd719b6c694bc1ee6550cbfec7ed7
parent412678b774b1fbef44552b58f1930ed9fd903f2a (diff)
downloadgentoo-7b5dbd1dba130b1471d555e1c5b54524b7e4dc33.tar.gz
gentoo-7b5dbd1dba130b1471d555e1c5b54524b7e4dc33.tar.bz2
gentoo-7b5dbd1dba130b1471d555e1c5b54524b7e4dc33.zip
app-emacs/jinx: drop old 2.3
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
-rw-r--r--app-emacs/jinx/Manifest1
-rw-r--r--app-emacs/jinx/jinx-2.3.ebuild55
2 files changed, 0 insertions, 56 deletions
diff --git a/app-emacs/jinx/Manifest b/app-emacs/jinx/Manifest
index ccee14c11d57..03b520eabd1d 100644
--- a/app-emacs/jinx/Manifest
+++ b/app-emacs/jinx/Manifest
@@ -1,2 +1 @@
-DIST jinx-2.3.tar.gz 37512 BLAKE2B 837b041af679da173e87ea51b1e9fcd7a56f2cffbafd70e67de978904e89a1ae6dd5e843f61eb1a79da95468ad1ce9dcc1e4d4f4a0f66ad1df8728e1180e6c52 SHA512 60e64bb40b97333a37e0a6a2116fa3a2e0a66fcfb2eba59f21aaf220c0917d456d9b2019b9f4213fef3e59d3befc811874abc91aa0acb7ed01dd22e50b2c168c
DIST jinx-2.4.tar.gz 38109 BLAKE2B e787cce16ae31dd6865410296e2e9d20edd7418c15f79b4f8b7e3b2aa268cf852f4139b032331c5cb3476f085ffe000355a5c1d2aaf73dfb32e1b5640f5b09a0 SHA512 7ebe31a5c3d9595b8b27bc73d706497efab091fd9e5b04e72ebbfb8bb4b32813846b4aaa93ddc41c4d7e6c5b4d070e5da2f34fb49ad8a43a650cb4bd6d4a031d
diff --git a/app-emacs/jinx/jinx-2.3.ebuild b/app-emacs/jinx/jinx-2.3.ebuild
deleted file mode 100644
index 165e74cbe87b..000000000000
--- a/app-emacs/jinx/jinx-2.3.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 2023-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-NEED_EMACS=28.1
-
-inherit edo elisp toolchain-funcs
-
-DESCRIPTION="Enchanted Spell Checker for GNU Emacs"
-HOMEPAGE="https://github.com/minad/jinx"
-
-if [[ "${PV}" == *9999* ]] ; then
- inherit git-r3
-
- EGIT_REPO_URI="https://github.com/minad/${PN}.git"
-else
- SRC_URI="https://github.com/minad/${PN}/archive/refs/tags/${PV}.tar.gz
- -> ${P}.tar.gz"
-
- KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-
-RDEPEND="
- app-text/enchant:2
- >=app-emacs/compat-29.1.4.0
-"
-DEPEND="
- ${RDEPEND}
-"
-BDEPEND="
- virtual/pkgconfig
-"
-
-ELISP_TEXINFO="${PN}.texi"
-SITEFILE="50${PN}-gentoo.el"
-
-src_compile() {
- edo $(tc-getCC) -fPIC -Wall -Wextra -shared \
- $($(tc-getPKG_CONFIG) --cflags --libs enchant-2) \
- ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} -o jinx-mod.so jinx-mod.c
- elisp-org-export-to texinfo README.org
- elisp_src_compile
-}
-
-src_install() {
- elisp-make-autoload-file
- elisp_src_install
-
- elisp-modules-install "${PN}" jinx-mod.so
- doinfo jinx.info
-}