-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tomas Fabrizio Orsi <[email protected]>
- Loading branch information
1 parent
71f5341
commit 1f9774c
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST uiua-mode-0.1.0.tar.gz 35290 BLAKE2B 3bb40038fc9ba79d9251c801c62f37124666a3c1c015b2249e985547d752c579e488773daf71e4f86c24630acf0187e124db5d7ef1cbc63cc102eafed38216d6 SHA512 9ebf346fcef091c72fe14c127a321bfbd1651b5ea7649a97412437273ee3d100dc6c68768946625123cb2f37d2fabf1bd00fdfa5b3d04c1532724feaf657d10d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Copyright 2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit elisp | ||
|
||
DESCRIPTION="Emacs mode for uiua, a stack-based array language" | ||
HOMEPAGE="https://github.com/crmsnbleyd/uiua-mode" | ||
SRC_URI="https://github.com/crmsnbleyd/uiua-mode/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
RDEPEND="app-emacs/reformatter" | ||
DEPEND="${RDEPEND}" | ||
BDEPEND="" | ||
|
||
pkg_postinst() { | ||
elog "Add" | ||
elog " (require 'uiua-mode)" | ||
elog "to your emacs init file" | ||
} |