Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/sunrise-commander/files/, app-emacs/sunrise-commander/
Date: Sat, 30 Apr 2022 03:13:37
Message-Id: 1651288399.561029748da9e56afed35b9a7c07959d9ccf6ad8.xgqt@gentoo
1 commit: 561029748da9e56afed35b9a7c07959d9ccf6ad8
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 30 03:13:19 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 30 03:13:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56102974
7
8 app-emacs/sunrise-commander: new package; add version 6_p20210927
9
10 2021.09.27 snapshot
11
12 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
13
14 app-emacs/sunrise-commander/Manifest | 1 +
15 .../files/50sunrise-commander-gentoo.el | 4 ++++
16 app-emacs/sunrise-commander/metadata.xml | 13 ++++++++++++
17 .../sunrise-commander-6_p20210927.ebuild | 23 ++++++++++++++++++++++
18 4 files changed, 41 insertions(+)
19
20 diff --git a/app-emacs/sunrise-commander/Manifest b/app-emacs/sunrise-commander/Manifest
21 new file mode 100644
22 index 000000000000..e62388c2f775
23 --- /dev/null
24 +++ b/app-emacs/sunrise-commander/Manifest
25 @@ -0,0 +1 @@
26 +DIST sunrise-commander-6_p20210927.tar.gz 109761 BLAKE2B f4996bc15243e0064c9acf5418d25c52a3f5aba2de86d256688aac31565a70e882ab1df04946bc8bd92bd379302f3362fd8e14dedcb531b249d971bee8a16e23 SHA512 60fb59f90235277d123ce9a62a2433b2300f0e0c6545802f8bb235e5a34666d9760f2c968f83067cb66259527cbf69213e60f788dd455f097b21e5f913fe949f
27
28 diff --git a/app-emacs/sunrise-commander/files/50sunrise-commander-gentoo.el b/app-emacs/sunrise-commander/files/50sunrise-commander-gentoo.el
29 new file mode 100644
30 index 000000000000..4a1369b59d67
31 --- /dev/null
32 +++ b/app-emacs/sunrise-commander/files/50sunrise-commander-gentoo.el
33 @@ -0,0 +1,4 @@
34 +(add-to-list 'load-path "@SITELISP@")
35 +(autoload 'sunrise-toggle "sunrise"
36 + "Show or hide the Sunrise Commander." t)
37 +(defalias 'sunrise 'sunrise-toggle)
38
39 diff --git a/app-emacs/sunrise-commander/metadata.xml b/app-emacs/sunrise-commander/metadata.xml
40 new file mode 100644
41 index 000000000000..94cb76216849
42 --- /dev/null
43 +++ b/app-emacs/sunrise-commander/metadata.xml
44 @@ -0,0 +1,13 @@
45 +<?xml version="1.0" encoding="UTF-8"?>
46 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
47 +
48 +<pkgmetadata>
49 + <maintainer type="project">
50 + <email>gnu-emacs@g.o</email>
51 + <name>Gentoo GNU Emacs project</name>
52 + </maintainer>
53 + <upstream>
54 + <bugs-to>https://github.com/sunrise-commander/sunrise-commander/issues/</bugs-to>
55 + <remote-id type="github">sunrise-commander/sunrise-commander</remote-id>
56 + </upstream>
57 +</pkgmetadata>
58
59 diff --git a/app-emacs/sunrise-commander/sunrise-commander-6_p20210927.ebuild b/app-emacs/sunrise-commander/sunrise-commander-6_p20210927.ebuild
60 new file mode 100644
61 index 000000000000..2bc5be9f966a
62 --- /dev/null
63 +++ b/app-emacs/sunrise-commander/sunrise-commander-6_p20210927.ebuild
64 @@ -0,0 +1,23 @@
65 +# Copyright 1999-2022 Gentoo Authors
66 +# Distributed under the terms of the GNU General Public License v2
67 +
68 +# NOTICE: Check version of sunrise-commander in it's "Cask" & "sunrise.el".
69 +
70 +EAPI=8
71 +
72 +H=16e6df7e86c7a383fb4400fae94af32baf9cb24e
73 +NEED_EMACS=24.3
74 +
75 +inherit elisp
76 +
77 +DESCRIPTION="Twin-pane file manager for Emacs inspired by Midnight Commander"
78 +HOMEPAGE="https://www.emacswiki.org/emacs/Sunrise_Commander/"
79 +SRC_URI="https://github.com/${PN}/${PN}/archive/${H}.tar.gz -> ${P}.tar.gz"
80 +S="${WORKDIR}"/${PN}-${H}
81 +
82 +LICENSE="GPL-3+"
83 +KEYWORDS="~amd64 ~x86"
84 +SLOT="0"
85 +
86 +DOCS=( README.md )
87 +SITEFILE="50${PN}-gentoo.el"