Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/async/, app-emacs/async/files/
Date: Sat, 04 May 2019 13:33:51
Message-Id: 1556976818.db8063cba7def8f0f8b8596b281511646b9699df.ulm@gentoo
1 commit: db8063cba7def8f0f8b8596b281511646b9699df
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 4 12:48:01 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat May 4 13:33:38 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db8063cb
7
8 app-emacs/async: Initial import.
9
10 Needed as dependency for app-emacs/helm.
11
12 Ebuild contributed by me.
13
14 Package-Manager: Portage-2.3.65, Repoman-2.3.12
15 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
16
17 app-emacs/async/Manifest | 1 +
18 app-emacs/async/async-1.9.3.ebuild | 24 ++++++++++++++++++++++++
19 app-emacs/async/files/50async-gentoo.el | 2 ++
20 app-emacs/async/metadata.xml | 12 ++++++++++++
21 4 files changed, 39 insertions(+)
22
23 diff --git a/app-emacs/async/Manifest b/app-emacs/async/Manifest
24 new file mode 100644
25 index 00000000000..6355cabf490
26 --- /dev/null
27 +++ b/app-emacs/async/Manifest
28 @@ -0,0 +1 @@
29 +DIST emacs-async-1.9.3.tar.gz 14394 BLAKE2B dd6a98e61027dae2fa9ebb8e20f81a2d2debff1e990e57084a747ea815d1e615dc0e4b8fe5fcdc1f562c0f02780951121f4a67b26584f4519290413da05dc1e9 SHA512 ecbbb6614882df8a58a3440a78867e6cd19ae448e2e897b27d6aeaf5e5a648dcedbac64afbfd6240b7e68c533c685060f453051ef9a85d9d4cca6831fbf2c1dd
30
31 diff --git a/app-emacs/async/async-1.9.3.ebuild b/app-emacs/async/async-1.9.3.ebuild
32 new file mode 100644
33 index 00000000000..c59fc3c4339
34 --- /dev/null
35 +++ b/app-emacs/async/async-1.9.3.ebuild
36 @@ -0,0 +1,24 @@
37 +# Copyright 2019 Gentoo Authors
38 +# Distributed under the terms of the GNU General Public License v2
39 +
40 +EAPI=7
41 +
42 +inherit elisp
43 +
44 +MY_P="emacs-async-${PV}"
45 +DESCRIPTION="Simple library for asynchronous processing in Emacs"
46 +HOMEPAGE="https://github.com/jwiegley/emacs-async"
47 +SRC_URI="https://github.com/jwiegley/emacs-async/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
48 +
49 +LICENSE="GPL-2+"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~x86"
52 +
53 +S="${WORKDIR}/${MY_P}"
54 +SITEFILE="50${PN}-gentoo.el"
55 +DOCS="README.md"
56 +
57 +src_compile() {
58 + elisp-compile *.el
59 + elisp-make-autoload-file
60 +}
61
62 diff --git a/app-emacs/async/files/50async-gentoo.el b/app-emacs/async/files/50async-gentoo.el
63 new file mode 100644
64 index 00000000000..538bd0c8d45
65 --- /dev/null
66 +++ b/app-emacs/async/files/50async-gentoo.el
67 @@ -0,0 +1,2 @@
68 +(add-to-list 'load-path "@SITELISP@")
69 +(load "@SITELISP@/async-autoloads" nil t)
70
71 diff --git a/app-emacs/async/metadata.xml b/app-emacs/async/metadata.xml
72 new file mode 100644
73 index 00000000000..0b9a819893e
74 --- /dev/null
75 +++ b/app-emacs/async/metadata.xml
76 @@ -0,0 +1,12 @@
77 +<?xml version="1.0" encoding="UTF-8"?>
78 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
79 +<pkgmetadata>
80 +<maintainer type="project">
81 + <email>gnu-emacs@g.o</email>
82 + <name>Gentoo GNU Emacs project</name>
83 +</maintainer>
84 +<stabilize-allarches/>
85 +<upstream>
86 + <remote-id type="github">jwiegley/emacs-async</remote-id>
87 +</upstream>
88 +</pkgmetadata>