diff options
author | 2022-04-30 05:13:19 +0200 | |
---|---|---|
committer | 2022-04-30 05:13:19 +0200 | |
commit | 561029748da9e56afed35b9a7c07959d9ccf6ad8 (patch) | |
tree | 1e7e388cfd3e5a91bb15e7654b055d9b306abb31 /app-emacs/sunrise-commander | |
parent | sys-cluster/k3s: add 1.23.6_p1 (diff) | |
download | gentoo-561029748da9e56afed35b9a7c07959d9ccf6ad8.tar.gz gentoo-561029748da9e56afed35b9a7c07959d9ccf6ad8.tar.bz2 gentoo-561029748da9e56afed35b9a7c07959d9ccf6ad8.zip |
app-emacs/sunrise-commander: new package; add version 6_p20210927
2021.09.27 snapshot
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/sunrise-commander')
4 files changed, 41 insertions, 0 deletions
diff --git a/app-emacs/sunrise-commander/Manifest b/app-emacs/sunrise-commander/Manifest new file mode 100644 index 000000000000..e62388c2f775 --- /dev/null +++ b/app-emacs/sunrise-commander/Manifest @@ -0,0 +1 @@ +DIST sunrise-commander-6_p20210927.tar.gz 109761 BLAKE2B f4996bc15243e0064c9acf5418d25c52a3f5aba2de86d256688aac31565a70e882ab1df04946bc8bd92bd379302f3362fd8e14dedcb531b249d971bee8a16e23 SHA512 60fb59f90235277d123ce9a62a2433b2300f0e0c6545802f8bb235e5a34666d9760f2c968f83067cb66259527cbf69213e60f788dd455f097b21e5f913fe949f diff --git a/app-emacs/sunrise-commander/files/50sunrise-commander-gentoo.el b/app-emacs/sunrise-commander/files/50sunrise-commander-gentoo.el new file mode 100644 index 000000000000..4a1369b59d67 --- /dev/null +++ b/app-emacs/sunrise-commander/files/50sunrise-commander-gentoo.el @@ -0,0 +1,4 @@ +(add-to-list 'load-path "@SITELISP@") +(autoload 'sunrise-toggle "sunrise" + "Show or hide the Sunrise Commander." t) +(defalias 'sunrise 'sunrise-toggle) diff --git a/app-emacs/sunrise-commander/metadata.xml b/app-emacs/sunrise-commander/metadata.xml new file mode 100644 index 000000000000..94cb76216849 --- /dev/null +++ b/app-emacs/sunrise-commander/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> + +<pkgmetadata> + <maintainer type="project"> + <email>gnu-emacs@gentoo.org</email> + <name>Gentoo GNU Emacs project</name> + </maintainer> + <upstream> + <bugs-to>https://github.com/sunrise-commander/sunrise-commander/issues/</bugs-to> + <remote-id type="github">sunrise-commander/sunrise-commander</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-emacs/sunrise-commander/sunrise-commander-6_p20210927.ebuild b/app-emacs/sunrise-commander/sunrise-commander-6_p20210927.ebuild new file mode 100644 index 000000000000..2bc5be9f966a --- /dev/null +++ b/app-emacs/sunrise-commander/sunrise-commander-6_p20210927.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# NOTICE: Check version of sunrise-commander in it's "Cask" & "sunrise.el". + +EAPI=8 + +H=16e6df7e86c7a383fb4400fae94af32baf9cb24e +NEED_EMACS=24.3 + +inherit elisp + +DESCRIPTION="Twin-pane file manager for Emacs inspired by Midnight Commander" +HOMEPAGE="https://www.emacswiki.org/emacs/Sunrise_Commander/" +SRC_URI="https://github.com/${PN}/${PN}/archive/${H}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/${PN}-${H} + +LICENSE="GPL-3+" +KEYWORDS="~amd64 ~x86" +SLOT="0" + +DOCS=( README.md ) +SITEFILE="50${PN}-gentoo.el" |