diff options
Diffstat (limited to 'app-emacs/burly')
-rw-r--r-- | app-emacs/burly/Manifest | 4 | ||||
-rw-r--r-- | app-emacs/burly/burly-0.2.ebuild | 39 | ||||
-rw-r--r-- | app-emacs/burly/files/50burly-gentoo.el | 2 | ||||
-rw-r--r-- | app-emacs/burly/metadata.xml | 20 |
4 files changed, 65 insertions, 0 deletions
diff --git a/app-emacs/burly/Manifest b/app-emacs/burly/Manifest new file mode 100644 index 000000000000..0d1fbfb7d2a7 --- /dev/null +++ b/app-emacs/burly/Manifest @@ -0,0 +1,4 @@ +AUX 50burly-gentoo.el 69 BLAKE2B 9ac6768efce2bab9e0b7f6830fcf2dcec59809fbe3d21566c3b4e009878f170efc1894d40110e9421abdeda7fa87fd66282673f37ffa46a6d586c4fdf160b802 SHA512 0f654e7c2e5206374e4ba9a19f38b5b38d4f358411442d716c4b5faa0da3ab1bbcc427cfa0c65c5dc334107adc8fa94e511f98ac6e19e0d0980279e5bc394a0e +DIST burly-0.2.tar.gz 231242 BLAKE2B e50999727d654485c8265a163849f26867721f914c59b501ca8a4a42a1c12589adcd5d85b3d9ca5a383cf235962f7ca8dd8668abed1b3453b256100043875ebd SHA512 75dc26d1fae53a3ce238318e184396b2d67ce08f500c185d9fd526d6fb50c2ea3ba5a5d60789cd9b111f37336f66b1e014a19cda8bb387d6add1484cf6dd8548 +EBUILD burly-0.2.ebuild 730 BLAKE2B 754f5e6175c4a97a491e6d8a878132dbcac3512c088b2c86c7c924597db037ea11db9ebc94ff4570ca45ba4b6f794b51cba841fc4e496e1efd5c8ed3176b6a89 SHA512 9f1a796ae18588fa4cd728b3c1f49048cd221c84b3162fd5d6994ddf97763f91eb15542623a482aa2f602d397fb4f699954c8773f75e9f1038a7388e7ff8d356 +MISC metadata.xml 800 BLAKE2B 630a828d2fefd4a0cf7ef000c446e74c3b52ba7930721eda9645d555f1da49ed8fe0e98cc0121c865967c2ea2d9902bd8a34d0e7b43ba0db1a9a259d136f01b4 SHA512 8eb40db4f05ef35dae2c1f88b8c47933c4d24e1b3143d5a3b7b1131cc663b953b9bfb46f33edd6f4dbfb0da4136f2648b7aa336376bac3e8dd62d86bf470e054 diff --git a/app-emacs/burly/burly-0.2.ebuild b/app-emacs/burly/burly-0.2.ebuild new file mode 100644 index 000000000000..787e5f49350a --- /dev/null +++ b/app-emacs/burly/burly-0.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=27.1 + +inherit elisp + +DESCRIPTION="Save and restore frames and windows with their buffers in Emacs" +HOMEPAGE="https://github.com/alphapapa/burly.el" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/alphapapa/${PN}.el.git" +else + SRC_URI="https://github.com/alphapapa/${PN}.el/archive/${PV}.tar.gz + -> ${P}.tar.gz" + S="${WORKDIR}"/${PN}.el-${PV} + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +DOCS=( README.org ) +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + + elisp-make-autoload-file +} + +src_install() { + elisp_src_install + + doinfo ${PN}.info +} diff --git a/app-emacs/burly/files/50burly-gentoo.el b/app-emacs/burly/files/50burly-gentoo.el new file mode 100644 index 000000000000..e19cf1e132b9 --- /dev/null +++ b/app-emacs/burly/files/50burly-gentoo.el @@ -0,0 +1,2 @@ +(add-to-list 'load-path "@SITELISP@") +(load "burly-autoloads" nil t) diff --git a/app-emacs/burly/metadata.xml b/app-emacs/burly/metadata.xml new file mode 100644 index 000000000000..1d53db179306 --- /dev/null +++ b/app-emacs/burly/metadata.xml @@ -0,0 +1,20 @@ +<?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> + <longdescription> + This package provides tools to save and restore frame and window + configurations in Emacs, including buffers that may not be live anymore. In + this way, it’s like a lightweight "workspace" manager, allowing you to + easily restore one or more frames, including their windows, the windows' + layout, and their buffers. + </longdescription> + <upstream> + <bugs-to>https://github.com/alphapapa/burly.el/issues/</bugs-to> + <remote-id type="github">alphapapa/burly.el</remote-id> + </upstream> +</pkgmetadata> |